/* =========================================================
   NAVAMI DESIGNS — design system
   Editorial luxury × tech-credible. Serif + sans, bone + brass.
   ========================================================= */

:root {
  /* color — Carbon · Limestone · Moss · Terracotta · Slate */
  --ink: #14161A;
  --ink-soft: #22252B;
  --bone: #ECE7DC;
  --paper: #F5F1E6;
  --smoke: #D8D1BD;
  --line: #C7BFAA;
  --brass: #6E7C50;
  --brass-dark: #4F5C37;
  --clay: #A8553A;
  --clay-dark: #7E3D29;
  --sage: #5F7561;
  --slate: #5E5B55;
  --white: #FFFFFF;

  /* type */
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;

  /* layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: 180ms var(--ease);
  --t: 320ms var(--ease);
  --t-slow: 600ms var(--ease);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brass); color: var(--paper); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 9vw, 130px) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--bone); }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--clay { background: var(--clay); color: var(--paper); }

/* Eyebrow + heading pattern */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section--dark .eyebrow { color: var(--brass); }

h1.display, .display {
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 300;
}
h2.headline, .headline {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 300;
}
h3.title { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.12; letter-spacing: -0.02em; }
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
}
.section--dark .lede { color: #B5ACA0; }
em.serif-em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--brass); }
em.clay { font-family: var(--serif); font-style: italic; color: var(--clay); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  transition: transform 380ms var(--ease);
}
.nav__brand:hover .nav__mark { transform: rotate(-8deg) scale(1.06); }
.nav__mark svg { width: 38px; height: 38px; }

.nav__brand-text,
.nav__brand > span:not(.nav__mark) {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 7px;
}
.nav__brand em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 0.92;
  font-feature-settings: "ss01" 1, "calt" 1;
  position: relative;
  padding-right: 8px;
}
.nav__brand em::after {
  content: '.';
  position: absolute;
  right: -2px;
  bottom: 0;
  color: var(--brass);
  font-style: normal;
  font-weight: 500;
  font-size: 1.05em;
  line-height: 0.92;
}
.nav__brand small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1;
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__links a:hover::after, .nav__links a[aria-current]::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bone);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav__cta:hover { background: var(--clay); transform: translateY(-1px); }
.nav__cta::after { content: '→'; font-family: var(--serif); }

.nav__toggle { display: none; }
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
  }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    display: block;
    width: 16px; height: 1.5px;
    background: var(--ink);
    position: relative;
  }
  .nav__toggle span::before, .nav__toggle span::after {
    content: ''; position: absolute; left: 0;
  }
  .nav__toggle span::before { top: -5px; }
  .nav__toggle span::after { top: 5px; }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    inset: 70px 0 0 0;
    flex-direction: column;
    background: var(--paper);
    padding: 40px var(--gutter);
    gap: 24px;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { font-size: 22px; font-family: var(--serif); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t);
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: var(--clay); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(184, 90, 60, 0.55); }
.btn--clay { background: var(--clay); color: var(--paper); }
.btn--clay:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(184, 90, 60, 0.55); }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-dark); color: var(--paper); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--bone-ghost { background: transparent; color: var(--bone); border: 1px solid rgba(244, 239, 230, 0.4); }
.btn--bone-ghost:hover { background: var(--bone); color: var(--ink); }
.btn::after { content: '→'; font-family: var(--serif); font-style: italic; transition: transform var(--t-fast); }
.btn:hover::after { transform: translateX(3px); }
.btn--no-arrow::after { content: ''; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--bone);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.is-loaded .hero__bg { transform: scale(1); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.35) 0%, rgba(22, 17, 13, 0.55) 50%, rgba(22, 17, 13, 0.85) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { color: var(--bone); opacity: 0.85; }
.hero__eyebrow::before { background: var(--brass); }
.hero__display {
  max-width: 16ch;
  margin: 0 0 30px;
  color: var(--bone);
}
.hero__display em { font-style: italic; color: var(--brass); font-weight: 300; }
.hero__lede {
  max-width: 56ch;
  color: rgba(244, 239, 230, 0.85);
  font-size: clamp(17px, 1.5vw, 22px);
  margin-bottom: 40px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  position: absolute;
  bottom: 30px;
  right: var(--gutter);
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hero__meta b { font-weight: 400; color: var(--brass); }
.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll::before {
  content: '';
  width: 1px;
  height: 36px;
  background: var(--bone);
  animation: scroll-line 2.2s infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   MANIFESTO STRIP
   ========================================================= */
.manifesto-strip {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bone);
  position: relative;
}
.manifesto-strip__quote {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 18ch;
}
.manifesto-strip__quote em { font-style: italic; color: var(--clay); }
.manifesto-strip__sig {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.manifesto-strip__sig::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: 80px;
}
.stat { background: var(--bone); padding: 40px 32px; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 300;
}
.stat__num em { font-style: italic; color: var(--brass); }
.stat__label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* =========================================================
   PROJECTS GRID
   ========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bone);
  isolation: isolate;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.project-card--lead { grid-column: span 7; aspect-ratio: 4/3; }
