/* palette: bg=#DEDDD8 fg=#111111 accent=#FF4A1C */
/* fonts: display="Archivo" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #DEDDD8;
  --bg-alt: #C7C6C1;
  --bg-dark: #111111;
  --fg: #111111;
  --fg-soft: #2A2A28;
  --muted: #6B6B66;
  --accent: #FF4A1C;
  --accent-deep: #D63A0F;
  --paper: #F2F1EC;
  --border: rgba(17, 17, 17, 0.14);
  --border-strong: rgba(17, 17, 17, 0.28);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17,17,17,0.05) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
  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; }
::selection { background: var(--accent); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ========= TYPOGRAPHY ========= */
.display {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--fg);
  text-transform: uppercase;
}
.h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 8.6rem);
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}
.h1 em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
}
.h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 12px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 60ch;
}
p { margin: 0 0 1.2em; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: all 0.32s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--fg); border-color: var(--fg); }
.btn .arrow { display: inline-block; transition: transform 0.32s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* ========= REVEAL ========= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ========= HEADER ========= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(222, 221, 216, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-strong);
  background: rgba(222, 221, 216, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.nav { display: none; gap: 36px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  padding: 60px 0 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.4fr 1fr; gap: 80px; } }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-strong);
}
.hero__meta-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.hero__meta-item strong { color: var(--fg); display: block; font-size: 13px; margin-top: 4px; }
.hero__sub {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.55;
  max-width: 46ch;
  color: var(--fg-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__visual::after {
  content: "01 / 24";
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 6px 12px;
  background: var(--accent);
}
.hero__ticker {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding: 0 24px;
  pointer-events: none;
}
@media (max-width: 1023px) { .hero__ticker { display: none; } }

/* ========= MARQUEE ========= */
.marquee {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--paper);
  padding: 26px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after {
  content: "■";
  color: var(--accent);
  font-size: 0.7em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ========= SECTIONS ========= */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--alt {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark {
  background: var(--bg-dark);
  color: var(--paper);
  border-top: 1px solid var(--bg-dark);
}
.section--dark .h2 { color: var(--paper); }
.section--dark .eyebrow { color: rgba(255,255,255,0.6); }
.section--dark .muted { color: rgba(255,255,255,0.7); }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: end;
}
@media (min-width: 900px) { .section__head { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.section__head p { color: var(--fg-soft); max-width: 44ch; margin: 0; }
.section--dark .section__head p { color: rgba(255,255,255,0.74); }

/* ========= STATS ========= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats__cell {
  padding: 36px 28px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.stats__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.stats__num em { color: var(--accent); font-style: normal; }
.stats__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: block;
}

/* ========= PROJECTS / WORK GRID ========= */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
}
@media (min-width: 720px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-grid--featured .work-card:first-child { grid-column: 1 / -1; }
@media (min-width: 1100px) { .work-grid--featured .work-card:first-child { grid-column: 1 / span 2; } }

.work-card { display: block; group: card; }
.work-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 18px;
}
.work-card:first-child .work-card__media { aspect-ratio: 16/10; }
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-card:hover .work-card__media::after { opacity: 1; }
.work-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--fg);
  color: var(--bg);
}
.work-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.work-card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.work-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}

/* ========= MANIFESTO ========= */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-dark);
  color: var(--paper);
  text-align: left;
  border-top: 8px solid var(--accent);
}
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 22ch;
  color: var(--paper);
  margin: 0 0 36px;
}
.manifesto__quote em { color: var(--accent); font-style: normal; }
.manifesto__byline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 14px;
}
.manifesto__byline::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

