/* ============================================================
   DOHOSPITALITY — DESIGN SYSTEM
   Navy #1B2A4A · Gold #C9943A · Cream #FDFAF6
   Playfair Display + Inter
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1B2A4A;
  background: #FDFAF6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- VARIABLES --- */
:root {
  --navy:        #1B2A4A;
  --navy-mid:    #2D4070;
  --navy-light:  #3D537A;
  --navy-deep:   #111D31;
  --gold:        #C9943A;
  --gold-light:  #DBA84E;
  --gold-pale:   #F5E8D0;
  --cream:       #FDFAF6;
  --cream-mid:   #F4EFE6;
  --muted:       #6B7A96;
  --muted-light: #9AAAC4;
  --border:      #DDD5C4;
  --border-dark: rgba(255,255,255,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container:   1160px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --section-pad: 96px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); line-height: 1.75; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }

.btn-ghost-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(253,250,246,0.3); }
.btn-ghost-light:hover { background: rgba(253,250,246,0.08); }

.btn-nav { background: var(--gold); color: #fff; padding: 10px 22px; font-size: 0.85rem; }
.btn-nav:hover { background: var(--gold-light); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: var(--muted-light); }
.section-mid { background: var(--cream-mid); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-sub { font-size: 1.05rem; color: var(--muted); margin-top: 16px; }
.section-dark .section-sub { color: var(--muted-light); }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  margin-right: 32px;
}
.logo span { color: var(--gold); }
.logo-light { color: var(--cream); }
.logo-light span { color: var(--gold); }

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

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.nav-links > li > a:hover,
.nav-dropdown-toggle:hover { color: var(--navy); background: var(--cream-mid); }

.nav-dropdown-toggle svg { flex-shrink: 0; transition: transform 0.2s; }
.has-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 268px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(27,42,74,0.12);
  z-index: 300;
  padding: 8px;
}
.has-dropdown.open .dropdown { display: block; }

.dropdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 12px 4px;
  display: block;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--cream-mid); }

