:root {
  --ink: #0f0b25;
  --ink-soft: rgba(15, 11, 37, 0.82);
  --ink-muted: rgba(15, 11, 37, 0.62);
  --sand: #f6f4ff;
  --accent: #6f61ff;
  --accent-2: #ff7aa7;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.18);
  --page-width: 1120px;
  --page-gutter: clamp(16px, 4vw, 28px);
  --focus-ring: #ffd36a;

  --page-background: radial-gradient(circle at 20% 15%, rgba(111, 125, 255, 0.14), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255, 126, 224, 0.16), transparent 40%),
    var(--sand);
  --text-main: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--ink-muted);

  --hero-background: linear-gradient(120deg, rgba(255, 126, 224, 0.08), rgba(111, 125, 255, 0.08)),
    radial-gradient(circle at top right, rgba(111, 125, 255, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.76);
  --hero-border: rgba(111, 125, 255, 0.22);
  --hero-shadow: 0 50px 110px rgba(16, 0, 63, 0.1);
  --hero-text: var(--ink);
  --hero-subtitle: var(--ink-soft);

  --pill-bg: rgba(111, 125, 255, 0.12);
  --pill-text: #5d52ff;
  --pill-border: rgba(111, 125, 255, 0.28);

  --cta-link-bg: rgba(255, 255, 255, 0.62);
  --cta-link-border: rgba(15, 11, 37, 0.86);
  --cta-link-text: var(--ink);

  --badge-bg: rgba(255, 255, 255, 0.76);
  --badge-border: rgba(111, 125, 255, 0.22);
  --badge-text: var(--ink);

  --image-border: rgba(111, 125, 255, 0.18);

  --card-surface: #ffffff;
  --card-border: rgba(15, 11, 37, 0.08);
  --card-shadow: 0 16px 32px rgba(15, 11, 37, 0.08);
  --card-shadow-hover: 0 22px 44px rgba(15, 11, 37, 0.12);
  --media-surface: rgba(15, 11, 37, 0.06);
  --seo-surface: rgba(15, 11, 37, 0.06);
  --format-pill-bg: rgba(15, 11, 37, 0.1);
  --avatar-border: rgba(246, 244, 255, 0.95);
}

:root[data-theme="dark"],
html[data-theme="dark"],
body[data-theme="dark"] {
  --page-background: radial-gradient(circle at 20% 15%, rgba(111, 125, 255, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255, 126, 224, 0.14), transparent 40%),
    #0f0b25;
  --text-main: #f8f7ff;
  --text-soft: rgba(248, 247, 255, 0.9);
  --text-muted: rgba(248, 247, 255, 0.72);

  --hero-background: linear-gradient(140deg, rgba(122, 109, 255, 0.12), rgba(16, 0, 63, 0.1)),
    radial-gradient(circle at 20% 20%, rgba(255, 143, 177, 0.14), transparent 38%),
    radial-gradient(circle at 80% 0%, rgba(255, 224, 139, 0.12), transparent 35%),
    #0f0b25;
  --hero-border: rgba(255, 255, 255, 0.08);
  --hero-shadow: 0 20px 70px rgba(15, 11, 37, 0.32);
  --hero-text: #f8f7ff;
  --hero-subtitle: rgba(248, 247, 255, 0.9);

  --pill-bg: rgba(255, 255, 255, 0.12);
  --pill-text: #fdfcff;
  --pill-border: rgba(255, 255, 255, 0.18);

  --cta-link-bg: rgba(255, 255, 255, 0.08);
  --cta-link-border: rgba(255, 255, 255, 0.72);
  --cta-link-text: #fdfcff;

  --badge-bg: rgba(10, 8, 25, 0.75);
  --badge-border: rgba(255, 255, 255, 0.16);
  --badge-text: #fefefe;

  --image-border: rgba(255, 255, 255, 0.12);

  --card-surface: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-shadow: 0 18px 40px rgba(15, 11, 37, 0.24);
  --card-shadow-hover: 0 24px 50px rgba(15, 11, 37, 0.28);
  --media-surface: rgba(255, 255, 255, 0.06);
  --seo-surface: rgba(255, 255, 255, 0.06);
  --format-pill-bg: rgba(255, 255, 255, 0.12);
  --avatar-border: rgba(15, 11, 37, 0.95);
}

.portfolio-page {
  position: relative;
  z-index: 2;
}

body {
  background: var(--page-background);
  color: var(--text-main);
}
html {
  background: var(--page-background);
}
.landing-hero {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  margin: 18px auto 32px;
  padding: clamp(24px, 4.2vw, 46px);
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  background: var(--hero-background);
  border: 1px solid var(--hero-border);
  box-shadow: var(--hero-shadow);
  color: var(--hero-text);
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7ee0, #6f7dff);
  box-shadow: 0 10px 30px rgba(111, 125, 255, 0.35);
  z-index: 0;
}

.landing-hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -40px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero-presta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.hero-text .subtitle {
  max-width: 760px;
  color: var(--hero-subtitle);
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
  margin: 14px 0 6px;
  color: var(--text-soft);
}

