: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);
}

: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);
}

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

body {
  background: var(--page-background);
  color: var(--text-main);
}
html {
  background: var(--page-background);
  scroll-behavior: smooth;
}
.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: start;
  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;
}

.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);
  box-shadow: 0 12px 30px rgba(122, 109, 255, 0.35);
  border: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  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;
  justify-content: center;
  align-self: center;
}

.story-callout {
  position: absolute;
  top: -58px;
  left: 10px;
  right: auto;
  z-index: 6;
  display: grid;
  gap: 6px;
  width: clamp(180px, 20vw, 248px);
  padding: 10px 12px;
  border-radius: 18px;
  background: var(--badge-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--badge-border);
  box-shadow: 0 18px 40px rgba(16, 0, 63, 0.14);
  color: var(--badge-text);
  transform: rotate(-2deg);
  pointer-events: none;
}

.story-callout__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.story-callout__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff3b6a;
  box-shadow: 0 0 0 0 rgba(255, 59, 106, 0.55);
  animation: storyLivePulse 1.35s ease-in-out infinite;
}

.story-callout__text {
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--text-soft);
}

.story-callout__arrow {
  position: absolute;
  right: 18px;
  bottom: -20px;
  width: 34px;
  height: 34px;
  color: var(--accent-2);
  opacity: 0.9;
  transform: rotate(12deg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/2src/icons/arrowstory.svg");
  animation: arrow-direction 1.6s ease-in-out infinite alternate;
}

@keyframes storyLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 106, 0.55);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(255, 59, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 106, 0);
  }
}

@keyframes arrow-direction {
  0% {
    transform: rotate(12deg) translateY(0);
  }
  100% {
    transform: rotate(12deg) translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .story-callout__dot {
    animation: none;
  }
  .story-callout__arrow {
    animation: none;
  }
}

.hero-frame {
  position: relative;
  width: min(560px, 92vw);
  max-width: 100%;
  overflow: visible;
  border-radius: 22px;
  padding: 16px 14px 18px;
}

@media (max-width: 1120px) and (min-width: 769px) {
  .story-callout {
    top: -60px;
    left: 10px;
    right: auto;
    transform: rotate(-1deg);
  }

  .story-callout__arrow { transform: rotate(8deg); }
}

.story-shelf-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  font-size: 0.85rem;
  font-weight: 650;
  text-align: center;
}

.story-shelf-caption__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  border: 1px solid var(--pill-border);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 850;
}

.story-shelf {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  perspective: 1400px;
  padding: 12px 8px 2px;
  width: 100%;
}

.story-shelf-card {
  margin: 0;
  position: relative;
  width: clamp(160px, 22vw, 240px);
  aspect-ratio: 1081 / 2105;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 260ms ease, box-shadow 260ms ease, opacity 260ms ease, filter 260ms ease;
  opacity: 0.86;
}

.story-shelf-card:not(:first-child) {
  margin-left: clamp(-146px, -11vw, -96px);
}

.story-shelf-card img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.story-shelf-card:nth-child(1) {
  z-index: 5;
  transform: rotateY(-10deg) rotateZ(-4deg) translateZ(44px);
  opacity: 1;
}

.story-shelf-card:nth-child(2) {
  z-index: 4;
  transform: rotateY(-14deg) rotateZ(-2deg) translateZ(28px);
}

.story-shelf-card:nth-child(3) {
  z-index: 3;
  transform: rotateY(-18deg) rotateZ(0deg) translateZ(14px);
}

.story-shelf-card:nth-child(4) {
  z-index: 2;
  transform: rotateY(-22deg) rotateZ(2deg) translateZ(2px);
}

.story-shelf-card:nth-child(5) {
  z-index: 1;
  transform: rotateY(-26deg) rotateZ(4deg) translateZ(-8px);
}

.story-shelf:hover .story-shelf-card {
  opacity: 0.22;
  filter: none;
}

.story-shelf:hover .story-shelf-card:hover,
.story-shelf:hover .story-shelf-card:focus-visible,
.story-shelf:hover .story-shelf-card:focus-within {
  opacity: 1;
  filter: none;
}

.story-shelf-card:hover {
  z-index: 20;
  opacity: 1;
  filter: none;
  transform: translateY(-10px) rotateY(0deg) rotateZ(0deg) translateZ(84px) scale(1.03);
}

.story-shelf-card:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.story-shelf-card:focus-visible,
.story-shelf-card:focus-within {
  z-index: 20;
  opacity: 1;
  filter: none;
  transform: translateY(-10px) rotateY(0deg) rotateZ(0deg) translateZ(84px) scale(1.03);
  box-shadow: 0 26px 60px rgba(16, 0, 63, 0.3);
}


.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;
}

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

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

:root[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .section-heading p,
body[data-theme="dark"] .section-heading p {
  color: rgba(248, 247, 255, 0.92);
}

.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;
}

.behind-brand-section {
  margin: 4rem auto 0;
  max-width: 1200px;
  width: calc(100% - 3rem);
}

.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: 860px;
  color: var(--text-soft);
}