.dropdown-item-title { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.dropdown-item-sub   { font-size: 0.78rem; color: var(--muted); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-blog {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-blog:hover { color: var(--navy); background: var(--cream-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.2s;
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero { background: var(--navy); padding: 80px 0 0; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label { font-size: 0.82rem; color: var(--muted-light); }

.hero-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--border-dark);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-bar .sep { color: var(--gold); opacity: 0.4; }

/* ============================================================
   PAGE HERO — Inner pages
   ============================================================ */
.page-hero { background: var(--navy); padding: 72px 0 64px; }
.page-hero-inner { max-width: 720px; }

.page-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 20px; line-height: 1.15; }
.page-hero-sub { font-size: 1.05rem; color: var(--muted-light); max-width: 560px; line-height: 1.75; }

/* ============================================================
   SPLIT / PAIN SECTION
   ============================================================ */
.split { background: var(--cream); }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text h2 { margin-bottom: 20px; }
.split-text p  { margin-bottom: 16px; }
.split-text .btn { margin-top: 8px; }

.commission-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.commission-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.commission-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.commission-row .platform { font-size: 0.95rem; color: #C4D0E4; }
.commission-row .pct      { font-family: var(--font-display); font-size: 1.2rem; color: #E87A6A; }

.commission-divider { height: 1px; background: rgba(201,148,58,0.3); margin: 8px 0; }

.commission-row.highlight .platform { color: var(--cream); font-weight: 500; }
.commission-row.highlight .pct      { color: #6DBF8A; }

.commission-note { font-size: 0.82rem; color: var(--muted-light); margin-top: 20px; line-height: 1.6; }

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--navy-mid);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  text-decoration: none;
}
.service-card:hover { background: #354d80; }

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,148,58,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}

.service-card h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.1rem; }
.service-card p  { font-size: 0.88rem; color: var(--muted-light); flex: 1; }
.service-link    { font-size: 0.82rem; font-weight: 500; color: var(--gold); margin-top: 4px; }

.service-card-cta {
  background: rgba(201,148,58,0.08);
  border: 1px solid rgba(201,148,58,0.2);
  justify-content: center;
}
.service-card-cta:hover { background: rgba(201,148,58,0.14); }

.cta-card-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 8px;
}
.cta-card-sub { font-size: 0.88rem; color: var(--muted-light); margin-bottom: 20px; }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-item {
  background: var(--cream);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-num { font-family: var(--font-display); font-size: 0.82rem; color: var(--gold); letter-spacing: 0.05em; }
.why-item h3 { color: var(--navy); font-size: 1.05rem; }
.why-item p  { font-size: 0.9rem; }

.why-item-quote {
  background: var(--navy);
  display: flex;
  align-items: center;
}

.why-item-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.65;
}

/* ============================================================
   PRICING / STRIPE SECTION
   ============================================================ */
.pricing-section { background: var(--cream-mid); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: var(--navy);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.featured .pricing-price { color: var(--cream); }

.pricing-price sup { font-size: 1.2rem; vertical-align: super; font-family: var(--font-body); }

.pricing-period {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-card.featured .pricing-period { color: var(--muted-light); }

.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-desc { color: var(--muted-light); border-color: rgba(255,255,255,0.1); }

.pricing-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--navy);
}
.pricing-card.featured .pricing-feature { color: var(--cream); }

.pricing-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.pricing-card.featured .pricing-note { color: var(--muted-light); border-color: rgba(255,255,255,0.1); }

.pricing-footer-note {
  text-align: center;
  margin-top: 40px;
}
.pricing-footer-note p { font-size: 0.875rem; }
.pricing-footer-note a { color: var(--gold); font-weight: 500; }

/* ============================================================
   CONTENT BODY — Service page SEO Machine copy
   ============================================================ */
.content-body { background: var(--cream); }

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.content-main h2 { font-size: 1.65rem; margin: 44px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.05rem; margin: 28px 0 12px; }
.content-main p  { margin-bottom: 18px; font-size: 0.975rem; }

.content-main ul {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-main ul li {
  font-size: 0.975rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.content-sidebar { position: sticky; top: 88px; }

.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); font-weight: 500; }
.sidebar-sub   { font-size: 0.875rem; color: var(--muted-light); line-height: 1.65; }
.sidebar-card .btn { width: 100%; justify-content: center; }

.sidebar-divider { height: 1px; background: rgba(255,255,255,0.08); }

.sidebar-fact { display: flex; flex-direction: column; gap: 4px; }
.sidebar-fact-num   { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.sidebar-fact-label { font-size: 0.8rem; color: var(--muted-light); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  border-top: 1px solid rgba(201,148,58,0.2);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip h2    { color: var(--cream); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 8px; }
.cta-strip p     { color: var(--muted-light); font-size: 1rem; }
.cta-strip-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  color: #6B7A96;
  line-height: 1.75;
  max-width: 300px;
}

.footer-brand a { color: var(--gold); }
.footer-brand a:hover { color: var(--gold-light); }
.footer-address { font-size: 0.78rem !important; margin-top: 12px !important; }

.footer-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a { font-size: 0.875rem; color: #6B7A96; transition: color 0.15s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; color: #4A5A72; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: var(--navy); padding: 72px 0 64px; }
.about-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; line-height: 1.15; }
.about-hero-sub { font-size: 1.05rem; color: var(--muted-light); max-width: 580px; line-height: 1.75; }

.about-body { background: var(--cream); padding: var(--section-pad) 0; }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.about-content h2 { font-size: 1.7rem; margin: 48px 0 16px; color: var(--navy); }
.about-content h2:first-child { margin-top: 0; }
.about-content p { margin-bottom: 18px; font-size: 0.975rem; line-height: 1.75; }
.about-content a { color: var(--gold); font-weight: 500; }
.about-content a:hover { color: var(--gold-light); }
.about-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}

.stat-item { background: var(--cream); padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; }
.stat-item-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.stat-item-label { font-size: 0.82rem; color: var(--muted); }

.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }

.services-block { background: var(--navy); border-radius: var(--radius-md); padding: 28px 24px; }
.services-block-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; color: var(--gold); margin-bottom: 16px; letter-spacing: 0.03em; }
.services-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.services-block ul li { font-size: 0.875rem; color: var(--muted-light); padding-left: 16px; position: relative; }
.services-block ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

.about-sidebar { position: sticky; top: 88px; }

.about-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-sidebar-card .sidebar-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); font-weight: 500; }
.about-sidebar-card .sidebar-sub { font-size: 0.875rem; color: var(--muted-light); line-height: 1.65; }
.about-sidebar-card .btn { width: 100%; justify-content: center; }
.about-sidebar-card .sidebar-divider { height: 1px; background: rgba(255,255,255,0.08); }