.hero-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.avatar-stack {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.avatar-stack .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--avatar-border);
  margin-left: -22px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  box-shadow: 0 6px 14px rgba(15, 11, 37, 0.18);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.avatar-stack .avatar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 12, 41, 0.25);
}

.avatar-stack .avatar:nth-child(1) {
  z-index: 1;
}

.avatar-stack .avatar:nth-child(2) {
  z-index: 2;
}

.avatar-stack .avatar:nth-child(3) {
  z-index: 3;
}

.avatar-stack .avatar:nth-child(4) {
  z-index: 4;
}

.hero-trust-copy p {
  margin: 0;
  font-weight: 750;
  color: var(--text-main);
  line-height: 1.25;
  white-space: nowrap;
}

.hero-trust-copy span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 0.9rem;
  border: 1px solid var(--pill-border);
  font-weight: 650;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #957dff);
  border: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(122, 109, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--cta-link-border);
  color: var(--cta-link-text);
  background: var(--cta-link-bg);
  text-decoration: none;
  font-weight: 650;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover,
.cta-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-main);
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-2);
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-media .hero-trust {
  width: min(480px, 90vw);
  justify-content: flex-start;
  margin: 0;
}

.hero-frame {
  position: relative;
  width: min(480px, 90vw);
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(16, 0, 63, 0.22);
  border: 1px solid var(--image-border);
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--badge-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  max-width: 280px;
}

.hero-badge span {
  font-weight: 700;
  color: var(--accent-2);
}

.portrait-promise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  padding: 10px var(--page-gutter) 0;
  max-width: var(--page-width);
  margin-inline: auto;
}

.promise-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), #f7f6ff);
  border: 1px solid rgba(15, 11, 37, 0.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(15, 11, 37, 0.08);
}

.promise-card h3 {
  margin: 8px 0;
  color: var(--ink);
}

.promise-card p {
  margin: 0;
  color: rgba(15, 11, 37, 0.75);
}

.presta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: 28px var(--page-gutter) 6px;
  max-width: var(--page-width);
  margin-inline: auto;
}

.presta-grid.services .presta-card {
  background: #0f0b25;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fefefe;
  box-shadow: 0 24px 40px rgba(15, 11, 37, 0.18);
}

.presta-card {
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(6px);
}

.presta-card h2 {
  margin-top: 0;
}

.presta-card ul {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.process-section {
  padding: 12px var(--page-gutter) 32px;
  max-width: var(--page-width);
  margin-inline: auto;
}

.process-section .section-heading {
  padding: 0;
  max-width: none;
}

.section-heading h2 {
  margin: 6px 0 10px;
}

.section-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.step-card {
  background: linear-gradient(160deg, #0f0b25, #18123a);
  color: #fefefe;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(15, 11, 37, 0.24);
}

.step-index {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.videos-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 var(--page-gutter) 10px;
  max-width: var(--page-width);
  margin-inline: auto;
}

.video-container-mariage {
  background: #0f0b25;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(15, 11, 37, 0.28);
}

.video-header h2 {
  margin: 8px 0;
}

.video-header p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
}

.video-container-mariage iframe {
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
}

.photo-carousel-section {
  margin: 18px auto;
  padding: clamp(18px, 3vw, 28px);
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.08), rgba(16, 0, 63, 0.06));
  border: 1px solid rgba(111, 125, 255, 0.14);
  box-shadow: 0 20px 60px rgba(16, 0, 63, 0.1);
}

.photo-carousel-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.photo-carousel-header h2 {
  margin: 0.5rem 0;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.photo-carousel-header p {
  max-width: 720px;
  color: var(--ink-soft);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  background: #0f0b25;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 20px rgba(15, 11, 37, 0.22);
}

.carousel-btn:hover {
  transform: translateY(-2px);
}

.carousel-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.carousel-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.photo-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 1.4rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.photo-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.photo-carousel-track {
  display: flex;
  gap: 1.2rem;
}

.photo-card-wrapper {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  position: relative;
  scroll-snap-align: start;
}

.photo-carousel-section .photo-card-hint {
  position: absolute;
  top: 56px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #6f7dff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(16, 0, 63, 0.18), 0 0 0 rgba(51, 209, 122, 0.4);
  border: 2px solid transparent;
  z-index: 4;
  pointer-events: none;
  animation: photo-hint-float 2.6s ease-in-out infinite, photo-hint-border 3s ease-in-out infinite;
}

.photo-carousel-section .photo-card-hint-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.photo-carousel-section .photo-card-hint-arrow img {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(16, 0, 63, 0.2));
}

@keyframes photo-hint-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes photo-hint-border {
  0%,
  70%,
  100% {
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(16, 0, 63, 0.18), 0 0 0 rgba(51, 209, 122, 0.4);
    color: #6f7dff;
  }
  80%,
  90% {
    border-color: #33d17a;
    box-shadow: 0 10px 22px rgba(16, 0, 63, 0.18), 0 0 18px rgba(51, 209, 122, 0.45);
    color: #33d17a;
  }
}

