/* =========================================================
   Growth Consulting — Real Estate Investing
   Design tokens & global styles
   ========================================================= */

:root {
  /* Brand palette — brown & gold */
  --espresso: #2A1810;
  --deep-brown: #3D2817;
  --rich-brown: #5C3A21;
  --warm-brown: #8B5A2B;
  --tan: #B08B5C;

  --gold: #C9A961;
  --gold-bright: #E6B94F;
  --gold-soft: #DFC48A;
  --gold-pale: #F1E6C8;

  --cream: #FAF6EE;
  --cream-warm: #F5EEDF;
  --paper: #FFFFFF;
  --charcoal: #241A12;
  --muted: #6E5A47;
  --hairline: rgba(92, 58, 33, 0.18);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Scale */
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--deep-brown);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.1em; color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-brown);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.gold-underline {
  background-image: linear-gradient(90deg, var(--gold-bright), var(--gold));
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 3px;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  height: 50px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  display: none;
}
.brand-tag {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--rich-brown);
  padding: 8px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--gold-bright);
  transition: all 0.25s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active { color: var(--espresso); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 22px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--deep-brown), var(--rich-brown));
  color: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(42, 24, 16, 0.55);
  color: var(--paper);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--deep-brown);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--espresso);
  box-shadow: 0 10px 24px -14px rgba(201, 169, 97, 0.7);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(201, 169, 97, 0.75);
}
.btn-ghost {
  background: transparent;
  color: var(--deep-brown);
  border-color: var(--warm-brown);
}
.btn-ghost:hover {
  background: var(--deep-brown);
  color: var(--gold-pale);
  border-color: var(--deep-brown);
}
.btn-dark {
  background: var(--deep-brown);
  color: var(--gold-pale);
  border-color: var(--gold);
}
.btn-dark:hover { background: var(--espresso); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- HOME: Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0 clamp(80px, 10vw, 140px);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(201, 169, 97, 0.16), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(139, 90, 43, 0.10), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--warm-brown);
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  margin-top: 44px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero-meta > div { min-width: 110px; }
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-brown);
  display: block;
  line-height: 1;
}
.hero-meta .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-top: 8px;
  display: block;
}

/* Hero visual — logo card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(230, 185, 79, 0.22), transparent 55%),
    linear-gradient(145deg, #3D2817 0%, #2A1810 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 40px 80px -30px rgba(42, 24, 16, 0.55),
    0 0 0 1px rgba(201, 169, 97, 0.25) inset,
    0 0 0 8px rgba(201, 169, 97, 0.08);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.hero-card img {
  width: 82%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--espresso);
  padding: 18px 24px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 20px 40px -16px rgba(201, 169, 97, 0.55);
}
.hero-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 2px;
}

/* ---------- Section headers ---------- */
.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- HOME: Pillars grid ---------- */
.pillars {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-left: 1px solid var(--hairline);
}
.pillar {
  padding: 44px 36px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  background: var(--paper);
  transition: background 0.3s var(--ease);
  position: relative;
}
.pillar:hover { background: var(--cream-warm); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  display: block;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- HOME: Featured services ---------- */
.featured-svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.featured-svc.reverse { direction: rtl; }
.featured-svc.reverse > * { direction: ltr; }
.featured-panel {
  background: linear-gradient(145deg, var(--deep-brown), var(--espresso));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--gold-pale);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 185, 79, 0.22), transparent 70%);
}
.featured-panel h3 { color: var(--gold-pale); font-size: 1.7rem; }
.featured-panel p { color: rgba(241, 230, 200, 0.75); }
.featured-panel .stat {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-bright);
  font-weight: 600;
  line-height: 1;
}
.featured-panel .stat + span {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-top: 8px;
}

/* ---------- ABOUT ---------- */
.page-hero {
  padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 8vw, 90px);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201, 169, 97, 0.13), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 24px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about-figure {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, var(--deep-brown), var(--espresso));
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--gold-pale);
}
.about-figure img { max-width: 320px; width: 100%; height: auto; margin: 0 auto 28px; display: block; }
.figure-fact {
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  padding-top: 24px;
  margin-top: 24px;
}
.figure-fact:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.figure-fact dt {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.figure-fact dd {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-pale);
  margin: 0;
}

