/* ========================================================================
   BrielleBook — Design System
   Snow + Gold + Ink · Tangerine + Cormorant Garamond + Inter
   ======================================================================== */

:root {
  --snow: #FDFCF9;
  --snow-alt: #F9F7F1;
  --gold: #B8935A;
  --gold-deep: #8F6E3E;
  --gold-tint: rgba(184, 147, 90, 0.10);
  --ink: #1A1512;
  --ink-70: rgba(26, 21, 18, 0.72);
  --mute: #9A9084;
  --line: #E8E1D2;
  --line-strong: #D4C9B0;

  /* Type scale */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 21px;
  --text-xl: 28px;
  --text-2xl: 40px;
  --text-3xl: 60px;
  --text-hero: 92px;

  /* Spacing */
  --gutter: 64px;
  --gutter-sm: 32px;
  --stack: 96px;
  --stack-lg: 140px;
}

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

html, body {
  background: var(--snow);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Type utilities */
.eb {
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.eb-mute { color: var(--mute); }
.eb-ink { color: var(--ink-70); }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: -0.02em; }
.serif em { font-style: italic; color: var(--gold); font-weight: 300; }
.italic-gold { font-style: italic; color: var(--gold); }

.h-hero { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(48px, 8vw, 92px); letter-spacing: -0.03em; line-height: 0.98; }
.h-hero em { font-style: italic; color: var(--gold); font-weight: 300; }

.h-1 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1.02; }
.h-1 em { font-style: italic; color: var(--gold); }

.h-2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em; line-height: 1.1; }
.h-2 em { font-style: italic; color: var(--gold); }

.h-3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 21px; letter-spacing: -0.01em; line-height: 1.2; }

.p-lg { font-size: 17px; line-height: 1.65; color: var(--ink-70); }
.p-md { font-size: 15px; line-height: 1.65; color: var(--ink-70); }
.p-sm { font-size: 13px; line-height: 1.6; color: var(--ink-70); }

/* Layout */
.container { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }

.stack-lg { padding-top: var(--stack-lg); padding-bottom: var(--stack-lg); }
.stack { padding-top: var(--stack); padding-bottom: var(--stack); }
.stack-sm { padding-top: 48px; padding-bottom: 48px; }

.hairline { height: 1px; background: var(--line); border: 0; }
.rule-gold { height: 1px; background: var(--gold); border: 0; }

/* Brand mark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 34px;
  height: 34px;
}
.brand-word {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.brand-brielle {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: 46px;
  color: var(--gold);
  line-height: 0.68;
  letter-spacing: -0.02em;
}
.brand-book {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: -1px;
}

/* Large brand for hero use */
.brand-hero .brand-mark { width: 68px; height: 68px; }
.brand-hero .brand-brielle { font-size: 92px; }
.brand-hero .brand-book { font-size: 20px; letter-spacing: 0.4em; margin-top: -3px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: var(--snow);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a.active { color: var(--gold); opacity: 1; }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn:hover { background: var(--gold); color: var(--snow); }

.btn-primary { background: var(--gold); color: var(--snow); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--snow); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: gap 0.25s;
  text-decoration: none;
}
.btn-link:hover { gap: 16px; }
.btn-link .arrow { transition: transform 0.25s; }
.btn-link:hover .arrow { transform: translateX(4px); }