.photo-card {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: transparent;
  box-shadow: 0 20px 60px rgba(16, 0, 63, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(16, 0, 63, 0.22);
}

.photo-card img {
  width: 100%;
  height: clamp(220px, 35vw, 320px);
  object-fit: cover;
  display: block;
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 3, 18, 0.02) 0%, rgba(6, 3, 18, 0.88) 85%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 6px;
}

.photo-card-overlay h3 {
  margin: 0;
}

.photo-card-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.reference-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.photo-card-cta {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #110034;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 0, 63, 0.18);
}

/* Align exactly with the evenementiel carousel styles */
.photo-carousel-section {
  margin: 4rem auto 0;
  max-width: 1200px;
  width: calc(100% - 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.08), rgba(16, 0, 63, 0.04));
  border: 1px solid rgba(111, 125, 255, 0.15);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
}

.story-instagram-callout {
  max-width: 1200px;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.photo-carousel-section .reference-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5d52ff;
  text-shadow: #7a72ff 0px 0px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-carousel-header {
  align-items: flex-start;
}

.photo-carousel-header h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
}

.photo-carousel-header p {
  max-width: 620px;
  color: rgba(0, 0, 0, 0.7);
}

.photo-carousel-section .carousel-controls {
  display: inline-flex;
  gap: 0.75rem;
}

.photo-carousel-section .carousel-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 2px solid #666fec00;
  background: #989dff00;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 255, 0.419));
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  pointer-events: auto;
}

.photo-carousel-section .carousel-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none;
}

.photo-carousel-section .carousel-btn:hover {
  transition: 0.5s;
  box-shadow: 0 1px 35px rgba(121, 90, 207, 0.703);
  transform: none;
}

.photo-carousel-section .carousel-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: none;
}

.photo-carousel-section .photo-carousel-viewport {
  margin-top: 2rem;
}

[data-carousel-track] > * {
  scroll-snap-align: start;
}

.photo-carousel-section .photo-carousel-track {
  gap: 1.5rem;
}

.photo-carousel-section .photo-card-wrapper {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  position: relative;
}

.photo-carousel-section .photo-card {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: transparent;
  box-shadow: 0 20px 60px rgba(16, 0, 63, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.photo-carousel-section .photo-card-cta {
  top: 16px;
  right: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.photo-carousel-section .photo-card-cta:hover,
.photo-carousel-section .photo-card-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 0, 63, 0.25);
  outline: none;
  background: #ffffff;
}

.photo-carousel-section .photo-card-cta[data-target] {
  background: linear-gradient(120deg, #6f7dff, #c084fc);
  color: #fff;
  box-shadow: 0 18px 35px rgba(131, 93, 255, 0.4);
}

.photo-carousel-section .photo-card-cta[data-target]:hover,
.photo-carousel-section .photo-card-cta[data-target]:focus-visible {
  background: linear-gradient(120deg, #5d6cf7, #ae6df4);
}

.photo-carousel-section .photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 0, 20, 0) 30%, rgba(5, 0, 20, 0.85) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.photo-carousel-section .photo-card img {
  height: 320px;
  transition: transform 0.35s ease;
}

.photo-carousel-section .photo-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(5, 0, 20, 0.85));
  color: #ffffff;
  text-align: left;
  z-index: 2;
}

.photo-carousel-section .photo-card h3 {
  margin: 0.35rem 0 0.25rem;
}

.photo-carousel-section .photo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.photo-carousel-section .photo-card:hover {
  transform: scale(0.95);
  box-shadow: 0 30px 80px rgba(16, 0, 63, 0.18);
}

.photo-carousel-section .photo-card:hover::before {
  opacity: 0;
}

.photo-carousel-section .photo-card:hover img {
  transform: none;
}

.case-studies-section {
  margin: 4rem auto 0;
  max-width: 1200px;
  width: calc(100% - 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.08), rgba(16, 0, 63, 0.04));
  border: 1px solid rgba(111, 125, 255, 0.15);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
}

.case-studies-header h2 {
  margin: 0.5rem 0;
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
}

.case-studies-header p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
}

.case-studies-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.95rem;
}

.case-study-card {
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(0.8rem, 1.8vw, 1.2rem);
  box-shadow: var(--card-shadow);
}

.case-study-collapsible {
  overflow: hidden;
}

.case-study-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.case-study-summary::-webkit-details-marker {
  display: none;
}

.case-study-summary::after {
  content: "+";
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(111, 125, 255, 0.12);
  border: 1px solid rgba(111, 125, 255, 0.24);
}

.case-study-collapsible[open] .case-study-summary::after {
  content: "−";
}

.case-study-summary-title {
  font-weight: 700;
  line-height: 1.35;
}

.case-study-content {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--card-border);
}

.case-study-intro h3 {
  margin: 0.45rem 0 0.6rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.case-study-intro p {
  margin: 0;
  color: var(--text-soft);
}

.case-study-points {
  margin: 0.95rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text-main);
}

.case-study-media {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr);
  gap: 1rem;
}

.case-study-video {
  margin: 0;
}

.case-study-video video {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: #0f0b25;
  border: 1px solid var(--card-border);
}

