/* =====================================================
   HALIDÄ ARCHIVE REVIVAL ATELIER — styles.css
   Dark ink base · Cormorant Garamond + Jost
   ===================================================== */

/* --- Google Fonts are loaded in <head> --- */

/* =====================================================
   CUSTOM PROPERTIES
   ===================================================== */
:root {
  --ink:          #0e0b09;
  --parchment:    #f5f0e8;
  --sepia-light:  #e8dcc8;
  --sepia-mid:    #c4a882;
  --gold:         #b8935a;
  --gold-bright:  #d4a96a;
  --dust:         #7a6a58;
  --fade:         #3d342a;
  --cream-text:   #f0e8d8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  --max-w:        1200px;
  --section-pad:  clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  --radius:       2px;

  --transition:   0.35s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--ink);
  color: var(--cream-text);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =====================================================
   GRAIN OVERLAY
   ===================================================== */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* =====================================================
   SECTION LABEL (spaced caps + gold extending line)
   ===================================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

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

.btn-ghost {
  background: transparent;
  color: var(--sepia-light);
  border-color: var(--dust);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: transparent;
}

/* =====================================================
   NAV
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(14, 11, 9, 0.96);
  border-bottom-color: rgba(184, 147, 90, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream-text);
  text-transform: uppercase;
}

.nav-wordmark .wordmark-a {
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sepia-light);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-cta {
  margin-left: 1rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--sepia-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(14, 11, 9, 0.98);
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 89;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sepia-light);
  transition: color var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(184, 147, 90, 0.1);
}

.nav-mobile a:hover { color: var(--gold-bright); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--section-pad);
  padding-top: calc(64px + clamp(4rem, 8vw, 7rem));
  position: relative;
  overflow: hidden;
}

/* Vertical gold line */
.hero-line {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4rem);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.45;
}

/* Film-strip edge right margin */
.hero-filmstrip {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.hero-filmstrip::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 18px,
      rgba(184, 147, 90, 0.15) 18px,
      rgba(184, 147, 90, 0.15) 20px,
      transparent 20px,
      transparent 36px
    ),
    linear-gradient(to right, transparent, rgba(184, 147, 90, 0.06));
}

.hero-filmstrip-perfs {
  position: absolute;
  right: 4px;
  top: 10%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
}

.hero-filmstrip-perfs span {
  display: block;
  width: 8px;
  height: 12px;
  border: 1px solid rgba(184, 147, 90, 0.25);
  border-radius: 1px;
}

.hero-inner {
  max-width: 760px;
  padding-left: clamp(2rem, 4vw, 3.5rem);
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  color: var(--parchment);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}

.hero-subhead {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  color: var(--sepia-light);
  max-width: 560px;
  margin-bottom: 2.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Subtle bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(14, 11, 9, 0.5));
  pointer-events: none;
}

/* =====================================================
   FIRST 50
   ===================================================== */
.first50 {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 147, 90, 0.12);
  border-bottom: 1px solid rgba(184, 147, 90, 0.12);
}

.first50::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 52, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Gold side accent */
.first50::after {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.ghost-50 {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(16rem, 28vw, 28rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-bright);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.first50-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.first50 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}

.first50-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--sepia-light);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.85;
}

/* Stats row */
.first50-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(184, 147, 90, 0.12);
  border: 1px solid rgba(184, 147, 90, 0.12);
  margin-bottom: 3rem;
}

.stat-cell {
  background: rgba(14, 11, 9, 0.7);
  padding: 1.5rem 1.2rem;
  transition: background var(--transition);
}

.stat-cell:hover {
  background: rgba(61, 52, 42, 0.5);
}

.stat-tier {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--parchment);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--sepia-light);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  max-width: 620px;
}

/* =====================================================
   PROCESS
   ===================================================== */
.process {
  padding: var(--section-pad);
  background: rgba(14, 11, 9, 0.98);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(184, 147, 90, 0.3));
  z-index: 0;
}

.process-step {
  padding: 0 1.5rem 0 0;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  background: var(--ink);
  flex-shrink: 0;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--dust);
  line-height: 1.75;
}

/* =====================================================
   WHO WE SERVE
   ===================================================== */
.who-we-serve {
  padding: var(--section-pad);
  background: rgba(20, 16, 12, 0.98);
  border-top: 1px solid rgba(184, 147, 90, 0.08);
}

.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.who-we-serve h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 3rem;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 147, 90, 0.1);
}