.project-card--side { grid-column: span 5; }
.project-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s var(--ease);
  z-index: 0;
}
.project-card:hover .project-card__img { transform: scale(1.06); }
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 17, 13, 0.85) 100%);
}
.project-card__body { position: relative; z-index: 2; padding: 32px; width: 100%; }
.project-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.2);
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.project-card__status.is-sold { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.project-card__status.is-active { background: var(--clay); color: var(--paper); border-color: var(--clay); }
.project-card__status::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.project-card__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.project-card__meta {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .project-card--lead, .project-card--side { grid-column: span 12; aspect-ratio: 4/5; }
}

/* =========================================================
   PLATFORM GRID (feature cards)
   ========================================================= */
.platform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
  margin-top: 60px;
  border: 1px solid rgba(244, 239, 230, 0.1);
}
.platform__card {
  padding: 36px 32px;
  background: var(--ink);
  position: relative;
  transition: background var(--t);
}
.platform__card:hover { background: var(--ink-soft); }
.platform__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(182, 138, 78, 0.15);
  color: var(--brass);
  margin-bottom: 22px;
}
.platform__title {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin-bottom: 10px;
}
.platform__body {
  font-size: 15px;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.55;
}
.platform__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brass);
}

/* =========================================================
   BUDGET TIERS
   ========================================================= */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tier:hover { transform: translateY(-4px); border-color: var(--brass); box-shadow: 0 30px 60px -30px rgba(22, 17, 13, 0.2); }
.tier.is-featured { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.tier.is-featured .tier__label { color: var(--brass); }
.tier.is-featured .tier__price { color: var(--bone); }
.tier.is-featured .tier__price small { color: rgba(244, 239, 230, 0.6); }
.tier.is-featured ul li { color: rgba(244, 239, 230, 0.85); border-color: rgba(244, 239, 230, 0.12); }
.tier.is-featured ul li::before { color: var(--brass); }
.tier__flag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--clay);
  color: var(--paper);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tier__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.tier__price {
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 300;
  color: var(--ink);
}
.tier__price small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0;
}
.tier ul { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.tier.is-featured ul { border-top-color: rgba(244, 239, 230, 0.15); }
.tier ul li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--smoke);
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}
.tier ul li:last-child { border-bottom: 0; }
.tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 600;
}

