/* ============================================================
   FORME AESTHETICS — Mayfair Editorial Luxury
   Light theme only. Ivory, champagne gold, deep forest green.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* ─── Palette (per brief) ─── */
  --ivory:        #FDFAF6;
  --cream:        #F0EBE3;
  --cream-soft:   #F7F2EA;
  --ink:          #1C1C1A;
  --ink-soft:     #4B4A45;
  --ink-tertiary: #8A877F;
  --gold:         #B8975A;
  --gold-soft:    #D7BE92;
  --gold-deep:    #8E7340;
  --forest:       #2D4A3E;
  --forest-deep:  #1E322A;
  --forest-soft:  #3D5E50;

  /* hairline */
  --hairline:        rgba(28, 28, 26, 0.10);
  --hairline-strong: rgba(28, 28, 26, 0.22);
  --hairline-gold:   rgba(184, 151, 90, 0.45);
  --warm-overlay:    rgba(253, 250, 246, 0.32);

  /* Type families */
  --serif:    'Libre Bodoni', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
  --grotesk:  'Jost', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-6: 24px; --s-8: 32px; --s-12: 48px; --s-16: 64px;
  --s-24: 96px; --s-32: 128px; --s-48: 192px; --s-64: 256px;

  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 240ms;
  --t-med:  500ms;
  --t-slow: 800ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body, #root {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--grotesk);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ─── Type roles ─── */
.serif        { font-family: var(--serif); font-weight: 400; }
.serif-thin   { font-family: var(--serif); font-weight: 400; font-stretch: 75%; }
.italic       { font-style: italic; }
.grotesk      { font-family: var(--grotesk); }

.eyebrow {
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.gold { color: var(--gold-deep); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--ink);
}

.h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.022em; line-height: 0.96;
}
.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em; line-height: 1.02;
}
.h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.01em; line-height: 1.15;
}

.lede {
  font-family: var(--grotesk);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.body-lg { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 62ch; }
.body    { font-size: 15px; line-height: 1.7;  color: var(--ink-soft); max-width: 60ch; }
.caption { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-tertiary); font-weight: 500; }

/* ─── Layout ─── */
.shell      { padding-inline: var(--gutter); }
.shell-wide { padding-inline: clamp(16px, 3vw, 40px); }
.section    { padding-block: var(--section-y); }

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  width: 100%;
}
.rule-gold {
  height: 1px;
  background: var(--gold);
  border: 0;
  opacity: 0.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  width: 14px; height: 1px; background: currentColor;
  position: relative; transition: transform var(--t-med) var(--ease-out);
}
.btn .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(6px); }

.btn-forest {
  background: var(--forest); color: var(--ivory);
  border: 1px solid var(--forest);
}
.btn-forest:hover { background: var(--forest-deep); border-color: var(--forest-deep); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(28,28,26,0.03); }

.btn-gold {
  background: transparent; color: var(--gold-deep);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold); color: var(--ivory); border-color: var(--gold); }

.link-underline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.link-underline:hover { color: var(--gold-deep); border-color: var(--gold); }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-12);
  padding-block: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; color: var(--gold-deep);
  letter-spacing: -0.04em;
}
.brand-word {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-word small {
  display: block;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-tertiary);
  font-weight: 400;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 38px; justify-content: center;
}
.nav-link {
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 1px; background: var(--ink);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1px;
  background: var(--ink);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

/* mobile nav overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 80;
  display: flex; flex-direction: column;
  transform: translateY(-101%);
  transition: transform 600ms var(--ease-out);
}
.mobile-overlay.open { transform: translateY(0); }
.mobile-overlay-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.mobile-overlay-links {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  gap: 8px;
}
.mobile-overlay-link {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding-block: 10px;
  border-bottom: 1px solid var(--hairline);
  transition: color var(--t-fast) var(--ease-out);
}
.mobile-overlay-link .num {
  font-family: var(--grotesk);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.mobile-overlay-link:hover { color: var(--gold-deep); }
.mobile-overlay-foot {
  padding: var(--gutter);
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.close-x {
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.close-x svg { width: 18px; height: 18px; }

/* ─── Page transition ─── */
.page {
  animation: page-in 700ms var(--ease-out) both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Image placeholder (warm) ─── */
.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(184,151,90,0.18), transparent 60%),
    radial-gradient(120% 80% at 80% 90%, rgba(45,74,62,0.10), transparent 60%),
    linear-gradient(135deg, #EFE6D6 0%, #E4D9C2 45%, #D4C09A 100%);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.5; mix-blend-mode: multiply;
  pointer-events: none;
}
.ph::after {
  /* very light warm overlay (never dark) */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253,250,246,0.10) 0%, rgba(253,250,246,0.18) 100%);
  pointer-events: none;
}
.ph-label {
  position: absolute; left: 14px; bottom: 14px;
  z-index: 2;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(253,250,246,0.7);
  padding: 6px 10px;
  border: 1px solid var(--hairline);
}