.who-card {
  background: rgba(14, 11, 9, 0.9);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.who-card:hover::before {
  transform: scaleX(1);
}

.who-card:hover {
  background: rgba(30, 24, 18, 0.95);
}

.who-card-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.who-card p {
  font-size: 0.92rem;
  color: var(--dust);
  line-height: 1.8;
}

/* =====================================================
   PHILOSOPHY
   ===================================================== */
.philosophy {
  padding: var(--section-pad);
  background: var(--ink);
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.philosophy-text p {
  font-size: clamp(0.93rem, 1.4vw, 1.02rem);
  color: var(--sepia-light);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.philosophy-pull {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--sepia-light);
  line-height: 1.75;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-top: 2rem;
}

/* Right visual */
.philosophy-visual {
  position: relative;
}

.phil-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(
    145deg,
    #2a1f15 0%,
    #3d2d1e 25%,
    #4a3525 50%,
    #3a2a1a 75%,
    #231810 100%
  );
  overflow: hidden;
}

/* Halftone dot-grid texture */
.phil-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184, 147, 90, 0.18) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.45;
}

/* Vignette */
.phil-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(14, 11, 9, 0.7) 100%);
}

.phil-photo-inner {
  position: absolute;
  inset: 16px;
  background: linear-gradient(
    160deg,
    rgba(196, 168, 130, 0.08) 0%,
    rgba(122, 106, 88, 0.12) 40%,
    rgba(61, 52, 42, 0.2) 100%
  );
}

.phil-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(196, 168, 130, 0.55);
  z-index: 2;
}

.phil-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: rgba(14, 11, 9, 0.92);
  border: 1px solid var(--gold);
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  z-index: 3;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing {
  padding: var(--section-pad);
  background: rgba(14, 11, 9, 0.98);
  border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 0.75rem;
  max-width: 640px;
}

.pricing-sub {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--dust);
  margin-bottom: 3.5rem;
  letter-spacing: 0.06em;
}

/* Bar chart */
.pricing-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  align-items: center;
  gap: 1.2rem;
}

.pricing-bar-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--sepia-light);
  text-align: right;
}

.pricing-bar-track {
  height: 28px;
  background: rgba(61, 52, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.pricing-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: var(--parchment);
  opacity: 0.6;
}

.pricing-bar-row.is-gift .pricing-bar-fill {
  background: linear-gradient(to right, var(--gold-bright), #e8b878);
}

.pricing-bar-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-bright);
}

/* Pull quote box */
.pricing-quote-box {
  border: 1px solid rgba(184, 147, 90, 0.25);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-quote-box::before {
  content: '\201C';
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  background: rgba(14, 11, 9, 0.98);
  padding: 0 0.3rem;
  line-height: 1;
}

.pricing-quote-box p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--sepia-light);
  line-height: 1.75;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--dust);
  line-height: 1.7;
  max-width: 620px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: var(--section-pad);
  background: rgba(11, 9, 7, 0.99);
  border-top: 1px solid rgba(184, 147, 90, 0.12);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--sepia-light);
}

.contact-detail-value a {
  color: var(--gold-bright);
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--parchment);
}

.contact-note {
  font-size: 0.88rem;
  color: var(--dust);
  line-height: 1.75;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.contact-note + .contact-note {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}

/* Form */
.contact-form-wrap {
  background: rgba(20, 16, 12, 0.6);
  border: 1px solid rgba(184, 147, 90, 0.12);
  padding: 2.5rem;
}

.form-row {
  margin-bottom: 1.4rem;
}

.form-row label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(14, 11, 9, 0.8);
  border: 1px solid rgba(184, 147, 90, 0.2);
  color: var(--cream-text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(184, 147, 90, 0.55);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(122, 106, 88, 0.7);
}

.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8935a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row select option {
  background: #1a1410;
  color: var(--cream-text);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-row {
  margin-top: 2rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--dust);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(184, 147, 90, 0.1);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sepia-light);
}

.footer-wordmark span {
  color: var(--gold-bright);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dust);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-bright); }

.footer-legal {
  font-size: 0.72rem;
  color: var(--dust);
  opacity: 0.7;
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 147, 90, 0.06);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .phil-photo-frame {
    aspect-ratio: 16/9;
    max-width: 500px;
  }

  .pricing-bar-row {
    grid-template-columns: 160px 1fr 140px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-filmstrip {
    display: none;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .pricing-bar-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .pricing-bar-label {
    text-align: left;
  }

  .pricing-bar-track {
    height: 22px;
  }

  .pricing-bar-value {
    text-align: right;
  }

  .first50-stats {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .first50-stats {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}
