/* palette: bg=#0A1A30 fg=#F3EAD6 accent=#C9A24B */
/* fonts: display="Playfair Display" body="Jost" mono="JetBrains Mono" */

:root {
  --bg:          #0A1A30;   /* dominant deep midnight navy */
  --bg-deep:     #06101E;   /* darker band (footer, manifesto) */
  --bg-alt:      #0E2440;   /* alternating lighter navy section */
  --fg:          #F3EAD6;   /* primary cream text */
  --fg-soft:     #E3D8BF;   /* slightly softer cream */
  --muted:       #93A0B4;   /* muted steel-blue secondary text */
  --accent:      #C9A24B;   /* gold from hero/CTA */
  --accent-soft: #E0C079;   /* lighter gold */
  --accent-deep: #A6833A;   /* darker gold for hover */
  --border:      rgba(201, 162, 75, 0.22);
  --border-soft: rgba(243, 234, 214, 0.10);
  --shadow-card: 0 4px 24px -4px rgba(0, 0, 0, 0.45);
  --shadow-hi:   0 18px 48px -12px rgba(0, 0, 0, 0.60);

  --serif: 'Playfair Display', ui-serif, Georgia, serif;
  --sans:  'Jost', ui-sans-serif, system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0; }

::selection { background: var(--accent); color: var(--bg); }

/* ─────────────── Layout ─────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 var(--pad); } }

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }

/* ─────────────── Typography helpers ─────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.section--center .eyebrow { justify-content: center; }

.h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.h2 em { font-style: italic; color: var(--accent-soft); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  color: var(--fg-soft);
  max-width: 62ch;
}
.muted { color: var(--muted); }

.section-head { margin-bottom: clamp(48px, 6vw, 84px); }
.section-head .lede { margin-top: 26px; }
.section--center .section-head { text-align: center; margin-inline: auto; max-width: 760px; }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 9999px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.4s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary {
  background: var(--accent);
  color: #10151B;
  font-weight: 500;
}
.btn--primary:hover { background: var(--accent-soft); transform: translateY(-2px); }

.btn--ghost {
  border-color: var(--border);
  color: var(--fg);
  background: rgba(243, 234, 214, 0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-soft); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }

.link-arw {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.35s var(--ease), gap 0.35s var(--ease);
}
.link-arw:hover { border-color: var(--accent); gap: 12px; }

/* ─────────────── Header ─────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(10, 26, 48, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.8);
}
.header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) { .header__inner { padding: 20px var(--pad); } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}
.menu-toggle__bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.menu-toggle__bars span {
  height: 1.5px; width: 100%; background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.menu-toggle__label { display: none; }
@media (min-width: 560px) { .menu-toggle__label { display: inline; } }

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-self: center;
}
.brand__mark { color: var(--accent); }
.brand__word {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1;
}
@media (min-width: 768px) { .brand__word { font-size: 26px; } }

.header__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.header__link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.3s var(--ease);
  display: none;
}
.header__link:hover { color: var(--accent); }
@media (min-width: 900px) { .header__link { display: inline; } }
.header__cta { padding: 11px 22px; font-size: 11px; }
.header__cta-full { display: none; }
@media (min-width: 480px) { .header__cta-full { display: inline; } .header__cta-short { display: none; } }

/* ─────────────── Mobile / full menu ─────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 28px 48px;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; max-width: var(--container); margin: 0 auto; width: 100%; }
.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
}
.mobile-menu__nav a:hover { color: var(--accent); padding-left: 14px; }
.mobile-menu__nav a span { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-right: 16px; vertical-align: middle; }
.mobile-menu__foot {
  max-width: var(--container); margin: 48px auto 0; width: 100%;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
}

/* ─────────────── Scanline / grain overlay (glitch nod) ─────────────── */
.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.018) 0px,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  z-index: 3;
}

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(10, 26, 48, 0.35), rgba(6, 16, 30, 0.86) 78%),
    linear-gradient(180deg, rgba(6, 16, 30, 0.55) 0%, rgba(6, 16, 30, 0.35) 45%, rgba(6, 16, 30, 0.95) 100%);
}
.hero__inner {
  position: relative;
  z-index: 4;
  max-width: 940px;
  padding: 130px 20px 120px;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 30px;
  display: block;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 60ch;
  margin: 0 auto 42px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  width: 1px; height: 46px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ─────────────── Stats ─────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: clamp(32px, 5vw, 54px) 28px; }
