/* ═══════════════════════════════════════
   BUSINESS UNITED · base.css
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

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

:root {
  --terra:        #C9623F;
  --terra-dark:   #A84D30;
  --terra-light:  #E8845F;
  --forest:       #2D4A3E;
  --forest-light: #3D6455;
  --cream:        #FAFAF5;
  --warm-grey:    #F0EDE6;
  --ink:          #1A1A16;
  --body:         #3D3D35;
  --muted:        #8A8A7A;
  --rule:         #E5E0D8;
  --nav-h:        68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Instrument Serif', serif; }

h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── SHARED ATOMS ── */
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }

.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: var(--terra-dark); }

.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-light); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--rule);
}
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); }

/* ── TICKER ── */
.ticker {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 26s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  flex-shrink: 0;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 40px;
}
.ticker-item::after { content: '·'; color: var(--terra-light); font-size: 18px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── QUOTE BAND ── */
.quote-band {
  padding: 80px 56px;
  background: var(--terra);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.q-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.q-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.5vw, 38px);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.q-meta { display: flex; align-items: center; gap: 20px; }
.q-line { width: 36px; height: 2px; background: rgba(255,255,255,0.35); flex-shrink: 0; }
.q-name { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.q-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* ── LOCATION STRIP ── */
.location-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.loc-cell {
  padding: 44px 48px;
  border-right: 1px solid var(--rule);
  background: var(--warm-grey);
}
.loc-cell:last-child { border-right: none; }
.loc-cell-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 10px;
}
.loc-cell-value {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; font-style: italic; color: var(--ink); line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: white;
  padding: 64px 56px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.f-logo {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; margin-bottom: 14px; text-decoration: none; display: block;
}
.f-logo span { color: var(--terra-light); }
.f-tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.32); line-height: 1.6; margin-bottom: 24px;
}
.f-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px;
}
.f-col a, .f-col p {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.5); text-decoration: none; line-height: 2.4;
  transition: color 0.15s;
}
.f-col a:hover { color: var(--terra-light); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.2);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,98,63,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--terra-light);
  margin-bottom: 20px; position: relative;
}
.page-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400; line-height: 1.05;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 20px; position: relative;
}
.page-hero-title em { font-style: italic; color: var(--terra-light); }
.page-hero-sub {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 520px;
  position: relative; margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 80px 56px; border-bottom: 1px solid var(--rule); }
.content-section.dark { background: var(--ink); color: white; }
.content-section.grey { background: var(--warm-grey); }
.content-section.forest { background: var(--forest); color: white; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.feature-card {
  background: var(--warm-grey);
  padding: 40px 36px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terra);
  transition: height 0.3s;
}
.feature-card:hover { background: var(--white, #fff); }
.feature-card:hover::before { height: 100%; }
.feature-num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px; color: var(--rule); line-height: 1;
  margin-bottom: 20px; transition: color 0.25s;
}
.feature-card:hover .feature-num { color: rgba(201,98,63,0.2); }
.feature-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.feature-text { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* ── PRICE TABLE ── */
.price-table { border: 1px solid var(--rule); margin-top: 48px; }
.price-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule); align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row.header { background: var(--ink); }
.price-row.featured { background: rgba(201,98,63,0.04); }
.pr-cell { padding: 22px 28px; font-size: 13px; }
.price-row.header .pr-cell { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.pr-type { font-size: 15px; font-weight: 700; color: var(--ink); }
.pr-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.pr-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; color: var(--ink); letter-spacing: -0.01em;
}
.pr-badge {
  background: var(--terra); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; margin-left: 8px; vertical-align: middle;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ink); cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--terra); }
.faq-icon { font-size: 20px; color: var(--terra); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 22px; font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 640px; }

/* ── TWO COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