.case-study-video figcaption {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.case-study-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.case-study-photos img {
  width: 100%;
  height: clamp(130px, 16vw, 180px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 24px rgba(15, 11, 37, 0.12);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-radius: 18px;
  margin: 22px auto 30px;
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  background: linear-gradient(120deg, #0f0b25, #18123a);
  color: #fefefe;
  box-shadow: 0 20px 50px rgba(15, 11, 37, 0.28);
}

.cta-band h2 {
  margin: 0 0 6px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-container .call-to-action {
  display: inline-flex;
  margin: 0 var(--page-gutter) 10px;
}

@media (max-width: 960px) {
  .photo-card-wrapper {
    flex-basis: calc(50% - 0.8rem);
  }

  .photo-carousel-section .photo-card-wrapper {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .landing-hero {
    margin: 12px auto 24px;
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .portfolio-page {
    padding-top: 78px;
    padding-bottom: 90px;
  }

  .presta-grid,
  .portrait-promise,
  .process-section,
  .case-studies-section,
  .photo-carousel-section,
  .videos-wrapper,
  .cta-band {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .photo-card-wrapper {
    min-width: 75vw;
  }

  .hero-badge {
    position: relative;
    inset: unset;
    margin-top: 12px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-wrap: wrap;
  }

  .photo-carousel-section .photo-card-wrapper {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .case-studies-section {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .case-study-media {
    grid-template-columns: 1fr;
  }

  .case-study-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-summary {
    align-items: flex-start;
  }

  .case-study-summary::after {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
}

@media (max-width: 520px) {
  .case-studies-section {
    border-radius: 22px;
    padding: 1rem;
  }

  .case-study-card {
    border-radius: 16px;
    padding: 0.8rem;
  }

  .case-study-summary {
    gap: 0.55rem;
  }

  .case-study-summary-title {
    font-size: 0.95rem;
  }

  .case-study-content {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
  }

  .case-study-photos {
    grid-template-columns: 1fr;
  }
}

.portfolio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 125, 255, 0.4);
  background: rgba(111, 125, 255, 0.12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: #5d52ff;
  width: fit-content;
}

.hero-pill-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-season-label {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(111, 125, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #5d52ff;
}

:root[data-theme="dark"] .portfolio-pill,
html[data-theme="dark"] .portfolio-pill,
body[data-theme="dark"] .portfolio-pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(248, 247, 255, 0.92);
}

:root[data-theme="dark"] .hero-season-label,
html[data-theme="dark"] .hero-season-label,
body[data-theme="dark"] .hero-season-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 247, 255, 0.92);
}

.section-heading {
  padding: 10px var(--page-gutter) 0;
  max-width: var(--page-width);
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 6px;
}

.section-intro {
  color: var(--text-soft);
  margin: 0;
}

.decision-section {
  padding-bottom: 8px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  padding: 16px var(--page-gutter) 0;
  max-width: var(--page-width);
  margin-inline: auto;
}

.metric-card {
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: var(--card-shadow);
}

.metric-value {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.metric-label {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.4;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 16px var(--page-gutter) 0;
  max-width: var(--page-width);
  margin-inline: auto;
}

.decision-card {
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--card-shadow);
}

.decision-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.decision-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 8px;
}

.cta-row.decision-cta {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
  margin: 18px auto 10px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 16px var(--page-gutter) 6px;
  max-width: var(--page-width);
  margin-inline: auto;
}

.brand-card {
  background: var(--card-surface);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.brand-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-card-header img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--media-surface);
  padding: 6px;
}

.brand-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.format-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--format-pill-bg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card h3 {
  margin: 0;
}

.offer-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 8px;
}

.offer-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 2px solid rgba(15, 11, 37, 0.86);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 750;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.offer-cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.offer-card--featured {
  border-color: rgba(111, 97, 255, 0.35);
  box-shadow: 0 22px 44px rgba(111, 97, 255, 0.14);
}

.offer-card .offer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(111, 97, 255, 0.12);
  border: 1px solid rgba(111, 97, 255, 0.28);
  color: #5d52ff;
}

.behind-brand-section {
  margin: 3.4rem auto 0;
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
}

.brand-truth-block {
  margin: 3.2rem auto 0;
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.brand-truth-block h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.brand-truth-block p {
  margin: 0.8rem 0 0;
  max-width: 980px;
  color: var(--text-soft);
}

.brand-truth-block strong {
  color: var(--text-main);
}

.brand-authority-block {
  border-radius: 26px;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  background: linear-gradient(135deg, rgba(111, 125, 255, 0.09), rgba(255, 126, 224, 0.08));
  border: 1px solid rgba(111, 125, 255, 0.2);
  box-shadow: 0 18px 48px rgba(15, 11, 37, 0.07);
}

.brand-authority-intro {
  margin-top: 0.65rem;
}

.brand-authority-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-authority-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 11, 37, 0.08);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 12px 26px rgba(15, 11, 37, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-authority-step-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #6f7dff, #ff7ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.brand-authority-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.brand-authority-card p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
}

.brand-authority-card-note {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.brand-authority-list {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.brand-authority-list li {
  color: var(--text-soft);
  line-height: 1.45;
}

.brand-authority-proof {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 11, 37, 0.08);
}

.brand-authority-proof p {
  margin: 0;
}

.brand-authority-proof p + p {
  margin-top: 0.55rem;
}

.brand-authority-support {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.brand-authority-support p {
  margin: 0;
}

:root[data-theme="dark"] .brand-authority-block,
html[data-theme="dark"] .brand-authority-block,
body[data-theme="dark"] .brand-authority-block {
  background: linear-gradient(135deg, rgba(16, 0, 63, 0.68), rgba(40, 8, 78, 0.56));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

:root[data-theme="dark"] .brand-authority-card,
html[data-theme="dark"] .brand-authority-card,
body[data-theme="dark"] .brand-authority-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

:root[data-theme="dark"] .brand-authority-step-num,
html[data-theme="dark"] .brand-authority-step-num,
body[data-theme="dark"] .brand-authority-step-num {
  background: linear-gradient(135deg, #9ba8ff, #ffaaef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root[data-theme="dark"] .brand-authority-card-note,
html[data-theme="dark"] .brand-authority-card-note,
body[data-theme="dark"] .brand-authority-card-note {
  color: rgba(248, 247, 255, 0.8);
}

:root[data-theme="dark"] .brand-authority-list li,
html[data-theme="dark"] .brand-authority-list li,
body[data-theme="dark"] .brand-authority-list li {
  color: rgba(248, 247, 255, 0.86);
}

:root[data-theme="dark"] .brand-authority-proof,
html[data-theme="dark"] .brand-authority-proof,
body[data-theme="dark"] .brand-authority-proof {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .brand-authority-grid {
    grid-template-columns: 1fr;
  }
}

.behind-brand-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.12), rgba(255, 126, 224, 0.1));
  border: 1px solid rgba(111, 125, 255, 0.16);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
}

.behind-brand-header h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.6rem, 2.1vw, 2.15rem);
}

.behind-brand-lead {
  margin: 0;
  max-width: 900px;
  color: var(--text-soft);
}

.behind-brand-body p {
  margin: 12px 0 0;
  max-width: 980px;
  color: var(--text-soft);
}

.behind-brand-note {
  font-weight: 650;
  color: var(--text-main);
}

.behind-brand-author {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(111, 125, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.behind-brand-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: var(--media-surface);
  box-shadow: 0 12px 26px rgba(111, 97, 255, 0.22);
  flex: 0 0 auto;
}

.behind-brand-author-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.behind-brand-author-label {
  color: var(--text-muted);
  font-weight: 650;
}

.behind-brand-author-text {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.behind-brand-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

:root[data-theme="dark"] .behind-brand-card,
html[data-theme="dark"] .behind-brand-card,
body[data-theme="dark"] .behind-brand-card {
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.16), rgba(16, 0, 63, 0.12));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55);
}

:root[data-theme="dark"] .behind-brand-author,
html[data-theme="dark"] .behind-brand-author,
body[data-theme="dark"] .behind-brand-author {
  background: rgba(16, 0, 63, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .offer-cta,
html[data-theme="dark"] .offer-cta,
body[data-theme="dark"] .offer-cta {
  border-color: rgba(255, 255, 255, 0.72);
  color: rgba(248, 247, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .offer-card .offer-badge,
html[data-theme="dark"] .offer-card .offer-badge,
body[data-theme="dark"] .offer-card .offer-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 247, 255, 0.92);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  padding: 18px var(--page-gutter);
  max-width: var(--page-width);
  margin-inline: auto;
}

.usage-card {
  background: var(--card-surface);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--card-border);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usage-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.usage-card img {
  width: 100%;
  border-radius: 12px;
  background: var(--media-surface);
  padding: 12px;
}

.usage-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.seo-block {
  margin: 12px auto 32px;
  padding: 18px var(--page-gutter);
  max-width: var(--page-width);
  border-radius: 16px;
  background: var(--seo-surface);
  color: var(--text-soft);
}

.seo-block strong {
  color: var(--text-main);
}

.seo-block--plain {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.seo-block--plain a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
  border-bottom: 1px solid rgba(111, 97, 255, 0.35);
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.seo-block--plain a:hover {
  background: rgba(111, 97, 255, 0.12);
  border-bottom-color: rgba(111, 97, 255, 0.85);
}

.seo-block--plain a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-bottom-color: transparent;
}

:root[data-theme="dark"] .seo-block--plain a,
html[data-theme="dark"] .seo-block--plain a,
body[data-theme="dark"] .seo-block--plain a {
  border-bottom-color: rgba(248, 247, 255, 0.35);
}

:root[data-theme="dark"] .seo-block--plain a:hover,
html[data-theme="dark"] .seo-block--plain a:hover,
body[data-theme="dark"] .seo-block--plain a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(248, 247, 255, 0.7);
}

.seo-accordion-block {
  max-width: 920px;
  margin: 18px auto 0;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.08), rgba(16, 0, 63, 0.04));
  border: 1px solid rgba(111, 125, 255, 0.15);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
  display: grid;
  gap: 12px;
}

:root[data-theme="dark"] .seo-accordion-block,
html[data-theme="dark"] .seo-accordion-block,
body[data-theme="dark"] .seo-accordion-block {
  background: linear-gradient(120deg, rgba(16, 0, 63, 0.8), rgba(5, 0, 20, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
}

.seo-accordion-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(111, 125, 255, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 35px rgba(16, 0, 63, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-accordion-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(16, 0, 63, 0.12);
}

:root[data-theme="dark"] .seo-accordion-item,
html[data-theme="dark"] .seo-accordion-item,
body[data-theme="dark"] .seo-accordion-item {
  background: rgba(16, 0, 63, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.seo-accordion-item summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(15, 11, 37, 0.92);
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

:root[data-theme="dark"] .seo-accordion-item summary,
html[data-theme="dark"] .seo-accordion-item summary,
body[data-theme="dark"] .seo-accordion-item summary {
  color: rgba(248, 247, 255, 0.92);
}

.seo-accordion-item summary::-webkit-details-marker {
  display: none;
}

.seo-accordion-item summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 900;
  color: #5d52ff;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(111, 125, 255, 0.12);
  border: 1px solid rgba(111, 125, 255, 0.2);
  flex: 0 0 auto;
}

.seo-accordion-item[open] summary::after {
  content: "−";
}

:root[data-theme="dark"] .seo-accordion-item summary::after,
html[data-theme="dark"] .seo-accordion-item summary::after,
body[data-theme="dark"] .seo-accordion-item summary::after {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 248, 255, 0.92);
}

.seo-accordion-panel {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.seo-accordion-panel p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

:root[data-theme="dark"] .seo-accordion-panel p,
html[data-theme="dark"] .seo-accordion-panel p,
body[data-theme="dark"] .seo-accordion-panel p {
  color: rgba(242, 242, 255, 0.82);
}

.seo-accordion-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  display: grid;
  gap: 0.45rem;
}

:root[data-theme="dark"] .seo-accordion-panel ul,
html[data-theme="dark"] .seo-accordion-panel ul,
body[data-theme="dark"] .seo-accordion-panel ul {
  color: rgba(242, 242, 255, 0.82);
}

.seo-accordion-footer {
  padding: 8px 6px 0;
}

.seo-accordion-footer p {
  margin: 0;
  color: var(--text-soft);
}

.quiz-block {
  margin: 12px auto 32px;
  max-width: 860px;
  width: calc(100% - (var(--page-gutter) * 2));
  padding: 0;
}

.faq-block {
  margin: 12px auto 32px;
  max-width: var(--page-width);
  border-radius: 32px;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: linear-gradient(120deg, rgba(111, 125, 255, 0.08), rgba(16, 0, 63, 0.04));
  border: 1px solid rgba(111, 125, 255, 0.15);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
}

.faq-block .section-heading {
  padding: 0;
  margin: 0;
  max-width: none;
}

.faq-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(111, 125, 255, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 35px rgba(16, 0, 63, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(16, 0, 63, 0.12);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 750;
  color: rgba(15, 11, 37, 0.92);
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 900;
  color: #5d52ff;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(111, 125, 255, 0.12);
  border: 1px solid rgba(111, 125, 255, 0.2);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
}

:root[data-theme="dark"] .faq-block,
html[data-theme="dark"] .faq-block,
body[data-theme="dark"] .faq-block {
  background: linear-gradient(120deg, rgba(16, 0, 63, 0.8), rgba(5, 0, 20, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
}

:root[data-theme="dark"] .faq-item,
html[data-theme="dark"] .faq-item,
body[data-theme="dark"] .faq-item {
  background: rgba(16, 0, 63, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

:root[data-theme="dark"] .faq-item summary,
html[data-theme="dark"] .faq-item summary,
body[data-theme="dark"] .faq-item summary {
  color: rgba(248, 248, 255, 0.92);
}

:root[data-theme="dark"] .faq-item p,
html[data-theme="dark"] .faq-item p,
body[data-theme="dark"] .faq-item p {
  color: rgba(242, 242, 255, 0.8);
}

:root[data-theme="dark"] .faq-item summary::after,
html[data-theme="dark"] .faq-item summary::after,
body[data-theme="dark"] .faq-item summary::after {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 248, 255, 0.92);
}

.cta-button:focus-visible,
.cta-link:focus-visible,
.offer-cta:focus-visible,
.carousel-btn:focus-visible,
.photo-card:focus-visible,
.photo-card-cta:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.article-quiz {
  --quiz-surface: #f4f0ff;
  --quiz-border: rgba(124, 58, 237, 0.22);
  --quiz-accent: #7c3aed;
  --quiz-text: #24163a;
  --quiz-muted: #6b5f85;
  background: var(--quiz-surface);
  border: 2px solid var(--quiz-border);
  border-radius: 20px;
  padding: 1.2rem 1.7rem 1.5rem;
  box-shadow: 0 18px 36px rgba(15, 26, 43, 0.1);
  display: grid;
  gap: 1rem;
  margin-bottom: 24px;
}

:root[data-theme="dark"] .article-quiz,
html[data-theme="dark"] .article-quiz,
body[data-theme="dark"] .article-quiz {
  --quiz-surface: rgba(16, 0, 63, 0.78);
  --quiz-border: rgba(255, 255, 255, 0.12);
  --quiz-accent: #a78bfa;
  --quiz-text: rgba(248, 247, 255, 0.92);
  --quiz-muted: rgba(242, 242, 255, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.article-quiz__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--quiz-accent);
  font-weight: 700;
  margin: 0 0 -0.2rem;
  line-height: 1.1;
}

.article-quiz .article-quiz__title {
  margin: 0;
  font-size: 1.7rem;
  color: var(--quiz-text);
}

.article-quiz .article-quiz__subtitle {
  margin: 0;
  color: var(--quiz-muted);
  font-size: 1rem;
}

.article-quiz__progress {
  display: grid;
  gap: 0.4rem;
}

.article-quiz__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--quiz-muted);
}

.article-quiz__progress-bar {
  background: rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  height: 4px;
  overflow: hidden;
}

:root[data-theme="dark"] .article-quiz__progress-bar,
html[data-theme="dark"] .article-quiz__progress-bar,
body[data-theme="dark"] .article-quiz__progress-bar {
  background: rgba(167, 139, 250, 0.22);
}

.article-quiz__progress-bar span {
  display: block;
  height: 100%;
  background: var(--quiz-accent);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.article-quiz__result-set {
  display: none;
}

.article-quiz__body {
  display: grid;
  gap: 1.1rem;
}

.article-quiz__question {
  display: none;
  gap: 0.8rem;
}

.article-quiz__question.is-active {
  display: grid;
}

.article-quiz__question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--quiz-text);
}

.article-quiz__options {
  display: grid;
  gap: 0.7rem;
}

.article-quiz__option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.6);
  color: var(--quiz-text);
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

:root[data-theme="dark"] .article-quiz__option,
html[data-theme="dark"] .article-quiz__option,
body[data-theme="dark"] .article-quiz__option {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.article-quiz__option::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.35);
  flex-shrink: 0;
  background: transparent;
}

:root[data-theme="dark"] .article-quiz__option::before,
html[data-theme="dark"] .article-quiz__option::before,
body[data-theme="dark"] .article-quiz__option::before {
  border-color: rgba(248, 247, 255, 0.35);
}

.article-quiz__option:hover,
.article-quiz__option:focus-visible {
  border-color: var(--quiz-accent);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18);
  transform: translateY(-1px);
}

:root[data-theme="dark"] .article-quiz__option:hover,
:root[data-theme="dark"] .article-quiz__option:focus-visible,
html[data-theme="dark"] .article-quiz__option:hover,
html[data-theme="dark"] .article-quiz__option:focus-visible,
body[data-theme="dark"] .article-quiz__option:hover,
body[data-theme="dark"] .article-quiz__option:focus-visible {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.article-quiz__option:hover::before,
.article-quiz__option:focus-visible::before {
  background: rgba(124, 58, 237, 0.2);
}

:root[data-theme="dark"] .article-quiz__option:hover::before,
:root[data-theme="dark"] .article-quiz__option:focus-visible::before,
html[data-theme="dark"] .article-quiz__option:hover::before,
html[data-theme="dark"] .article-quiz__option:focus-visible::before,
body[data-theme="dark"] .article-quiz__option:hover::before,
body[data-theme="dark"] .article-quiz__option:focus-visible::before {
  background: rgba(167, 139, 250, 0.22);
}

.article-quiz__option.is-selected {
  border-color: var(--quiz-accent);
  background: rgba(124, 58, 237, 0.12);
}

:root[data-theme="dark"] .article-quiz__option.is-selected,
html[data-theme="dark"] .article-quiz__option.is-selected,
body[data-theme="dark"] .article-quiz__option.is-selected {
  background: rgba(167, 139, 250, 0.14);
}

.article-quiz__option.is-selected::before {
  background: var(--quiz-accent);
  box-shadow: inset 0 0 0 3px #eaf1ff;
}

.article-quiz__result {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.12);
  display: grid;
  gap: 0.5rem;
}

.article-quiz__result[hidden] {
  display: none;
}

:root[data-theme="dark"] .article-quiz__result,
html[data-theme="dark"] .article-quiz__result,
body[data-theme="dark"] .article-quiz__result {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.article-quiz__result h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--quiz-text);
}

.article-quiz__result p {
  margin: 0;
  color: var(--quiz-muted);
}

.article-quiz__lead-intro {
  margin-top: 0.25rem;
}

.article-quiz__lead-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.article-quiz__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.article-quiz__lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.article-quiz__lead-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--quiz-text);
}