/* ---------- SERVICES ---------- */
.svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 40px -20px rgba(42, 24, 16, 0.22);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.svc-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.svc-card p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- WHY US ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.reason {
  padding: 40px 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  position: relative;
}
.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--deep-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.reason-icon svg { width: 26px; height: 26px; }
.reason h3 { font-size: 1.2rem; margin-bottom: 10px; }
.reason p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ---------- VISION & MISSION ---------- */
.vm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  padding: 56px 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-mission {
  background: linear-gradient(160deg, var(--paper), var(--cream-warm));
  border: 1px solid var(--hairline);
}
.vm-vision {
  background: linear-gradient(160deg, var(--deep-brown), var(--espresso));
  color: var(--gold-pale);
}
.vm-vision h2, .vm-vision h3 { color: var(--gold-pale); }
.vm-vision p { color: rgba(241, 230, 200, 0.78); }
.vm-card .icon-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.vm-mission .icon-mark {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--deep-brown);
}
.vm-vision .icon-mark {
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}
.vm-card h2 { font-size: 2rem; margin-bottom: 20px; }
.vm-card p { font-size: 1.05rem; line-height: 1.75; margin: 0; }

.values-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-top: 80px;
}
.value {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--hairline);
}
.value:last-child { border-right: none; }
.value-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.value h4 {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.tst-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tst-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-soft);
  line-height: 1;
  opacity: 0.5;
}
.tst-stars {
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.tst-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--deep-brown);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.tst-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.tst-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-brown), var(--deep-brown));
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.tst-name {
  font-weight: 600;
  color: var(--deep-brown);
  font-size: 0.98rem;
  line-height: 1.2;
}
.tst-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.contact-form {
  background: var(--paper);
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--deep-brown), var(--espresso));
  color: var(--gold-pale);
  border-radius: 999px;
  border: 1px solid var(--gold);
  transition: transform 0.2s var(--ease);
}
.form-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--espresso), var(--deep-brown));
}

.contact-info-card {
  background: linear-gradient(160deg, var(--deep-brown), var(--espresso));
  color: var(--gold-pale);
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info-card h2 { color: var(--gold-pale); }
.info-list { list-style: none; padding: 0; margin: 32px 0 0; }
.info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.22);
}
.info-item:first-child { border-top: none; padding-top: 0; }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 169, 97, 0.14);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
  display: block;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-pale);
  line-height: 1.4;
  word-break: break-word;
}
.info-value a { color: inherit; }
.info-value a:hover { color: var(--gold-bright); }