/* Volume tag */
.volume {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--gold);
}
.volume::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Footer */
.footer {
  background: var(--snow);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 40px;
  margin-top: var(--stack-lg);
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
}
.footer-col a, .footer-col p, .footer-col li {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.9;
  display: block;
  transition: color 0.2s;
}
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--gold); }
.footer-brand-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--mute);
  margin-top: 20px;
  max-width: 300px;
}
.footer-legal {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.footer-parent {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-parent:hover {
  opacity: 0.7;
}

/* Hero */
.hero-editorial {
  padding: 140px var(--gutter) 100px;
  position: relative;
  overflow: hidden;
}
.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}
.hero-editorial-text .volume { margin-bottom: 32px; }
.hero-editorial-text h1 { margin-bottom: 36px; }
.hero-editorial-text .p-lg { max-width: 460px; margin-bottom: 44px; }
.hero-editorial-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-editorial-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.hero-editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-editorial-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  color: var(--snow);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Section header */
.section-head {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 var(--gutter);
}
.section-head .volume { justify-content: center; margin-bottom: 24px; }
.section-head h2 { margin-bottom: 20px; }
.section-head-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--mute);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.section-head-align-left {
  text-align: left;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.section-head-align-left .volume { margin-bottom: 24px; }
.section-head-align-left h2 { max-width: 720px; margin-bottom: 20px; }
.section-head-align-left .section-head-sub { margin: 0; max-width: 620px; }

/* Card */
.card-editorial {
  background: var(--snow);
  border: 1px solid var(--line);
  padding: 40px;
  transition: border-color 0.3s;
}
.card-editorial:hover { border-color: var(--gold); }

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.portfolio-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.portfolio-item:hover { transform: translateY(-6px); }
.portfolio-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--snow-alt);
  border: 1px solid var(--line);
  position: relative;
  margin-bottom: 20px;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.portfolio-item:hover .portfolio-img img { transform: scale(1.03); }
.portfolio-meta { display: flex; justify-content: space-between; align-items: baseline; }
.portfolio-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 20px; letter-spacing: -0.01em; }
.portfolio-vol { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 13px; color: var(--gold); }
.portfolio-role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }

.portfolio-item.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 24px;
}
.portfolio-item.featured .portfolio-img { margin-bottom: 0; aspect-ratio: 16/10; }
.portfolio-item.featured .portfolio-content .volume { margin-bottom: 24px; }
.portfolio-item.featured .portfolio-content h3 { margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 42px; letter-spacing: -0.02em; line-height: 1.05; }
.portfolio-item.featured .portfolio-content h3 em { font-style: italic; color: var(--gold); }
.portfolio-item.featured .portfolio-content p { margin-bottom: 28px; }

/* Two column feature */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img { aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line); }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text .volume { margin-bottom: 24px; }
.two-col-text h2 { margin-bottom: 24px; }
.two-col-text p { margin-bottom: 20px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.price-card {
  background: var(--snow);
  border: 1px solid var(--line);
  padding: 56px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--gold); }
.price-card.featured {
  border: 1px solid var(--gold);
  background: var(--snow);
}
.price-card.featured::before {
  content: "Founding Fifty";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--snow);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 6px 20px;
  font-weight: 400;
}
.price-card .volume { margin-bottom: 20px; }
.price-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 34px; letter-spacing: -0.02em; margin-bottom: 12px; }
.price-card h3 em { font-style: italic; color: var(--gold); }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin: 24px 0 12px; }
.price-tag .amt { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 68px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.price-tag .amt em { font-style: italic; color: var(--gold); }
.price-tag .unit { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 18px; color: var(--mute); }
.price-note { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 14px; color: var(--gold); margin-bottom: 32px; }
.price-list { list-style: none; margin-bottom: 40px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-list li {
  font-size: 14px;
  color: var(--ink-70);
  padding: 10px 0 10px 24px;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.price-card .btn { justify-content: center; margin-top: auto; }

/* Forms */
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--snow);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* Stat callout */
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 96px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--gold);
  font-style: italic;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-top: 16px;
}