.article-quiz__lead-field span {
  font-weight: 650;
}

.article-quiz__lead-field--full {
  grid-column: 1 / -1;
}

.article-quiz__lead-field input {
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--quiz-text);
}

:root[data-theme="dark"] .article-quiz__lead-field input,
html[data-theme="dark"] .article-quiz__lead-field input,
body[data-theme="dark"] .article-quiz__lead-field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.article-quiz__lead-submit {
  justify-self: start;
  margin-top: 0.1rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--quiz-accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.article-quiz__lead-submit:hover,
.article-quiz__lead-submit:focus-visible {
  filter: brightness(1.06);
}

.article-quiz__lead-status {
  min-height: 1.2em;
  font-size: 0.88rem;
}

.article-quiz__restart {
  justify-self: start;
  margin-top: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--quiz-accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.article-quiz__restart:hover,
.article-quiz__restart:focus-visible {
  filter: brightness(1.06);
}

@media (max-width: 640px) {
  .article-quiz__lead-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-instagram-callout {
  max-width: 980px;
  margin: 2.5rem auto 0;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-radius: 28px;
  border: 1px solid rgba(111, 125, 255, 0.2);
  background: linear-gradient(120deg, rgba(255, 126, 224, 0.14), rgba(111, 125, 255, 0.1));
  box-shadow: 0 22px 60px rgba(16, 0, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.insta-callout-preview {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 240px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.insta-callout-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insta-callout-preview:hover,
.insta-callout-preview:focus-visible {
  transform: translateY(-4px);
}

.insta-callout-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1 1 320px;
  align-items: flex-start;
}

.insta-callout-text {
  max-width: 620px;
}

.insta-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #5d52ff;
}

.insta-callout-text h3 {
  margin: 0.45rem 0 0.6rem;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.insta-callout-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  color: #2b1055;
  background: linear-gradient(135deg, rgba(249, 206, 52, 0.18), rgba(238, 42, 123, 0.2), rgba(98, 40, 215, 0.2));
  border: 1px solid rgba(238, 42, 123, 0.25);
  box-shadow: 0 10px 20px rgba(238, 42, 123, 0.12);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  animation: insta-handle-float 2.8s ease-in-out infinite;
}

@keyframes insta-handle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.insta-callout-cta {
  border: none;
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  box-shadow: 0 18px 40px rgba(238, 42, 123, 0.35), 0 0 0 4px rgba(238, 42, 123, 0.12);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.insta-callout-cta::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.8;
  mix-blend-mode: screen;
}

.insta-callout-cta-text {
  position: relative;
  z-index: 1;
}

.insta-callout-cta-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.insta-callout-cta-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.insta-callout-cta:hover,
.insta-callout-cta:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(98, 40, 215, 0.4), 0 0 0 6px rgba(249, 206, 52, 0.15);
}

.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 0, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 3000;
}

.photo-modal.is-open {
  display: flex;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
}

.photo-modal-dialog {
  background: #fff;
  border-radius: 28px;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 120px rgba(16, 0, 63, 0.35);
}

.photo-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: none;
  background: rgba(16, 0, 63, 0.039);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.9rem;
  cursor: pointer;
  color: #6a5cec;
  z-index: 2;
}

.photo-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.photo-modal-image {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  height: 470px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: #ffffff00;
  border: 1px solid rgba(16, 0, 63, 0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(16, 0, 63, 0.15);
}

.photo-modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 12, 41, 0.7);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.photo-modal-nav-btn[data-photo-modal-prev] {
  left: 0.75rem;
}

.photo-modal-nav-btn[data-photo-modal-next] {
  right: 0.75rem;
}

.photo-modal-nav-btn:hover {
  background: rgba(15, 12, 41, 0.9);
}

.photo-modal-nav-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.photo-modal-image img {
  height: 100%;
  max-height: 470px;
  width: fit-content;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #f7f7fc00;
  box-shadow: 0 12px 40px rgba(16, 0, 63, 0.1);
}

.photo-modal-image.is-landscape img {
  width: 100%;
  height: auto;
}

.photo-modal-info h3 {
  margin: 0.35rem 0;
}

.photo-modal-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.photo-thumb {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  width: 110px;
  height: 70px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex: 0 0 auto;
}

.photo-thumb.is-active {
  opacity: 1;
  box-shadow: 0 10px 25px rgba(16, 0, 63, 0.2);
  transform: translateY(-2px);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.photo-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .portfolio-instagram-callout {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .insta-callout-preview {
    width: min(260px, 80%);
  }

  .insta-callout-content {
    align-items: center;
  }

  .insta-callout-cta {
    justify-content: center;
  }

  .photo-modal-dialog {
    max-height: 95vh;
  }

  .photo-modal-body {
    padding: 1.5rem;
  }

  .photo-modal-image {
    min-height: 220px;
    max-height: 360px;
  }
}

:root[data-theme="dark"] .photo-modal-dialog,
html[data-theme="dark"] .photo-modal-dialog,
body[data-theme="dark"] .photo-modal-dialog {
  background: rgb(214, 207, 255);
  color: #f4f4ff;
}

:root[data-theme="dark"] .photo-modal-info p,
html[data-theme="dark"] .photo-modal-info p,
body[data-theme="dark"] .photo-modal-info p {
  color: rgba(242, 242, 255, 0.85);
}

:root[data-theme="dark"] .photo-carousel-header h2,
:root[data-theme="dark"] .photo-carousel-header p,
html[data-theme="dark"] .photo-carousel-header h2,
html[data-theme="dark"] .photo-carousel-header p,
body[data-theme="dark"] .photo-carousel-header h2,
body[data-theme="dark"] .photo-carousel-header p {
  color: rgba(242, 242, 255, 0.85);
}
.gestionback-to-top {
  margin-top: 100px !important;
}
