:root {
  color-scheme: dark;
  --bg: #090807;
  --bg-soft: #13100d;
  --panel: rgba(255, 248, 239, 0.06);
  --panel-strong: rgba(255, 248, 239, 0.09);
  --line: rgba(255, 248, 239, 0.14);
  --text: #f5efe7;
  --muted: rgba(245, 239, 231, 0.72);
  --soft: rgba(245, 239, 231, 0.54);
  --accent: #d4b37a;
  --accent-soft: rgba(212, 179, 122, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top left, rgba(212, 179, 122, 0.2), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 55% 50%, rgba(212, 179, 122, 0.08), transparent 32%),
    linear-gradient(180deg, #090807 0%, #0c0a09 45%, #090807 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.025), transparent 24%);
  opacity: 0.55;
}

body::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  background: none;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}

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

figure {
  margin: 0;
}

.site-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 32px;
}

body.no-scroll {
  overflow: hidden;
}

.page-backdrop,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-backdrop {
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 179, 122, 0.15), transparent 20%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 18%);
  filter: blur(28px);
  opacity: 0.65;
}

.page-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
  opacity: 0.22;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 122, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(212, 179, 122, 0.22), rgba(212, 179, 122, 0.08));
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.brand-copy span,
.topnav a,
.topbar-cta,
.footer p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-copy span {
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 180ms ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 179, 122, 0.8), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topbar-cta:hover,
.topbar-cta:focus-visible,
.button:hover,
.button:focus-visible {
  color: var(--text);
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.topbar-cta {
  background: linear-gradient(180deg, rgba(212, 179, 122, 0.17), rgba(212, 179, 122, 0.07));
  border-color: rgba(212, 179, 122, 0.35);
  color: var(--text);
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(180deg, rgba(212, 179, 122, 0.28), rgba(212, 179, 122, 0.18));
  border-color: rgba(212, 179, 122, 0.38);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(212, 179, 122, 0.12);
}

.button-secondary {
  background: rgba(255, 248, 239, 0.04);
  border-color: var(--line);
  color: var(--muted);
}

.topbar-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.section {
  margin-top: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 28px;
  min-height: auto;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.93;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  max-width: 12ch;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.02;
}

.lede,
.section-heading p,
.retainer-copy p,
.final-cta p,
.hero-points span,
.service-card p,
.process-step p,
.info-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.lede {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hero-points div,
.retainer-item,
.signal-strip p,
.info-card,
.service-card,
.process-step,
.mosaic-card,
.collage-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.visual-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 179, 122, 0.28);
  background: rgba(12, 10, 9, 0.72);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-size: 0.88rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(212, 179, 122, 0.16);
}

.collage {
  display: grid;
  grid-template-columns: 1.08fr 0.78fr;
  grid-template-rows: 250px 210px 180px;
  gap: 16px;
  height: 100%;
  padding-top: 62px;
}

.collage-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.collage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 40%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, rgba(212, 179, 122, 0.12), transparent 30%);
}

.collage-large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.collage-tall {
  grid-column: 2;
  grid-row: 1;
}

.collage-small {
  grid-column: 2;
  grid-row: 2;
}

.collage-wide {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.signal-strip p {
  margin: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-section,
.process-panel,
.retainer-panel,
.local-seo-panel {
  display: grid;
  gap: 28px;
}

.split-section {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.section-heading,
.retainer-copy {
  display: grid;
  gap: 12px;
}

.section-heading p:last-child,
.retainer-copy p:last-child,
.final-cta p:last-child {
  max-width: 60ch;
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.service-card,
.process-step,
.retainer-item {
  border-radius: var(--radius-md);
}

.info-card {
  padding: 24px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.retainer-panel {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
}

.retainer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.retainer-item {
  padding: 18px 18px 18px 46px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}

.retainer-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(212, 179, 122, 0.1) 65%);
  box-shadow: 0 0 0 6px rgba(212, 179, 122, 0.1);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-lg);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.68) 100%);
}

.mosaic-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-trigger {
  cursor: zoom-in;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.lightbox-trigger img {
  transition: transform 320ms ease, filter 320ms ease;
}

.lightbox-trigger:hover,
.lightbox-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 179, 122, 0.32);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 179, 122, 0.2);
}

.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}

.span-7 {
  grid-column: span 7;
}

.span-5 {
  grid-column: span 5;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-8 {
  grid-column: span 8;
}

.tall {
  min-height: 538px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-card {
  padding: 22px;
  min-height: 186px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.local-card {
  padding: 22px;
  min-height: 194px;
  border-radius: var(--radius-md);
}

.local-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 179, 122, 0.22);
  background: rgba(212, 179, 122, 0.08);
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-heading {
  margin-top: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item[open] {
  border-color: rgba(212, 179, 122, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.02;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--accent);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid rgba(212, 179, 122, 0.34);
  outline-offset: 4px;
  border-radius: 12px;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 24px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.cta-note {
  margin: 6px 0 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 10px 6px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading.compact h2 {
  max-width: 14ch;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.lightbox::backdrop {
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 179, 122, 0.12), transparent 28%),
    rgba(6, 5, 4, 0.88);
  backdrop-filter: blur(14px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 56px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 22px;
}

.lightbox-frame {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 14px;
  width: min(100%, 1200px);
  max-height: 100%;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(13, 11, 9, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 8px);
  background: rgba(255, 255, 255, 0.03);
}

.lightbox-caption {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox-counter {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 239, 0.16);
  background: rgba(255, 248, 239, 0.06);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 179, 122, 0.45);
  background: rgba(212, 179, 122, 0.12);
}

.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  font-size: 1.95rem;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  font-size: 1.95rem;
}

.lightbox:focus,
.lightbox-close:focus,
.lightbox-nav:focus {
  outline: none;
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(212, 179, 122, 0.28);
}

.lightbox-close:disabled,
.lightbox-nav:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
  box-shadow: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .retainer-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .benefit-grid,
  .services-grid,
  .process-grid,
  .retainer-list,
  .local-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .site-shell {
    padding-top: 12px;
  }

  .topbar {
    top: 10px;
    border-radius: 28px;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .topnav {
    display: none;
  }

  .section {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-points,
  .benefit-grid,
  .services-grid,
  .process-grid,
  .retainer-list,
  .mosaic,
  .local-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .span-7,
  .span-5,
  .span-4,
  .span-6,
  .span-8 {
    grid-column: auto;
  }

  .hero-points {
    gap: 12px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .collage {
    grid-template-columns: 1fr 0.82fr;
    grid-template-rows: 210px 170px 150px;
    gap: 12px;
  }

  .mosaic-card {
    min-height: 220px;
  }

  .tall {
    min-height: 360px;
  }

  .faq-item summary {
    font-size: 1.35rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
  }

  .lightbox-shell {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    grid-template-rows: 48px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .lightbox-frame {
    padding: 14px;
  }

  .lightbox-image {
    max-height: 70vh;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .section-heading,
  .retainer-copy {
    gap: 10px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button,
  .topbar-cta {
    width: 100%;
  }

  .brand {
    width: 100%;
  }

  .visual-badge {
    left: 0;
    right: auto;
    top: -6px;
    max-width: 100%;
  }

  .collage {
    padding-top: 70px;
  }

  .lightbox-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
    padding: 10px;
  }

  .lightbox-frame {
    padding: 12px;
    border-radius: 22px;
  }

  .lightbox-image {
    max-height: 64vh;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    font-size: 1.45rem;
  }
}
