:root {
  --navy: #0a2e4f;
  --navy-soft: #173e5d;
  --green: #607f70;
  --green-light: #e9f0ec;
  --gold: #b08d57;
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #5f6b73;
  --border: rgba(10, 46, 79, 0.13);
  --shadow: 0 24px 70px rgba(10, 46, 79, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(15px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
}
.site-nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(176,141,87,.18), transparent 31%),
    radial-gradient(circle at 18% 85%, rgba(96,127,112,.16), transparent 36%),
    linear-gradient(135deg, #f8fafb 0%, #f8f5ef 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10,46,79,.09);
}
.hero::before { width: 620px; height: 620px; right: -260px; top: 70px; }
.hero::after { width: 440px; height: 440px; right: -150px; top: 160px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  line-height: .98;
}
.hero h1 {
  font-size: clamp(4rem, 8vw, 7.1rem);
  letter-spacing: -.04em;
}
.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 30px rgba(10,46,79,.22);
}
.button-primary:hover { background: var(--green); }
.button-secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: rgba(255,255,255,.5);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.hero-points span:not(:last-child)::after {
  content: "•";
  margin-left: 24px;
  color: var(--gold);
}
.hero-logo-card {
  position: relative;
  max-width: 490px;
  margin-left: auto;
  padding: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.hero-logo-card::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(176,141,87,.36);
  border-radius: 50%;
}
.hero-logo-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.section { padding: 110px 0; }
.section h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -.03em;
}
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 84px;
}
.story-copy {
  border-left: 1px solid var(--gold);
  padding-left: 36px;
  color: var(--muted);
  font-size: 1.04rem;
}
.story-copy p:first-child { margin-top: 0; }
.story-copy p:last-child { margin-bottom: 0; }

.services-section { background: var(--cream); }
.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 610px;
  font-size: 1.05rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  min-height: 265px;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.icon {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.service-card h3 {
  margin: 46px 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.service-card p { margin: 0; color: var(--muted); }

.approach-section {
  color: white;
  background: var(--navy);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}
.approach-section h2 { color: white; }
.approach-panel > p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b8d0c3;
}
blockquote {
  margin: 0;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  background: rgba(255,255,255,.04);
}

.audience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.audience-list span {
  padding: 19px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  background: #fbfcfd;
}

.contact-section {
  padding-top: 20px;
  background: linear-gradient(to bottom, white 0 35%, var(--cream) 35% 100%);
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  padding: 58px;
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 90% 0, rgba(176,141,87,.32), transparent 35%),
    var(--navy);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: white; }
.contact-card > div > p:last-child { color: rgba(255,255,255,.75); }
.contact-links {
  display: grid;
  align-content: center;
  gap: 12px;
}
.contact-links a {
  display: block;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
}
.contact-links a:hover { background: rgba(255,255,255,.1); }
.contact-links span {
  display: block;
  color: #b8d0c3;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-links strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: .98rem;
}

.site-footer {
  padding: 46px 0;
  background: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-brand strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}
.footer-brand span { color: var(--muted); font-size: .85rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
}
.social-links a:hover { background: var(--green-light); }
.social-links svg { width: 20px; fill: var(--navy); }
.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .8rem;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(10,46,79,.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .menu-button { display: block; }
  .hero { min-height: auto; }
  .hero-grid,
  .story-grid,
  .approach-grid,
  .audience-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 48px; }
  .hero-logo-card { margin: 0 auto; max-width: 420px; }
  .story-grid, .approach-grid, .audience-grid { gap: 42px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand span { display: none; }
  .brand img { width: 50px; height: 50px; }
  .hero { padding: 126px 0 70px; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-points span:not(:last-child)::after { margin-left: 14px; }
  .hero-points { gap: 10px 14px; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(2.55rem, 13vw, 3.6rem); }
  .story-copy { padding-left: 22px; }
  .cards { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 30px; }
  blockquote { padding: 30px; }
  .audience-list { grid-template-columns: 1fr; }
  .contact-section { padding-top: 0; }
  .contact-card { padding: 36px 24px; border-radius: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* Premium upgrade */
.nav-phone {
  color: var(--navy);
  font-size: .88rem !important;
  font-weight: 700 !important;
}
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-contact-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.66);
  color: var(--navy);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
}
.hero-contact-strip a:hover {
  background: var(--green-light);
}

.premium-section {
  padding-top: 30px;
  background: linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}
.premium-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}
.premium-intro > p:last-child {
  color: var(--muted);
  max-width: 520px;
}
.premium-features {
  display: grid;
  gap: 16px;
}
.premium-features article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 35px rgba(10,46,79,.06);
}
.premium-features article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}
.premium-features h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}
.premium-features p {
  margin: 0;
  color: var(--muted);
}

.social-section {
  background: #fff;
}
.social-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 58px;
  padding: 56px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 100% 0, rgba(96,127,112,.12), transparent 38%),
    linear-gradient(135deg, #fff 0%, #f8faf9 100%);
}
.social-card > div > p:last-child {
  color: var(--muted);
  max-width: 600px;
}
.social-buttons {
  display: grid;
  align-content: center;
  gap: 14px;
}
.social-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
}
.social-icon svg {
  width: 23px;
  fill: white;
}
.social-button small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.social-button strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.location-section {
  padding: 95px 0 110px;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.location-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
}
.location-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 28px;
}
.map-frame {
  min-height: 400px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: white;
}
.map-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.footer-phone {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-phone { display: none; }
  .premium-grid,
  .social-card,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .premium-grid,
  .social-card,
  .location-grid { gap: 38px; }
}
@media (max-width: 640px) {
  .hero-contact-strip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-contact-strip a {
    justify-content: center;
  }
  .premium-section { padding-top: 10px; }
  .premium-features article {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }
  .social-card {
    padding: 34px 22px;
  }
  .location-section {
    padding: 76px 0 86px;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }
}


/* Final premium enhancements */
.consultation-section {
  padding: 30px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}
.consultation-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 46px;
  align-items: center;
  padding: 46px 52px;
  border-radius: 28px;
  border: 1px solid rgba(176,141,87,.28);
  background:
    radial-gradient(circle at 100% 0, rgba(176,141,87,.14), transparent 35%),
    #ffffff;
  box-shadow: var(--shadow);
}
.consultation-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4.1rem);
  line-height: 1;
}
.consultation-card p:last-child {
  max-width: 700px;
  color: var(--muted);
}
.consultation-actions {
  display: grid;
  gap: 12px;
  min-width: 235px;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .consultation-card {
    grid-template-columns: 1fr;
  }
  .consultation-actions {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
  }
  .consultation-section {
    padding-bottom: 80px;
  }
  .consultation-card {
    padding: 32px 22px;
  }
  .consultation-actions {
    grid-template-columns: 1fr;
  }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62px;
    background: var(--navy);
    box-shadow: 0 -10px 30px rgba(10,46,79,.2);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
  }
  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255,255,255,.22);
    background: var(--green);
  }
}