.behind-brand-body p {
  margin: 12px 0 0;
  max-width: 920px;
  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;
}

.live-projects-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(255, 126, 224, 0.1), rgba(111, 125, 255, 0.08));
  border: 1px solid rgba(111, 125, 255, 0.15);
  box-shadow: 0 25px 70px rgba(16, 0, 63, 0.08);
  scroll-margin-top: 120px;
}

.live-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

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

.live-project-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.live-project-card p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.live-project-points {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--text-main);
  display: grid;
  gap: 8px;
}

.live-projects-gallery-wrap {
  position: relative;
}

.live-projects-gallery-wrap::before,
.live-projects-gallery-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 62px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.live-projects-gallery-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(246, 244, 255, 1), rgba(246, 244, 255, 0));
}

.live-projects-gallery-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(246, 244, 255, 1), rgba(246, 244, 255, 0));
}

:root[data-theme="dark"] .live-projects-gallery-wrap::before,
html[data-theme="dark"] .live-projects-gallery-wrap::before,
body[data-theme="dark"] .live-projects-gallery-wrap::before {
  background: linear-gradient(90deg, rgba(15, 11, 37, 1), rgba(15, 11, 37, 0));
}

:root[data-theme="dark"] .live-projects-gallery-wrap::after,
html[data-theme="dark"] .live-projects-gallery-wrap::after,
body[data-theme="dark"] .live-projects-gallery-wrap::after {
  background: linear-gradient(270deg, rgba(15, 11, 37, 1), rgba(15, 11, 37, 0));
}

.live-projects-gallery-wrap.is-scrollable.can-scroll-left::before {
  opacity: 1;
}

.live-projects-gallery-wrap.is-scrollable.can-scroll-right::after {
  opacity: 1;
}

.live-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--image-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(16, 0, 63, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

:root[data-theme="dark"] .live-gallery-nav,
html[data-theme="dark"] .live-gallery-nav,
body[data-theme="dark"] .live-gallery-nav {
  background: rgba(10, 8, 25, 0.78);
}

.live-gallery-nav--prev {
  left: 6px;
}

.live-gallery-nav--next {
  right: 6px;
}

.live-gallery-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.live-gallery-nav:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 18px 40px rgba(16, 0, 63, 0.18);
}

.live-gallery-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.live-projects-gallery {
  display: flex;
  gap: 12px;
  padding: 4px 2px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.live-projects-gallery.is-dragging {
  cursor: grabbing;
}

.live-projects-gallery::-webkit-scrollbar {
  display: none;
}

.live-projects-gallery img {
  width: clamp(110px, 14vw, 150px);
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--image-border);
  background: var(--media-surface);
  scroll-snap-align: start;
}

@media (hover: hover) and (pointer: fine) {
  .live-projects-gallery {
    padding-left: 54px;
    padding-right: 54px;
    cursor: grab;
  }

  .live-gallery-nav {
    display: inline-flex;
  }
}

.live-projects-cta {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.photo-carousel-section {
  /* Match the portfolio page sizing: the portfolio carousel lives inside a 1200px container
     with 1.5rem side padding. This page doesn't constrain `.portfolio-page`, so we do it here. */
  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;
}

.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 {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

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

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

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

.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;
}

.carousel-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

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

.photo-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 2rem;
  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;
}

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

.photo-carousel-track {
  display: flex;
  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-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-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 {
  position: absolute;
  top: 16px;
  right: 16px;
  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: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 0, 63, 0.18);
  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 {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  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;
}

.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;
}
[data-theme="dark"] {
  .insta-callout-text p {
  color: rgba(248, 247, 255, 0.92);}
  .insta-handle {
      color: rgba(248, 247, 255, 0.92);
    }
}
.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;
}

.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-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,
  .photo-carousel-section,
  .videos-wrapper,
  .cta-band {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .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-carousel-section .photo-card-wrapper {
    flex: 0 0 100%;
    min-width: 100%;
  }

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

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

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

  .story-callout {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0 0 10px;
    padding: 8px 10px;
    transform: none;
    text-align: center;
  }

  .story-callout__arrow {
    display: none;
  }

  .story-callout__badge {
    font-size: 0.9rem;
  }

  .story-callout__text {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .story-callout__hint {
    font-size: 0.78rem;
  }

  .hero-frame {
    width: 100%;
    padding: 12px 10px 14px;
  }

  .story-shelf-caption {
    padding: 8px 10px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .story-shelf {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 8px 4px 2px;
  }

  .story-shelf-card {
    flex: 0 0 auto;
    width: min(74vw, 280px);
    margin-left: 0 !important;
    opacity: 1;
    filter: none;
    transform: none;
    scroll-snap-align: center;
  }

  .story-shelf-card:nth-child(1),
  .story-shelf-card:nth-child(2),
  .story-shelf-card:nth-child(3),
  .story-shelf-card:nth-child(4),
  .story-shelf-card:nth-child(5) {
    transform: none;
  }

  .story-shelf:hover .story-shelf-card {
    opacity: 1;
    filter: none;
  }

  .story-shelf-card:hover,
  .story-shelf-card:focus-visible,
  .story-shelf-card:focus-within {
    transform: translateY(-6px) scale(1.02);
  }

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

.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;
}

.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;
}

.gear-showcase {
  margin: 12px auto 22px;
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  padding: 0;
}

.gear-showcase-inner {
  text-align: center;
}

.gear-showcase-pill {
  display: inline-flex;
  margin: 0 0 12px;
}

.gear-showcase-title {
  margin: 16px 0 8px;
}

.gear-showcase-subtitle {
  margin: 0;
  color: var(--text-soft);
  max-width: 920px;
  margin-inline: auto;
}

.gear-vitrine {
  --gear-size: clamp(150px, 20vw, 230px);
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  align-items: end;
}

.gear-vitrine.is-rotating {
  display: block;
  position: relative;
  height: clamp(300px, 42vw, 420px);
  perspective: 1100px;
  margin-top: 18px;
}

.gear-item {
  margin: 0;
  padding: 0;
}

.gear-item:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.gear-vitrine.is-rotating .gear-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--gear-size);
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.gear-item img {
  width: 100%;
  height: var(--gear-size);
  display: block;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 0px 9px rgb(12, 2, 39)) drop-shadow(0 14px 28px rgba(255, 122, 167, 0.16));
}

