/* ===== Design tokens (from logo palette) ===== */
:root {
  --navy: #14304d;
  --navy-deep: #0e2438;
  --teal: #1f5f70;
  --teal-light: #2a7488;
  --gold: #c39a4d;
  --gold-light: #d8b872;
  --cream: #fdfcf9;
  --paper: #f4f1ea;
  --ink: #21303c;
  --muted: #5c6b76;
  --line: #e4ddd0;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 14px rgba(20, 48, 77, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 48, 77, 0.12);
  --radius: 14px;
  --maxw: 1140px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: .5px; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.accent { color: var(--teal); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .3px;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-block { display: block; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 252, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--navy);
  letter-spacing: .5px; line-height: 1; white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--teal); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--navy); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }
.nav .nav-cta.active { color: var(--white); }
.nav .nav-cta {
  background: var(--gold); color: var(--white); padding: 10px 22px; border-radius: 8px; font-weight: 600;
}
.nav .nav-cta:hover { background: var(--navy); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 100%); padding: 84px 0 96px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { list-style: none; display: flex; gap: 32px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-trust li { font-size: .9rem; color: var(--muted); }
.hero-trust strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }

.logo-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
}
.logo-card::before {
  content: ""; position: absolute; inset: -14px; border-radius: 30px;
  background: linear-gradient(135deg, var(--gold-light), transparent 60%);
  z-index: -1; opacity: .5;
}
.logo-card img { border-radius: 12px; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-badges img { height: 92px; width: auto; }

/* ===== Stats ===== */
.stats { background: var(--navy); color: var(--white); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { display: block; margin-top: 8px; font-size: .86rem; color: #c3d0da; letter-spacing: .5px; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--paper); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-badge {
  background: linear-gradient(160deg, var(--navy), var(--teal));
  color: var(--white); border-radius: 24px; padding: 60px 40px; text-align: center;
  box-shadow: var(--shadow-md); width: 100%; max-width: 340px;
}
.about-badge-num {
  display: block; font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 4px; line-height: 1;
}
.about-badge-text { display: block; margin-top: 16px; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; color: #cfe0e6; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.checklist { list-style: none; margin-top: 24px; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; background: rgba(195,154,77,.14);
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem;
}

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
.why-item { position: relative; padding-left: 26px; }
.why-item::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 4px; background: linear-gradient(var(--gold), var(--teal)); }
.why-item h3 { margin-bottom: 10px; }
.why-item p { color: var(--muted); }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative;
}
.price-featured { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: .74rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
}
.price-card h3 { margin-bottom: 8px; }
.price { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price span { font-size: 1.4rem; vertical-align: top; color: var(--teal); }
.price small { font-size: 1rem; font-family: var(--sans); font-weight: 500; color: var(--muted); }
/* Single custom-quote callout */
.pricing-cta { text-align: center; margin-top: 48px; }
.pricing-cta h3 { font-size: 2rem; margin-bottom: 10px; }
.pricing-cta p { color: var(--muted); max-width: 30rem; margin: 0 auto 24px; }

/* Pricing factors row */
.factors {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
  max-width: 760px; margin: 0 auto 48px;
}
.factors li {
  background: var(--white); border: 1px solid var(--line); border-radius: 30px;
  padding: 9px 20px; font-size: .88rem; font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm);
}
.factors li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.price-for { color: var(--muted); font-size: .92rem; margin: 10px 0 24px; }
.price-card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card li { padding: 9px 0 9px 26px; position: relative; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pricing-note { text-align: center; margin-top: 34px; color: var(--muted); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-copy p { color: var(--muted); margin-bottom: 28px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; flex-direction: column; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { color: var(--navy); font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 9px;
  font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,95,112,.12); }
.field textarea { resize: vertical; }
.form-note { margin-top: 16px; color: var(--teal); font-weight: 600; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: #c3d0da; padding-top: 64px; }
.footer-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 48px 64px;
  align-items: start; padding-bottom: 56px;
}
.footer-heading {
  position: relative; font-family: var(--sans); text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .82rem; font-weight: 600; color: var(--white);
  padding-top: 12px; margin-bottom: 16px;
}
.footer-heading::before {
  content: ""; position: absolute; top: 0; left: 0; width: 30px; height: 2px;
  background: var(--gold);
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; max-width: 240px; }
.footer-badges img { height: 104px; width: auto; }
.footer-business p { font-size: .95rem; line-height: 1.6; color: #c3d0da; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: #c3d0da; font-weight: 500; padding-left: 18px; position: relative; }
.footer-nav a::before { content: "›"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { font-size: .85rem; color: #8ba0ae; }

/* ===== Offer tag ===== */
.offer-tag {
  display: inline-block; background: rgba(195,154,77,.14); border: 1px solid var(--gold-light);
  color: var(--navy); font-size: .92rem; font-weight: 500; padding: 10px 18px;
  border-radius: 30px; margin-bottom: 28px;
}
.offer-tag strong { color: var(--teal); }

/* ===== Section CTA row ===== */
.section-cta { text-align: center; margin-top: 44px; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(160deg, var(--navy), var(--teal)); padding: 76px 0; }
.cta-band-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: #dfeaf0; font-size: 1.1rem; margin-bottom: 30px; }
.cta-band p strong { color: var(--gold-light); }
.cta-band .btn-primary { background: var(--gold); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--navy); }

/* ===== Footer social ===== */
.footer-social { display: flex; gap: 18px; margin-top: 16px; }
.footer-social a { color: var(--gold-light); font-weight: 600; font-size: .9rem; }
.footer-social a:hover { color: var(--white); }

/* ===== Page hero (subpages) ===== */
.page-hero { background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 100%); padding: 72px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 40rem; margin: 0 auto; }

/* ===== Prose (about) ===== */
.prose p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; }
.prose p strong { color: var(--ink); }
.intro-lead { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.signoff {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--teal);
  line-height: 1.2; margin-bottom: 8px;
}
.signoff span {
  display: block; font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

/* ===== Full services grid ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.svc-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-item p { color: var(--muted); font-size: .95rem; }

/* ===== Contact meta / Calendly ===== */
.calendly-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 660px; background: var(--white); }
.contact-social { display: flex; gap: 14px; margin-top: 18px; }
.contact-social a {
  display: inline-block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 8px;
  font-weight: 600; font-size: .9rem; color: var(--navy);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cards, .pricing-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .brand-name { display: none; }
  .section { padding: 68px 0; }
  .cards, .pricing-grid, .svc-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}