/* alt placeholder palettes for editorial variety */
.ph.cool {
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(45,74,62,0.16), transparent 60%),
    radial-gradient(120% 80% at 80% 90%, rgba(184,151,90,0.10), transparent 60%),
    linear-gradient(135deg, #E8E6DD 0%, #CCD2C7 45%, #A8B6A8 100%);
}
.ph.warm {
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(184,151,90,0.30), transparent 60%),
    linear-gradient(135deg, #F2E9D8 0%, #E8D6B5 50%, #C9A875 100%);
}
.ph.blush {
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(232,196,184,0.55), transparent 60%),
    linear-gradient(135deg, #F4EAE4 0%, #E8D2C6 50%, #D4B3A1 100%);
}
.ph.ivory {
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(253,250,246,0.8), transparent 60%),
    linear-gradient(135deg, #FAF4EA 0%, #EFE6D2 50%, #DACEB0 100%);
}

/* ─── Grain (subtle) ─── */
.grain::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: multiply; opacity: 0.5;
}

/* ─── Footer ─── */
.footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--hairline);
  padding-block: var(--s-24) var(--s-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12);
}
.footer h4 {
  font-family: var(--grotesk);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; color: var(--ink); margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: var(--ink-soft); transition: color var(--t-fast) var(--ease-out); }
.footer a:hover { color: var(--gold-deep); }
.footer-bottom {
  margin-top: var(--s-16);
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-tertiary);
}

/* ─── Service card ─── */
.svc-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: 28px 28px 32px;
  transition: transform var(--t-med) var(--ease-out);
  overflow: hidden;
}
.svc-card .image { aspect-ratio: 4/5; margin-bottom: 28px; }
.svc-card .price-reveal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.svc-card:hover .price-reveal { opacity: 1; transform: translateY(0); }
.svc-card:hover { transform: translateY(-4px); }

/* Gold border draw on hover */
.svc-card .gold-border {
  position: absolute; inset: 0; pointer-events: none;
}
.svc-card .gold-border::before,
.svc-card .gold-border::after,
.svc-card .gold-border > span::before,
.svc-card .gold-border > span::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform 700ms var(--ease-out);
}
.svc-card .gold-border::before { /* top */
  top: 0; left: 0; height: 1px; width: 100%;
  transform: scaleX(0); transform-origin: left;
}
.svc-card .gold-border::after { /* right */
  top: 0; right: 0; width: 1px; height: 100%;
  transform: scaleY(0); transform-origin: top;
  transition-delay: 180ms;
}
.svc-card .gold-border > span { position: absolute; inset: 0; display: block; }
.svc-card .gold-border > span::before { /* bottom */
  bottom: 0; right: 0; height: 1px; width: 100%;
  transform: scaleX(0); transform-origin: right;
  transition-delay: 360ms;
}
.svc-card .gold-border > span::after { /* left */
  bottom: 0; left: 0; width: 1px; height: 100%;
  transform: scaleY(0); transform-origin: bottom;
  transition-delay: 540ms;
}
.svc-card:hover .gold-border::before { transform: scaleX(1); }
.svc-card:hover .gold-border::after  { transform: scaleY(1); }
.svc-card:hover .gold-border > span::before { transform: scaleX(1); }
.svc-card:hover .gold-border > span::after  { transform: scaleY(1); }