:root[data-theme="dark"] .gear-item img,
html[data-theme="dark"] .gear-item img,
body[data-theme="dark"] .gear-item img {
  filter: drop-shadow(0 0px 9px rgb(97, 74, 161)) drop-shadow(0 14px 28px rgba(255, 122, 167, 0.16));
}

.gear-item figcaption {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  text-align: center;
}

.gear-name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.gear-role {
  margin: 0;
  color: var(--text-soft);
  font-weight: 650;
}

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

.equipment-title {
  margin: 18px 0 6px;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.equipment-lead {
  margin: 0;
  color: var(--text-soft);
  max-width: 860px;
}

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

.equipment-card {
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.equipment-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--media-surface);
  border-bottom: 1px solid var(--card-border);
}

.equipment-card figcaption {
  padding: 14px 16px 16px;
}

.equipment-name {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.equipment-desc {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.decision-section {
  margin: 14px auto 28px;
  max-width: var(--page-width);
  width: calc(100% - (var(--page-gutter) * 2));
  padding: clamp(1.2rem, 2.8vw, 2rem);
  border-radius: 30px;
  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);
}

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

.decision-section .section-heading p {
  margin: 0;
  max-width: 78ch;
  color: var(--text-soft);
  line-height: 1.6;
}

.decision-section .metric-row {
  margin-top: 1.1rem;
  padding: 0;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-section .metric-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(111, 125, 255, 0.2);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 35px rgba(16, 0, 63, 0.08);
}

.decision-section .metric-value {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.decision-section .decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  padding: 0;
  max-width: none;
}

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

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

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

.decision-card ul {
  margin: 0;
  padding-left: 0;
  color: var(--text-soft);
  line-height: 1.5;
  list-style: none;
  display: grid;
  gap: 8px;
}

.decision-card li {
  position: relative;
  padding-left: 1rem;
}

.decision-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5d52ff;
  font-weight: 800;
}

.decision-card a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 750;
}

.decision-card a:hover {
  opacity: 0.9;
}

:root[data-theme="dark"] .decision-section,
html[data-theme="dark"] .decision-section,
body[data-theme="dark"] .decision-section {
  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"] .decision-section .metric-card,
html[data-theme="dark"] .decision-section .metric-card,
body[data-theme="dark"] .decision-section .metric-card {
  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"] .decision-card,
html[data-theme="dark"] .decision-card,
body[data-theme="dark"] .decision-card {
  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);
}

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

@media (max-width: 920px) {
  .decision-section .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-section .decision-grid {
    grid-template-columns: 1fr;
  }
}

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

  .decision-section .metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0.9rem;
  }

  .decision-section .metric-card {
    border-radius: 14px;
    padding: 12px 13px;
  }

  .decision-section .metric-label {
    font-size: 0.93rem;
  }

  .decision-section .decision-grid {
    margin-top: 10px;
    gap: 10px;
  }

  .decision-card {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .decision-card h3 {
    font-size: 1rem;
  }
}

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

.story-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;
}

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

.story-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.story-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.story-note {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.story-media {
  margin-top: 10px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(122, 109, 255, 0.12), rgba(255, 143, 177, 0.18));
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid var(--card-border);
}

.story-media.vertical {
  aspect-ratio: 9 / 16;
  max-height: 260px;
}

.story-media.horizontal {
  aspect-ratio: 16 / 9;
  max-height: 200px;
}

.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;
  scroll-margin-top: 120px;
}

.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);
}

.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[hidden] {
  display: none;
}

.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;
}

: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__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);
}

:root[data-theme="dark"] .photo-carousel-section,
html[data-theme="dark"] .photo-carousel-section,
body[data-theme="dark"] .photo-carousel-section {
  background: linear-gradient(120deg, rgba(16, 0, 63, 0.8), rgba(5, 0, 20, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
}

: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);
}

: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);
}