/* =========================================================
   FEATURE LIST
   ========================================================= */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 60px;
  border-block: 1px solid var(--line);
}
.feature {
  background: var(--paper);
  padding: 36px 32px;
}
.feature__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 18px;
}
.feature__title {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.feature__body { font-size: 14.5px; color: var(--slate); line-height: 1.6; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.gallery__item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__item.wide { grid-column: span 8; aspect-ratio: 16/9; }
.gallery__item.med { grid-column: span 6; aspect-ratio: 4/3; }
.gallery__item.sm { grid-column: span 3; aspect-ratio: 1; }
@media (max-width: 880px) {
  .gallery__item.tall, .gallery__item.wide, .gallery__item.med { grid-column: span 12; }
  .gallery__item.sm { grid-column: span 6; }
}

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.process {
  display: grid;
  gap: 0;
  margin-top: 60px;
}
.process__row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process__row:last-child { border-bottom: 1px solid var(--line); }
.process__num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brass);
  font-weight: 300;
}
.process__title { font-family: var(--serif); font-size: 28px; letter-spacing: -0.02em; line-height: 1.1; }
.process__body { color: var(--slate); font-size: 15px; line-height: 1.6; }
.process__body strong { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) {
  .process__row { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .process__num { font-size: 40px; }
}

/* =========================================================
   FORMS
   ========================================================= */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--white);
}
.field--dark input, .field--dark textarea, .field--dark select {
  background: rgba(244, 239, 230, 0.06);
  border-color: rgba(244, 239, 230, 0.18);
  color: var(--bone);
}
.field--dark input:focus, .field--dark textarea:focus, .field--dark select:focus {
  border-color: var(--brass);
  background: rgba(244, 239, 230, 0.1);
}
.field--dark label { color: rgba(244, 239, 230, 0.6); }
.field__hint { font-size: 12px; color: var(--slate); }
.field--check { display: flex; gap: 10px; align-items: flex-start; }
.field--check input { width: 18px; height: 18px; accent-color: var(--brass); margin-top: 3px; }
.field--check label { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 13px; color: var(--slate); }

.budget-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.budget-picker input { position: absolute; opacity: 0; pointer-events: none; }
.budget-picker label {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  font-weight: 400;
}
.budget-picker label small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}
.budget-picker input:checked + label {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.budget-picker input:checked + label small { color: var(--brass); }

/* =========================================================
   AUTH (signup/signin centered)
   ========================================================= */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bone);
}
.auth-shell__visual {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
}
.auth-shell__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(22, 17, 13, 0.3) 0%, rgba(22, 17, 13, 0.7) 100%);
}
.auth-shell__quote {
  position: absolute;
  inset: auto 40px 40px 40px;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  z-index: 2;
  max-width: 22ch;
}
.auth-shell__quote em { color: var(--brass); font-style: italic; }
.auth-shell__form {
  padding: clamp(40px, 6vw, 80px) clamp(30px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-shell__form-inner { width: 100%; max-width: 460px; margin: 0 auto; }
.auth-shell__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 30px;
}
.auth-shell__back:hover { color: var(--ink); }
.auth-shell h1 { font-size: clamp(36px, 4vw, 52px); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 12px; font-weight: 300; }
.auth-shell h1 em { color: var(--clay); font-style: italic; }
.auth-shell__hint { color: var(--slate); margin-bottom: 32px; font-size: 15px; }
.auth-shell__hint a { color: var(--ink); border-bottom: 1px solid var(--brass); }
.auth-shell__oauth { display: grid; gap: 10px; margin-top: 20px; }
.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.oauth-btn:hover { border-color: var(--ink); background: var(--white); }
.auth-shell__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
.auth-shell__divider::before, .auth-shell__divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.auth-shell__submit { width: 100%; justify-content: center; margin-top: 6px; }

@media (max-width: 880px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-shell__visual { min-height: 240px; }
  .auth-shell__quote { font-size: 22px; inset: auto 20px 20px 20px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  font-weight: 300;
  display: inline-block;
}
.footer__brand em {
  font-style: italic;
  font-weight: 300;
}
.footer__brand em::after {
  content: '.';
  color: var(--brass);
  font-style: normal;
  font-weight: 500;
  margin-left: 1px;
}
.footer__tagline {
  color: rgba(244, 239, 230, 0.6);
  font-size: 14px;
  max-width: 36ch;
  line-height: 1.55;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 14px; color: rgba(244, 239, 230, 0.75); }
.footer__col ul a:hover { color: var(--brass); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244, 239, 230, 0.5);
}
.footer__bottom a { color: rgba(244, 239, 230, 0.5); }
.footer__bottom a:hover { color: var(--brass); }
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.18);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  color: rgba(244, 239, 230, 0.75);
}
.footer__social a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   FLOATING SOCIAL RAIL
   ========================================================= */
