@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --gold: #8B6914;
  --gold-light: #C9A84C;
  --gold-pale: #F5E9C8;
  --dark: #1a1a1a;
  --text: #1c2b3a;
  --text-secondary: #6b7a8d;
  --bg: #ffffff;
  --bg-secondary: #f8f7f5;
  --border: rgba(0,0,0,0.1);
  --border-hover: rgba(0,0,0,0.25);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

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

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--dark);
}

.nav-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 4px;
  background: var(--dark); color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  border: 0.5px solid var(--gold-light);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.03em;
}

.nav-logo-text .g { color: var(--gold); }

nav ul {
  display: flex; gap: 2rem; list-style: none;
}

nav ul a {
  font-size: 12px; font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover, nav ul a.active { color: var(--text); }

.nav-cta {
  font-size: 13px; font-weight: 500;
  background: var(--dark); color: #fff;
  padding: 0.55rem 1.25rem; border-radius: 4px;
  text-decoration: none; letter-spacing: 0.02em;
}

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 1.75rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-logo {
  display: flex; align-items: center; gap: 0.55rem;
}

.footer-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 3px;
  background: var(--dark); color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  border: 0.5px solid var(--gold-light);
}

.footer-copy {
  font-size: 12px; color: var(--text-secondary);
}

/* UTILITIES */
.eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--gold);
}

.serif { font-family: 'Cormorant Garamond', serif; }

.page-header {
  padding: 4rem 3rem 3rem;
  border-bottom: 0.5px solid var(--border);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 500; line-height: 1.15;
}

.btn-dark {
  display: inline-block;
  background: var(--dark); color: #fff;
  padding: 0.85rem 1.75rem; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.02em;
  border: none; cursor: pointer;
}

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--text);
  padding: 0.85rem 1.75rem; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.02em;
  border: 0.5px solid var(--border-hover);
}

/* HERO GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-image {
  position: relative; overflow: hidden;
}

.hero-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
}

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(139,105,20,0.15) 100%);
}

.hero-image-label {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; align-items: center; gap: 0.75rem;
  color: #fff; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  mix-blend-mode: difference;
}

.hero-image-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold-light);
}

.hero-content {
  padding: 4rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* STATS BAR */
.stats-bar {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 3rem; max-width: 900px;
  margin: 0 auto; justify-content: center;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 500; line-height: 1;
}

.stat-label {
  font-size: 12px; font-weight: 300;
  color: var(--text-secondary);
  margin-top: 0.5rem; line-height: 1.6;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
}

.card {
  background: var(--bg); padding: 2rem 1.75rem;
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gold); margin-bottom: 1rem;
}

.card-title {
  font-size: 15px; font-weight: 500;
  margin-bottom: 0.6rem; line-height: 1.35;
}

.card-desc {
  font-size: 13px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.75;
}

/* INDUSTRY TAGS */
.tag {
  font-size: 12px; color: var(--text-secondary);
  border: 0.5px solid var(--border-hover);
  padding: 0.4rem 1rem; border-radius: 20px;
}

/* DARK BAND */
.dark-band {
  background: var(--dark); padding: 5rem 3rem;
}

/* SECTION */
section { padding: 5rem 3rem; }
section.secondary { background: var(--bg-secondary); }

/* CTA BAND */
.cta-band {
  padding: 4rem 3rem;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}

/* TIER CARDS */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tier-card {
  border: 0.5px solid var(--border);
  border-radius: 4px; padding: 2rem;
  display: flex; flex-direction: column;
  background: var(--bg);
}

.tier-card.highlight {
  border-color: var(--gold);
  background: var(--dark);
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 500;
}

.tier-deliverables {
  list-style: none; flex-grow: 1; margin-bottom: 2rem;
}

.tier-deliverables li {
  font-size: 12px; font-weight: 300;
  padding: 0.45rem 0 0.45rem 1rem;
  border-bottom: 0.5px solid var(--border);
  line-height: 1.55; position: relative;
}

.tier-deliverables li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold);
}

.tier-card.highlight .tier-deliverables li {
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}

/* FORM */
.form-label {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 0.4rem;
}

.form-input {
  width: 100%; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 0.7rem 0.9rem;
  border: 0.5px solid var(--border-hover);
  border-radius: 4px; background: var(--bg);
  color: var(--text); outline: none;
  appearance: none;
}

.form-input:focus { border-color: var(--gold); }

/* RANGE SLIDER */
input[type=range] {
  width: 100%; accent-color: var(--gold); cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  nav ul { display: none; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { height: 260px; position: relative; }
  .hero-content { padding: 2.5rem 1.25rem; }

  /* Sections & headers */
  section { padding: 2.75rem 1.25rem; }
  section.secondary { padding: 2.75rem 1.25rem; }
  .dark-band { padding: 3rem 1.25rem; }
  .page-header { padding: 2.5rem 1.25rem 2rem; }
  .page-header h1 { font-size: 34px; }

  /* Grid collapses */
  .tier-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }

  /* Footer & CTA */
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.25rem; }
  .cta-band { flex-direction: column; padding: 2.5rem 1.25rem; }

  /* Prevent iOS zoom on input focus — critical for Apple/Samsung parity */
  .form-input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea { font-size: 16px !important; }

  /* Nav CTA */
  .nav-cta { font-size: 12px; padding: 0.5rem 1rem; }

  /* Stats bar */
  .stats-bar { padding: 2rem 1.25rem; }
  .stat-num { font-size: 32px; }
}

/* Tablet — 2-col grids become 1-col */
@media (max-width: 860px) {
  /* Sticky sidebar: don't stick on smaller screens */
  [style*="position:sticky"] { position: relative !important; top: auto !important; }
}