/* Map */
.map-section { background: var(--paper); border-top: 1px solid var(--hairline); }
.map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 50px -30px rgba(42, 24, 16, 0.28);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(0.15) hue-rotate(-15deg) saturate(0.9);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--espresso), var(--deep-brown));
  color: var(--gold-pale);
  padding: clamp(50px, 7vw, 90px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 185, 79, 0.18), transparent 70%);
}
.cta-band::before { width: 400px; height: 400px; top: -160px; left: -100px; }
.cta-band::after { width: 400px; height: 400px; bottom: -160px; right: -100px; }
.cta-band h2 { color: var(--gold-pale); font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.cta-band p { color: rgba(241, 230, 200, 0.8); max-width: 600px; margin: 0 auto 30px; position: relative; }
.cta-band .btn-row { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--gold-soft);
  padding: 70px 0 30px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.footer-brand img { height: 60px; width: auto; max-width: 240px; object-fit: contain; }
.footer-brand span {
  display: none;
}
.footer-about { color: rgba(241, 230, 200, 0.65); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(241, 230, 200, 0.72); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p { font-size: 0.9rem; color: rgba(241, 230, 200, 0.72); margin-bottom: 8px; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(241, 230, 200, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-l { margin-top: 40px; }
.divider-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 40px 0;
}
.divider-mark::before,
.divider-mark::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-mark::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .featured-svc,
  .about-grid,
  .vm-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .featured-svc.reverse { direction: ltr; }
  .about-figure { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobile menu drawer */
  .nav-drawer {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 20px var(--gutter) 28px;
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
    z-index: 55;
    box-shadow: 0 20px 30px -20px rgba(42, 24, 16, 0.2);
  }
  .nav-drawer.open { transform: translateY(0); }
  .nav-drawer ul { list-style: none; padding: 0; margin: 0 0 20px; }
  .nav-drawer li { border-bottom: 1px solid var(--hairline); }
  .nav-drawer li:last-child { border-bottom: none; }
  .nav-drawer a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--rich-brown);
    font-weight: 500;
  }
  .nav-drawer a.active { color: var(--gold); }
  .nav-drawer .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-meta { gap: 24px; }
  .hero-meta > div { min-width: 90px; }
  .form-row { grid-template-columns: 1fr; }
  .featured-panel { padding: 32px; min-height: auto; }
  .vm-card { padding: 40px 28px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brand img { height: 42px; width: auto; max-width: 170px; }
  .hero { padding-top: 50px; padding-bottom: 60px; }
  .hero-badge {
    right: 8px;
    bottom: -18px;
    padding: 14px 18px;
    font-size: 0.85rem;
  }
  .pillar { padding: 34px 24px; }
  .tst-quote { font-size: 1rem; }
  .values-strip { grid-template-columns: 1fr 1fr; }
  .value { border-bottom: 1px solid var(--hairline); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Nav drawer default (desktop = hidden) ---------- */
.nav-drawer { display: none; }
@media (max-width: 960px) {
  .nav-drawer { display: block; }
}

/* ---------- Reveal animation (progressive enhancement) ---------- */
/* Elements are visible by default. Only when JS marks the doc as
   "js-enabled" do we hide-then-reveal on scroll. */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ================================================================
   PHOTO BACKGROUND VARIANTS  (added for image-driven hero sections)
   ================================================================ */

/* --- HOME hero with photo backdrop --- */
.hero--photo {
  background: var(--espresso);
  color: var(--cream);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: clamp(90px, 12vw, 140px);
  padding-bottom: clamp(90px, 12vw, 140px);
}
.hero--photo::before {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  mask-image: none;
  -webkit-mask-image: none;
  z-index: 0;
}
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(20, 12, 8, 0.92) 0%,
      rgba(42, 24, 16, 0.78) 40%,
      rgba(42, 24, 16, 0.45) 75%,
      rgba(42, 24, 16, 0.32) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--photo .wrap { position: relative; z-index: 2; }
.hero--photo .hero-grid {
  grid-template-columns: 1fr;
  max-width: 780px;
}
.hero--photo .hero-visual { display: none; }
.hero--photo h1 { color: var(--paper); }
.hero--photo h1 em { color: var(--gold-bright); font-style: italic; }
.hero--photo .hero-lead { color: rgba(250, 246, 238, 0.90); }
.hero--photo .eyebrow { color: var(--gold-bright); }
.hero--photo .eyebrow::before { background: var(--gold-bright); }
.hero--photo .hero-meta { border-top-color: rgba(201, 169, 97, 0.28); }
.hero--photo .hero-meta .num { color: var(--gold-bright); }
.hero--photo .hero-meta .label { color: rgba(223, 196, 138, 0.85); }
.hero--photo .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--cream);
  background: transparent;
}
.hero--photo .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold-bright);
  color: var(--paper);
}

/* --- PAGE-HERO with photo backdrop (inner pages) --- */
.page-hero--photo {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: none;
  padding: clamp(120px, 15vw, 200px) 0 clamp(90px, 12vw, 140px);
  overflow: hidden;
}
.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(20, 12, 8, 0.90) 0%,
      rgba(42, 24, 16, 0.75) 45%,
      rgba(42, 24, 16, 0.40) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--photo .wrap { position: relative; z-index: 2; }
.page-hero--photo h1 { color: var(--paper); }
.page-hero--photo .lead { color: rgba(250, 246, 238, 0.90); max-width: 62ch; }
.page-hero--photo .eyebrow { color: var(--gold-bright); }
.page-hero--photo .eyebrow::before { background: var(--gold-bright); }

/* --- SERVICE CARD photo variant --- */
.svc-card--photo {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.svc-card--photo::before { display: none; }  /* remove top gold bar */
.svc-photo {
  position: relative;
  height: 200px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
  transform-origin: center;
}
.svc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(42, 24, 16, 0.15) 0%,
    rgba(42, 24, 16, 0.0) 45%,
    rgba(42, 24, 16, 0.55) 100%);
}
.svc-card--photo:hover .svc-photo { transform: scale(1.04); }
.svc-card--photo .svc-num {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--espresso);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 2;
  box-shadow: 0 8px 22px -8px rgba(42, 24, 16, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.svc-body {
  padding: 30px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-body h3 { font-size: 1.25rem; margin-bottom: 12px; }
.svc-body p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* --- Mobile refinements for photo heroes --- */
@media (max-width: 640px) {
  .hero--photo,
  .page-hero--photo {
    min-height: 0;
  }
  .hero--photo::after,
  .page-hero--photo::after {
    background: linear-gradient(180deg,
      rgba(20, 12, 8, 0.85) 0%,
      rgba(42, 24, 16, 0.80) 100%);
  }
  .svc-photo { height: 170px; }
}