.section--alt .stat { background: var(--bg-alt); }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22ch;
}

/* ─────────────── Featured card grid ─────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .work-grid { grid-template-columns: repeat(6, 1fr); } }

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
@media (min-width: 720px) {
  .work-card { grid-column: span 3; min-height: 340px; }
  .work-card--wide { grid-column: span 4; }
  .work-card--narrow { grid-column: span 2; }
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hi); border-color: var(--border); }
.work-card__img { position: absolute; inset: 0; z-index: 0; }
.work-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
  filter: saturate(0.92) brightness(0.85);
}
.work-card:hover .work-card__img img { transform: scale(1.06); }
.work-card__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,16,30,0.15) 0%, rgba(6,16,30,0.35) 45%, rgba(6,16,30,0.94) 100%);
}
.work-card__body { position: relative; z-index: 2; padding: clamp(24px, 3vw, 36px); }
.work-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.work-card__title {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.work-card__desc { font-size: 15px; color: var(--fg-soft); line-height: 1.6; max-width: 44ch; }
.work-cta { display: flex; justify-content: center; margin-top: clamp(48px, 6vw, 72px); }

/* ─────────────── Manifesto ─────────────── */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: var(--accent-soft); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.32;
  display: block;
  margin-bottom: 8px;
}
.manifesto__by {
  margin-top: 46px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────── Community / spotlights ─────────────── */
.spotlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .spotlights { grid-template-columns: repeat(3, 1fr); } }
.spot {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.section--alt .spot { background: var(--bg-deep); }
.spot:hover { transform: translateY(-5px); border-color: var(--border); }
.spot__quote { font-family: var(--serif); font-size: 1.32rem; line-height: 1.4; color: var(--fg); font-style: italic; }
.spot__foot { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.avatar {
  width: 52px; height: 52px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  color: #10151B;
  letter-spacing: 0.01em;
}
.spot__meta strong { font-weight: 500; font-family: var(--sans); font-size: 15px; color: var(--fg); display: block; }
.spot__meta span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ─────────────── Events ─────────────── */
.events { display: flex; flex-direction: column; }
.event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 32px;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid var(--border-soft);
  align-items: center;
  transition: padding-left 0.5s var(--ease);
}
.event:last-child { border-bottom: 1px solid var(--border-soft); }
.event:hover { padding-left: 10px; }
@media (min-width: 820px) { .event { grid-template-columns: 150px 1fr auto; gap: 40px; } }
.event__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
  text-transform: uppercase;
}
.event__date small { display: block; color: var(--muted); font-size: 11px; margin-top: 4px; letter-spacing: 0.1em; }
.event__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.15; }
.event__title span { display: block; font-family: var(--sans); font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; font-weight: 300; }
.event__place { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ─────────────── FAQ ─────────────── */
.faq { max-width: 900px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border-soft); }
.faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: clamp(24px, 3vw, 32px) 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.3;
  color: var(--fg);
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--accent-soft); }
.faq__sign { font-family: var(--mono); font-size: 20px; color: var(--accent); flex: none; transition: transform 0.4s var(--ease); }
.faq__item[data-open="true"] .faq__sign { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.5s var(--ease);
  opacity: 0;
}
.faq__item[data-open="true"] .faq__a { max-height: 400px; opacity: 1; padding-bottom: clamp(24px, 3vw, 32px); }
.faq__a p { color: var(--fg-soft); font-size: 16px; line-height: 1.75; max-width: 68ch; }

/* ─────────────── CTA band ─────────────── */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.cta-band__title em { font-style: italic; color: var(--accent-soft); }
.cta-band .lede { margin: 0 auto 42px; text-align: center; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ─────────────── Contact form ─────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.info-block { display: flex; flex-direction: column; gap: 34px; }
.info-item__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.info-item__value { font-size: 17px; color: var(--fg); line-height: 1.7; }
.info-item__value a { border-bottom: 1px solid var(--border); transition: border-color 0.3s var(--ease); }
.info-item__value a:hover { border-color: var(--accent); color: var(--accent-soft); }

.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--fg);
  background: var(--bg-deep);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 15px 18px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.section--alt .field input, .section--alt .field select, .section--alt .field textarea { background: var(--bg); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.65; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }
.field--row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__consent input { margin-top: 4px; accent-color: var(--accent); }
.form__consent a { color: var(--accent-soft); border-bottom: 1px solid var(--border); }

/* ─────────────── Footer ─────────────── */
.footer { background: var(--bg-deep); padding: clamp(64px, 9vw, 110px) 0 40px; border-top: 1px solid var(--border-soft); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__top { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }
.footer__brand .brand__word { font-size: 30px; }
.footer__tagline { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 34ch; margin-top: 20px; }
.footer__col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px; font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer__col a, .footer__col li { color: var(--fg-soft); font-size: 15px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent-soft); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  padding-top: 32px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent-soft); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ─────────────── Cookie popup ─────────────── */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
  background: rgba(6, 16, 30, 0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 32px 34px; max-width: 480px; border-radius: 14px;
  box-shadow: var(--shadow-hi);
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.cookie-popup__card h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.7; }
.cookie-popup__card p a { color: var(--accent-soft); border-bottom: 1px solid var(--border); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button {
  padding: 12px 26px; border: 1px solid var(--border);
  border-radius: 9999px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg);
  transition: all 0.3s var(--ease);
}
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #10151B; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-soft); }

/* ─────────────── Scroll reveal ─────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────────── Page hero (interior pages) ─────────────── */
.page-hero { padding: clamp(140px, 20vh, 220px) 0 clamp(70px, 9vw, 120px); position: relative; overflow: hidden; }
.page-hero__inner { max-width: 900px; }
.page-hero h1 {
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 30px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lede { font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.page-hero__glow {
  position: absolute; z-index: 0; top: -20%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.14), transparent 68%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* ─────────────── Split feature (about/services) ─────────────── */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--flip .split__media { order: 2; } }
.split__media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-card); }
.split__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; filter: saturate(0.92) brightness(0.9); }
.split__body h2 { margin-bottom: 22px; }
.split__body .lede { margin-bottom: 22px; }
.split__body p + p { margin-top: 18px; }

/* ─────────────── Value list ─────────────── */
.value-list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 16px; overflow: hidden; }
@media (min-width: 760px) { .value-list { grid-template-columns: repeat(2, 1fr); } }
.value {
  background: var(--bg);
  padding: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.4s var(--ease);
}
.section--alt .value { background: var(--bg-alt); }
.value:hover { background: var(--bg-alt); }
.section--alt .value:hover { background: var(--bg); }
.value__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.value__title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); line-height: 1.14; }
.value__desc { font-size: 15.5px; color: var(--fg-soft); line-height: 1.7; }

/* ─────────────── Service detail rows ─────────────── */
.svc { display: grid; grid-template-columns: 1fr; gap: 20px 48px; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--border-soft); }
.svc:last-child { border-bottom: 1px solid var(--border-soft); }
@media (min-width: 860px) { .svc { grid-template-columns: 0.5fr 1fr; gap: 60px; } }
.svc__idx { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); }
.svc__idx span { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--accent-soft); margin-top: 12px; }
.svc__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em; }
.svc__desc { color: var(--fg-soft); font-size: 16.5px; line-height: 1.76; max-width: 60ch; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.svc__tags span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border-soft); border-radius: 9999px; padding: 7px 16px;
}

/* ─────────────── Legal pages ─────────────── */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 52px 0 18px; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--fg); }
.legal p, .legal li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; }
.legal p + p { margin-top: 16px; }
.legal ul { margin: 16px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.legal ul li::marker { color: var(--accent); }
.legal a { color: var(--accent-soft); border-bottom: 1px solid var(--border); }
.legal__updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* thank-you page */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 680px; margin: 0 auto; }
.thanks__mark { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5.5rem); color: var(--accent); line-height: 1; margin-bottom: 30px; }