/* ─── Pricing table ─── */
.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.5fr;
  align-items: start;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-fast) var(--ease-out);
}
.pricing-row:hover { background: rgba(184,151,90,0.04); }
.pricing-row .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-row .desc {
  font-size: 14px; line-height: 1.6; color: var(--ink-soft);
  max-width: 56ch;
}
.pricing-row .duration {
  font-family: var(--grotesk);
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  padding-top: 8px;
}
.pricing-row .price {
  font-family: var(--serif);
  font-size: 22px;
  text-align: right;
  color: var(--ink);
  padding-top: 6px;
}
.pricing-row .price small {
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: 0.2em;
  display: block;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Accordion ─── */
.acc-item {
  border-bottom: 1px solid var(--hairline);
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-out);
}
.acc-trigger:hover { color: var(--gold-deep); }
.acc-indicator {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: background var(--t-fast) var(--ease-out);
}
.acc-indicator::before, .acc-indicator::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--gold-deep);
  transition: transform var(--t-med) var(--ease-out), background var(--t-fast);
}
.acc-indicator::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.acc-indicator::after  { width: 1px; height: 10px; transform: translate(-50%, -50%); }
.acc-item.open .acc-indicator { background: var(--gold); }
.acc-item.open .acc-indicator::before,
.acc-item.open .acc-indicator::after { background: var(--ivory); }
.acc-item.open .acc-indicator::after { transform: translate(-50%, -50%) scaleY(0); }

.acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms var(--ease-out);
}
.acc-item.open .acc-panel { max-height: 400px; }
.acc-panel-inner {
  padding-bottom: 32px;
  font-size: 16px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ─── Press band ─── */
.press-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: center;
  border-block: 1px solid var(--hairline);
}
.press-logo {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease-out);
}
.press-logo:last-child { border-right: none; }
.press-logo:hover { color: var(--ink); }
.press-logo .label {
  display: block;
  font-family: var(--grotesk);
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(28, 28, 26, 0.92);
  display: grid;
  place-items: center;
  padding: 5vh 6vw;
  animation: fade-in 300ms var(--ease-out);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox-frame {
  position: relative;
  width: 100%; height: 100%;
  max-width: 1200px;
}
.lightbox-image {
  width: 100%; height: 100%;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(253,250,246,0.4);
  color: var(--ivory);
  background: rgba(28,28,26,0.4);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: rgba(184,151,90,0.4); border-color: var(--gold);
}
.lightbox-close { top: -56px; right: 0; }
.lightbox-nav.prev { left: -68px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: -68px; top: 50%; transform: translateY(-50%); }
.lightbox-meta {
  position: absolute; bottom: -56px; left: 0;
  color: var(--ivory);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; gap: 24px; align-items: center;
}
.lightbox-meta .count { color: var(--gold-soft); }

/* ─── Gallery filter ─── */
.filter-chip {
  padding: 10px 22px;
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.filter-chip:hover { color: var(--ink); border-color: var(--ink); }
.filter-chip.active {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}

/* ─── Form ─── */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--grotesk);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
}
.form-input, .form-textarea, .form-select {
  font-family: var(--grotesk);
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast) var(--ease-out);
}
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-tertiary); }

/* ─── Masonry-ish grid ─── */
.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry > * {
  break-inside: avoid;
  margin-bottom: 18px;
  cursor: pointer;
  transition: opacity var(--t-fast) var(--ease-out);
}
.masonry > *:hover { opacity: 0.88; }

@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pricing-row .price { text-align: left; }
  .press-band { grid-template-columns: repeat(3, 1fr); }
  .press-logo:nth-child(3n) { border-right: none; }
  .press-logo { border-bottom: 1px solid var(--hairline); }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