/* ========= SERVICES (services list) ========= */
.svc-list { display: block; border-top: 1px solid var(--border-strong); }
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-strong);
  position: relative;
  transition: padding 0.4s var(--ease);
}
@media (min-width: 900px) { .svc-row { grid-template-columns: 80px 1fr 1.3fr 40px; gap: 40px; padding: 36px 0; } }
.svc-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.svc-row__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.svc-row__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
}
@media (max-width: 899px) {
  .svc-row__desc { grid-column: 2; }
}
.svc-row__arrow {
  font-family: var(--mono);
  display: none;
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
@media (min-width: 900px) { .svc-row__arrow { display: block; } }
.svc-row:hover { background: rgba(255, 74, 28, 0.04); }
.svc-row:hover .svc-row__num { color: var(--accent); }
.svc-row:hover .svc-row__arrow { color: var(--accent); transform: translateX(6px); }

/* ========= TEAM / MEMBERS ========= */
.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-strong);
}
@media (min-width: 720px) { .members-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .members-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  padding: 36px 32px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
  transition: background 0.3s var(--ease);
}
.member:hover { background: var(--bg-alt); }
.member__avatar {
  width: 72px;
  height: 72px;
  background: var(--fg);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.member:nth-child(3n+1) .member__avatar { background: var(--accent); color: #fff; }
.member:nth-child(3n+2) .member__avatar { background: var(--fg); color: var(--paper); }
.member:nth-child(3n+3) .member__avatar { background: var(--bg-alt); color: var(--fg); border: 1.5px solid var(--fg); }
.member__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 0;
}
.member__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}
.member__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ========= EVENTS ========= */
.events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .events { grid-template-columns: repeat(2, 1fr); } }
.event {
  background: var(--paper);
  border: 1px solid var(--border-strong);
  padding: 32px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.event:hover { transform: translateY(-3px); border-color: var(--fg); }
.event__date {
  background: var(--fg);
  color: var(--paper);
  padding: 14px 8px;
  text-align: center;
  font-family: var(--mono);
}
.event__date strong {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.event__date span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 6px;
  color: var(--accent);
}
.event__type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.event__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.event__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.event__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}

/* ========= DISCUSSION PREVIEW ========= */
.discussions { display: grid; grid-template-columns: 1fr; gap: 0; }
.discussion {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 800px) {
  .discussion { grid-template-columns: 1.4fr 0.8fr 0.4fr; gap: 32px; align-items: center; }
}
.discussion:first-child { border-top: 1px solid rgba(255,255,255,0.14); }
.discussion__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
}
.discussion__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.discussion__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
}
@media (min-width: 800px) { .discussion__count { text-align: right; } }

/* ========= TIMELINE (process) ========= */
.timeline { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline__step {
  border-top: 3px solid var(--fg);
  padding: 28px 24px 36px 0;
  position: relative;
}
@media (min-width: 900px) { .timeline__step { padding-right: 32px; } }
.timeline__step::before {
  content: attr(data-step);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.timeline__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.timeline__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}

/* ========= CTA BAND ========= */
.cta {
  background: var(--accent);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "■";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-size: clamp(20rem, 40vw, 40rem);
  line-height: 1;
  color: rgba(0,0,0,0.07);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
  position: relative;
}
@media (min-width: 900px) { .cta__inner { grid-template-columns: 1.5fr 1fr; gap: 60px; } }
.cta__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.cta__title em { font-style: normal; color: var(--bg-dark); }
.cta .btn { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.cta .btn:hover { background: var(--bg); color: var(--fg); }
.cta__sub { color: rgba(255,255,255,0.9); margin: 0 0 24px; max-width: 38ch; }

/* ========= CONTACT / FORM ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 700px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: block;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--border-strong);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.form__consent {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form__consent input { margin-top: 4px; }
.form__consent a { border-bottom: 1px solid currentColor; }

.contact-info { display: grid; gap: 28px; }
.contact-info__block {
  border-top: 1px solid var(--border-strong);
  padding-top: 20px;
}
.contact-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}
.contact-info__value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.contact-info__value a:hover { color: var(--accent); }

/* ========= FAQ ========= */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border-strong); }
.faq__item {
  border-bottom: 1px solid var(--border-strong);
  padding: 24px 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  gap: 24px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 70ch;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 80px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; } }
.footer__brand .brand { color: var(--paper); }
.footer__tag {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 16ch;
  margin: 24px 0 24px;
  color: var(--paper);
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { font-size: 15px; color: rgba(255,255,255,0.9); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer__bottom a:hover { color: var(--accent); }

/* ========= COOKIE POPUP ========= */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 30px 32px;
  max-width: 460px;
  width: 100%;
  border-radius: 0;
  border-top: 4px solid var(--accent);
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.4);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.cookie-popup p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.cookie-popup__actions button {
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--fg);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cookie-popup__actions button[data-cookie="accept"] {
  background: var(--fg);
  color: var(--bg);
}
.cookie-popup__actions button[data-cookie="accept"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cookie-popup__actions button[data-cookie="decline"]:hover { background: var(--fg); color: var(--bg); }

/* ========= LEGAL ========= */
.legal-page {
  padding: clamp(60px, 8vw, 100px) 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-soft);
}
.legal-page ul { padding-left: 20px; }
.legal-page .updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}

/* ========= UTILITIES ========= */
.muted { color: var(--muted); }
.divider {
  height: 1px;
  background: var(--border-strong);
  margin: 0;
  border: 0;
}