.about-sidebar-fact { display: flex; flex-direction: column; gap: 4px; }
.about-sidebar-fact-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.about-sidebar-fact-label { font-size: 0.8rem; color: var(--muted-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: var(--navy); padding: 72px 0 64px; }
.about-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; line-height: 1.15; }
.about-hero-sub { font-size: 1.05rem; color: var(--muted-light); max-width: 580px; line-height: 1.75; }

.about-body { background: var(--cream); padding: var(--section-pad) 0; }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.about-content h2 { font-size: 1.7rem; margin: 48px 0 16px; color: var(--navy); }
.about-content h2:first-child { margin-top: 0; }
.about-content p { margin-bottom: 18px; font-size: 0.975rem; line-height: 1.75; }
.about-content a { color: var(--gold); font-weight: 500; }
.about-content a:hover { color: var(--gold-light); }
.about-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}

.stat-item { background: var(--cream); padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; }
.stat-item-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.stat-item-label { font-size: 0.82rem; color: var(--muted); }

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.services-block { background: var(--navy); border-radius: var(--radius-md); padding: 28px 24px; }
.services-block-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; color: var(--gold); margin-bottom: 16px; letter-spacing: 0.03em; }
.services-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.services-block ul li { font-size: 0.875rem; color: var(--muted-light); padding-left: 16px; position: relative; }
.services-block ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

.about-sidebar { position: sticky; top: 88px; }

.about-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-sidebar-card .sidebar-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); font-weight: 500; }
.about-sidebar-card .sidebar-sub { font-size: 0.875rem; color: var(--muted-light); line-height: 1.65; }
.about-sidebar-card .btn { width: 100%; justify-content: center; }
.about-sidebar-card .sidebar-divider { height: 1px; background: rgba(255,255,255,0.08); }

.about-sidebar-fact { display: flex; flex-direction: column; gap: 4px; }
.about-sidebar-fact-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.about-sidebar-fact-label { font-size: 0.8rem; color: var(--muted-light); }

/* ============================================================
   FAQ GRID
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  padding: 36px 32px;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.faq-item p { font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
  .content-wrap    { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .about-wrap      { grid-template-columns: 1fr; }
  .about-sidebar   { position: static; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-body { background: var(--cream); padding: var(--section-pad) 0; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-intro h2 { font-size: 1.65rem; margin-bottom: 16px; }
.contact-intro p  { font-size: 0.975rem; margin-bottom: 16px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.contact-detail-value { font-size: 0.95rem; color: var(--navy); font-weight: 400; }
.contact-detail-value a { color: var(--navy); text-decoration: none; }
.contact-detail-value a:hover { color: var(--gold); }

.contact-promises { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.contact-promise { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--muted); }
.contact-promise svg { color: var(--gold); flex-shrink: 0; }

/* Form card */
.contact-form-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form-card .form-sub {
  font-size: 0.875rem;
  color: var(--muted-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--cream);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,170,196,0.6); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,148,58,0.5); }

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--cream); }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note { font-size: 0.78rem; color: var(--muted-light); text-align: center; margin-top: 12px; line-height: 1.5; }

/* Success / error states */
.form-success {
  display: none;
  background: rgba(109,191,138,0.1);
  border: 1px solid rgba(109,191,138,0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #6DBF8A;
  font-size: 0.9rem;
  margin-top: 16px;
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links,
  .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 199;
  }

  .nav-links.open .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .hero         { padding: 56px 0 0; }
  .hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats   { grid-template-columns: 1fr 1fr; }

  .split-inner  { grid-template-columns: 1fr; gap: 48px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }

  .cta-strip-inner   { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container       { padding: 0 20px; }
  .hero-stats      { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-inner    { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .services-split  { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
}
