/* ===== SHARED PAGE TOKENS (light/neutral theme) ===== */
:root {
  --bg: #FDFCFA;
  --bg-elevated: #F7F4EF;
  --bg-card: #FFFFFF;
  --fg: #1A2332;
  --fg-muted: #3D4A5C;
  --accent: #B8973A;
  --accent-light: #D4AF5A;
  --accent-glow: rgba(212, 160, 83, 0.12);
  --border: rgba(61, 74, 92, 0.10);
  --radius: 12px;
  --max-width: 1140px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }
.accent { color: var(--accent); }

/* ===== NAV ===== */
.page-nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }
.nav-link-active { color: var(--fg); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  background: var(--fg);
  color: #FDFCFA;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav-cta:hover {
  background: #2a3a52;
  transform: translateY(-1px);
  color: #FDFCFA;
}

/* ===== SHARED SECTIONS ===== */
.page-section {
  padding: 100px 40px;
}

.section-alt {
  background: var(--bg-elevated);
}

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

.section-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184, 151, 58, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: var(--fg);
  color: #FDFCFA;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  background: #2a3a52;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.15);
  color: #FDFCFA;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
  border-color: rgba(184, 151, 58, 0.4);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ===== PAGE CTA ===== */
.page-cta {
  padding: 100px 40px;
  text-align: center;
  background: var(--bg-elevated);
  position: relative;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 151, 58, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.page-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cta-actions {
  margin-top: 32px;
}

/* ===== FOOTER (navy) ===== */
.site-footer {
  padding: 40px;
  background: var(--fg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FDFCFA;
}

.footer-divider {
  color: rgba(253, 252, 250, 0.3);
}

.footer-tagline {
  color: rgba(253, 252, 250, 0.45);
  font-size: 0.9rem;
}

.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(253, 252, 250, 0.45);
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(253, 252, 250, 0.75); }

/* ===== SERVICES HERO ===== */
.services-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  background: var(--bg);
}

.services-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--fg);
}

.services-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 8px;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 151, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(184, 151, 58, 0.3);
  box-shadow: 0 4px 24px rgba(184, 151, 58, 0.08);
}

.service-icon {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.pricing-card-main {
  border-color: rgba(184, 151, 58, 0.3);
}

.pricing-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.pricing-price-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-price-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 0.97rem;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(184, 151, 58, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23B8973A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.btn-pricing-primary {
  display: block;
  text-align: center;
  background: var(--fg);
  color: #FDFCFA;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-pricing-primary:hover {
  background: #2a3a52;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.15);
  color: #FDFCFA;
}

.pricing-footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== PRICING COMPARE CARD ===== */
.pricing-card-compare .pricing-label {
  margin-bottom: 28px;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.compare-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.compare-ll {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--accent);
}

.btn-compare {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 13px 24px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-compare:hover {
  border-color: rgba(184, 151, 58, 0.4);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  padding: 100px 40px 80px;
  background: var(--bg);
}

.contact-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184, 151, 58, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--fg);
}

.contact-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 8px;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-block {}

.contact-info-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.contact-info-note {
  font-size: 0.88rem;
  color: var(--fg-muted) !important;
  margin-top: 4px !important;
}

.contact-next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: steps;
}

.contact-next-steps li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.5;
}

.contact-next-steps li::before {
  counter-increment: steps;
  content: counter(steps);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(184, 151, 58, 0.25);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== CONTACT CTA PANEL ===== */
.contact-cta-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.contact-cta-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}

.contact-cta-panel p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-contact-primary {
  display: block;
  text-align: center;
  background: var(--fg);
  color: #FDFCFA;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 24px;
}

.btn-contact-primary:hover {
  background: #2a3a52;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.15);
  color: #FDFCFA;
}

.contact-or {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.contact-or-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.6;
}

/* ===== SOCIAL PROOF STRIP ===== */
.contact-social {
  padding: 80px 40px;
  background: var(--fg);
  border-top: 1px solid rgba(253, 252, 250, 0.06);
  border-bottom: 1px solid rgba(253, 252, 250, 0.06);
}

.contact-social-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.contact-social-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 16px;
  color: rgba(253, 252, 250, 0.80);
  font-style: italic;
}

.contact-social-attr {
  font-size: 0.88rem;
  color: rgba(253, 252, 250, 0.40);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .page-nav { padding: 16px 24px; }
  .nav-links { display: none; }

  .services-hero,
  .contact-hero,
  .page-section,
  .page-cta { padding: 64px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 6px; }
  .footer-divider { display: none; }
}