.social-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-rail a {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(22, 17, 13, 0.85);
  color: var(--bone);
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), transform var(--t-fast);
}
.social-rail a:hover { background: var(--brass); color: var(--ink); transform: translateX(2px); }
@media (max-width: 1080px) { .social-rail { display: none; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay='1'] { transition-delay: 80ms; }
[data-reveal-delay='2'] { transition-delay: 160ms; }
[data-reveal-delay='3'] { transition-delay: 240ms; }
[data-reveal-delay='4'] { transition-delay: 320ms; }

/* =========================================================
   TWO-COLUMN INTRO
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.two-col__right { padding-top: 16px; }

/* =========================================================
   QUOTE BLOCK
   ========================================================= */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 300;
  border-left: 2px solid var(--brass);
  padding-left: 30px;
  margin: 60px 0;
  max-width: 32ch;
}
.pull-quote em { color: var(--clay); font-style: italic; }
.section--dark .pull-quote { border-left-color: var(--brass); }

/* =========================================================
   COMMERCIAL BAND
   ========================================================= */
.commercial-band {
  background: var(--clay);
  color: var(--paper);
  padding: 60px var(--gutter);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}
.commercial-band h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.commercial-band h3 em { font-style: italic; color: var(--bone); }
.commercial-band p { color: rgba(244, 239, 230, 0.85); max-width: 50ch; margin-top: 14px; }
@media (max-width: 720px) { .commercial-band { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; } }

/* =========================================================
   GC CARD
   ========================================================= */
.gc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 50px; }
.gc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.gc-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.gc-card__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.gc-card__name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.015em; }
.gc-card__badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brass);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.gc-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.gc-card__body { font-size: 14px; color: var(--slate); line-height: 1.6; }
.gc-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.gc-card__tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--smoke);
  color: var(--ink-soft);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--ink);
  color: var(--bone);
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 28px;
}
.final-cta h2 em { color: var(--brass); font-style: italic; }
.final-cta p { max-width: 50ch; margin: 0 auto 40px; color: rgba(244, 239, 230, 0.7); font-size: 17px; line-height: 1.55; }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 60px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 10px; }
.gap-md { gap: 18px; }
.gap-lg { gap: 30px; }
.muted { color: var(--slate); }

/* =========================================================
   SVG ICONS
   ========================================================= */
.icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon--lg { width: 24px; height: 24px; }
.icon--sm { width: 14px; height: 14px; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(22, 17, 13, 0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; animation: fade-in 240ms var(--ease); }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.1);
  color: var(--bone);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: var(--clay); }
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }

/* =========================================================
   CURSOR DOT
   ========================================================= */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--brass);
  pointer-events: none;
  z-index: 9999;
  margin: -5px 0 0 -5px;
  transition: transform 200ms var(--ease), width 200ms var(--ease), height 200ms var(--ease), background 200ms var(--ease), opacity 200ms;
  mix-blend-mode: difference;
  opacity: 0.75;
}
.cursor-dot.is-hover {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  background: var(--bone);
  opacity: 0.4;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  padding: 18px 0;
  border-block: 1px solid rgba(244,239,230,0.08);
}
.marquee__track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 300;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 50px; }
.marquee__track span::after { content: '◆'; color: var(--brass); font-size: 0.6em; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* =========================================================
   FORM SUCCESS
   ========================================================= */
.form-success {
  padding: 30px 0;
  animation: fade-in 360ms var(--ease);
}
.form-success .eyebrow { color: var(--brass); }
.form-success h2 { margin-bottom: 0; }

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .nav, .footer__social, .social-rail, .hero__scroll { display: none; }
  body { background: white; color: black; }
}