/* Testimonial */
.testimonial {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.testimonial-quote em { font-style: italic; color: var(--gold); }
.testimonial-attr {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Marquee ticker */
.ticker {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--snow-alt);
}
.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 6s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.ticker-item::after {
  content: "◆";
  color: var(--gold);
  font-style: normal;
  font-size: 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Utility grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1360px;
  margin: 80px auto 0;
  padding: 0 var(--gutter);
}
.grid-3.tight { gap: 24px; margin-top: 0; }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --gutter: 24px;
    --stack: 64px;
    --stack-lg: 80px;
  }
  .hero-editorial { padding: 60px var(--gutter) 60px; }
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-item.featured { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 20px; padding: 0 var(--gutter); }
  .grid-3 { margin-top: 48px; }
  .stats-row { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 var(--gutter); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  table td, table th { padding: 14px 8px !important; font-size: 13px !important; }
  .footer-legal { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-inner { padding: 16px 24px; }
  .section-head { margin-bottom: 48px; }
  .brand-hero .brand-brielle { font-size: 68px; }
  .brand-hero .brand-book { font-size: 15px; }
}

/* ============================================================
   BROWSER FRAME MOCKUP — for portfolio "live sites"
   Inspired by Toolbelt Web's live-site cards
   ============================================================ */
.browser-frame {
  position: relative;
  background: var(--snow-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(26, 21, 18, 0.15), 0 12px 24px -12px rgba(26, 21, 18, 0.08);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -20px rgba(26, 21, 18, 0.2), 0 16px 32px -12px rgba(26, 21, 18, 0.1);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f0ece5;
  border-bottom: 1px solid var(--line);
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4c9b8;
}
.browser-dot:nth-child(1) { background: #e8b6a6; }
.browser-dot:nth-child(2) { background: #e8d4a6; }
.browser-dot:nth-child(3) { background: #b6d4b0; }
.browser-url {
  margin-left: 12px;
  padding: 5px 14px;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.02em;
  flex: 1;
  max-width: 300px;
}
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.browser-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--snow);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7CA76B;
  box-shadow: 0 0 0 3px rgba(124, 167, 107, 0.25);
  animation: pulse-live 2.4s infinite ease-in-out;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   FOUNDING FIFTY PROGRESS — editorial scarcity, tasteful
   ============================================================ */
.founding-section {
  background: linear-gradient(180deg, var(--snow-warm) 0%, #F4EEDF 100%);
  padding: 100px var(--gutter);
  margin: 0;
}
.founding-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.founding-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(184, 147, 90, 0.14);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 32px;
  font-weight: 500;
}
.founding-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 147, 90, 0.22);
}
.progress-block {
  max-width: 640px;
  margin: 48px auto 0;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.progress-labels .claimed {
  color: var(--gold-deep);
  font-weight: 500;
}
.progress-track {
  height: 4px;
  background: rgba(26, 21, 18, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================================
   INTAKE FORM — contact page, Netlify-wired
   ============================================================ */
.intake-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.intake-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.intake-form .form-full {
  display: block;
  margin-bottom: 24px;
}
.intake-form label {
  display: block;
}
.intake-form .form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  font-weight: 500;
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--snow-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.intake-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8935A' stroke-width='1.5'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--snow);
}
.intake-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.55;
}
.intake-form ::placeholder {
  color: var(--mute);
  font-style: italic;
  opacity: 0.7;
}
.intake-form-submit {
  margin-top: 12px;
}
.intake-form-submit button {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--snow);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s;
}
.intake-form-submit button:hover {
  background: var(--gold);
}
.intake-assurances {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.intake-assurances span::before {
  content: '·  ';
  color: var(--gold);
  font-weight: 500;
}
.step-indicator {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(184, 147, 90, 0.12);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .intake-form { padding: 40px 24px; }
  .intake-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .intake-form .form-row > label { margin-bottom: 24px; }
  .founding-section { padding: 72px var(--gutter); }
}

/* Process list responsive — collapse to two-col on mobile */
@media (max-width: 720px) {
  ol.process-list > li,
  section ol > li[style*="grid-template-columns"] {
    grid-template-columns: 56px 1fr !important;
    row-gap: 8px !important;
  }
  section ol > li[style*="grid-template-columns"] > div:last-child,
  section ol > li[style*="grid-template-columns"] > .p-md {
    grid-column: 1 / -1 !important;
  }
}


/* ============================================================
   CORMORANT GARAMOND WEIGHT TUNING
   Cormorant is more delicate than Fraunces — bump display
   weights for legibility while preserving elegance
   ============================================================ */
.h-hero { font-weight: 500; letter-spacing: -0.02em; }
.h-1 { font-weight: 500; letter-spacing: -0.015em; }
.h-2 { font-weight: 500; letter-spacing: -0.015em; }
.h-3 { font-weight: 500; letter-spacing: -0.01em; }
.price-card h3 { font-weight: 500; }
.price-tag .amt { font-weight: 500; }
.portfolio-item.featured .portfolio-content h3 { font-weight: 500; }
.testimonial-quote { font-weight: 400; }
/* Italic (em) inside headings — keep italic at slightly lighter weight for contrast */
.h-hero em, .h-1 em, .h-2 em, .h-3 em { font-weight: 400; font-style: italic; }

/* ============================================================
   NAV DRAWER (hamburger + X close)
   ============================================================ */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-menu-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.menu-icon-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s;
}
.menu-icon-bar:nth-child(2) { width: 16px; }
.menu-icon-bar:nth-child(3) { width: 20px; }

/* Show hamburger everywhere so it's always available (per user request) */
.nav-menu-btn { display: inline-flex; }

/* Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.nav-drawer.is-open { pointer-events: auto; }
.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.45);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-drawer.is-open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: var(--snow);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 32px 40px 40px;
}
.nav-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.drawer-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.drawer-close:hover { background: var(--snow-warm); border-color: var(--gold); color: var(--gold-deep); }
.drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer-link {
  display: block;
  padding: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s;
}
.drawer-link:hover { color: var(--gold); padding-left: 8px; }
.drawer-link.active { color: var(--gold); font-style: italic; }
.drawer-cta { margin-top: 32px; }
.drawer-tag {
  margin-top: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 720px) {
  .drawer-panel { padding: 24px 28px 32px; }
  .drawer-link { font-size: 22px; padding: 14px 0; }
}

/* ============================================================
   FOOTER PARTNER LINE (discreet)
   ============================================================ */
.footer-partner {
  border-top: 1px solid var(--line);
  padding: 20px var(--gutter);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  opacity: 0.7;
}
.footer-partner span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.6;
}

/* ============================================================
   BRAND-CARD GRID (portfolio "Our Work" page)
   ============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s, border-color 0.3s;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -16px rgba(26, 21, 18, 0.14);
}
.brand-card-mark {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #E7C6B8 0%, #C99C93 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--snow);
  padding: 24px;
}
.brand-card-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.85;
}
.brand-placeholder-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--mute);
  letter-spacing: -0.02em;
}
.brand-card-placeholder .brand-card-mark {
  background: var(--snow-warm);
  border-bottom: 1px solid var(--line);
}
.brand-card-meta {
  padding: 28px 32px;
}
.brand-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.brand-card-placeholder .brand-card-name {
  color: var(--mute);
  font-style: italic;
  font-weight: 400;
}
.brand-card-line {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
}
.brand-card-domain {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--gold);
}
.brand-card-domain .arrow {
  transition: transform 0.25s;
  display: inline-block;
  margin-left: 4px;
}
.brand-card:hover .brand-card-domain .arrow { transform: translate(3px, -3px); }
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   DISCIPLINES LIST (Who We Work With page)
   ============================================================ */
.disciplines-list {
  max-width: 960px;
  margin: 0 auto;
}
.discipline-row {
  display: grid;
  grid-template-columns: 80px 260px 1fr;
  align-items: baseline;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s, padding-left 0.25s;
}
.discipline-row:first-child {
  border-top: 1px solid var(--line);
}
.discipline-row:hover {
  background: rgba(184, 147, 90, 0.04);
  padding-left: 16px;
}
.discipline-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.discipline-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.discipline-copy {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 720px) {
  .discipline-row {
    grid-template-columns: 56px 1fr;
    row-gap: 8px;
    padding: 24px 0;
    gap: 20px;
  }
  .discipline-name { font-size: 22px; }
  .discipline-copy { grid-column: 1 / -1; font-size: 15px; }
  .discipline-row:hover { padding-left: 8px; }
}

/* ============================================================
   MOBILE NAV FINE-TUNING
   ============================================================ */
@media (max-width: 600px) {
  .nav-cta {
    font-size: 10px !important;
    padding: 8px 12px !important;
    letter-spacing: 0.14em !important;
  }
  .nav-right { gap: 12px; }
  .nav-inner { padding: 14px 20px !important; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }
}
