@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --ink: #17241f;
  --muted: #66716f;
  --line: #d9e2df;
  --paper: #fbfcfb;
  --mist: #eef5f2;
  --forest: #1f4d3a;
  --forest-dark: #163a2b;
  --sea: #0f8f8b;
  --sea-dark: #0c6867;
  --accent-soft: #dcefed;
  --gray-soft: #f1f3f3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 36, 31, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

p, ul { margin: 0; color: var(--muted); }

h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.05; }

h1, h2 { font-family: Fraunces, Georgia, serif; letter-spacing: 0; }

h1 { font-size: clamp(2.55rem, 6vw, 5.4rem); max-width: 900px; }

h2 { font-size: clamp(2rem, 4vw, 3.65rem); }

h3 { font-size: 1.15rem; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 251, 0.94);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 300px;
  font-weight: 800;
  flex-shrink: 1;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 2px;
  color: var(--ink);
  line-height: 1;
}

.brand-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.brand-tagline {
  width: max-content;
  max-width: 245px;
  padding: 3px 8px;
  border-left: 3px solid var(--sea);
  background: linear-gradient(90deg, rgba(15, 143, 139, 0.12), rgba(31, 77, 58, 0));
  color: var(--sea-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a,
.nav-links > li > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { background: var(--mist); }

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: grid; gap: 4px; }

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown-menu a:hover { background: var(--mist); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  min-width: 64px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 28px rgba(31, 77, 58, 0.22); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--sea); color: var(--sea-dark); }
.btn-coral { background: var(--sea); color: var(--white); }
.btn-coral:hover { background: var(--sea-dark); }

.eyebrow {
  color: var(--sea-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
  background:
    linear-gradient(90deg, rgba(251,252,251,0.98) 0%, rgba(251,252,251,0.84) 50%, rgba(251,252,251,0.38) 100%),
    url('https://images.unsplash.com/photo-1607453998774-d533f65dac99?auto=format&fit=crop&w=1800&q=80') center right / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  min-height: 630px;
}

.hero-copy p.hero-lede {
  max-width: 650px;
  margin-top: 22px;
  font-size: 1.15rem;
  color: #435257;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}

.trust-pill {
  min-height: 76px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 226, 223, 0.88);
}

.trust-pill strong { display: block; font-size: 1rem; color: var(--ink); }
.trust-pill span { color: var(--muted); font-size: 0.82rem; }

.intake-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 226, 223, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.intake-panel h2 { font-size: 1.55rem; margin-bottom: 10px; }
.intake-panel p { margin-bottom: 18px; }

.quick-list { display: grid; gap: 12px; margin: 20px 0; }

.quick-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.quick-list li::before { content: "+"; color: var(--sea); font-weight: 900; }

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-mist { background: var(--mist); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: #8bd2ce; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.section-head p { max-width: 610px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  min-height: 100%;
}

.card h3 { margin-bottom: 10px; }
.card p + .link { margin-top: 18px; }

.link {
  display: inline-flex;
  color: var(--sea-dark);
  font-weight: 800;
  border-bottom: 2px solid rgba(21,127,127,0.2);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.feature-image {
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img { width: 100%; height: 100%; object-fit: cover; }

img.feature-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--forest-dark);
  font-weight: 900;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.location-card img { height: 190px; width: 100%; object-fit: cover; }
.location-card div { padding: 22px; }
.location-card address { font-style: normal; color: var(--muted); margin: 10px 0 14px; }

.band {
  padding: 34px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.band p { color: rgba(255,255,255,0.75); max-width: 610px; margin-top: 8px; }

.page-hero {
  padding: 84px 0 62px;
  background: linear-gradient(135deg, var(--mist), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero p { max-width: 760px; margin-top: 18px; font-size: 1.08rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.45fr);
  gap: 42px;
  align-items: start;
}

.content-stack { display: grid; gap: 18px; }
.content-stack h2 { margin-top: 12px; }
.content-stack ul { padding-left: 20px; }
.content-stack li { margin: 8px 0; color: var(--muted); }

.aside {
  position: sticky;
  top: 98px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(23, 33, 36, 0.06);
}

.aside h3 { margin-bottom: 12px; }
.aside .btn { width: 100%; margin-top: 18px; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-brand {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.about-logo-panel {
  min-height: 420px;
  display: grid;
  gap: 18px;
  place-items: center;
  align-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gray-soft), var(--mist));
}

.about-logo-panel img {
  width: min(360px, 80%);
  height: auto;
}

.about-logo-title {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.about-logo-title span {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--forest-dark);
}

.about-logo-title small {
  padding: 5px 12px;
  border-top: 2px solid var(--sea);
  color: var(--sea-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-panel {
  padding: 28px;
  border-left: 4px solid var(--sea);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--forest-dark);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 36px;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.form label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; font-size: 0.9rem; }

.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}

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

.notice {
  border-left: 4px solid var(--sea);
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 8px;
}

.badge-strip {
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 62px);
  flex-wrap: wrap;
}

.badge-row img {
  width: auto;
  max-width: 210px;
  max-height: 62px;
  object-fit: contain;
}

.badge-row a {
  display: inline-flex;
  align-items: center;
}

.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.72);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-footer h3, .site-footer h4 { color: var(--white); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.9rem; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    min-height: calc(100vh - 78px);
    padding: 18px 20px 40px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
  }

  body.nav-open .nav-links { display: flex; }
  .dropdown-menu { position: static; display: grid; box-shadow: none; margin: 4px 0 12px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-actions .btn { display: none; }
  .hero-grid, .feature-grid, .split, .contact-grid, .about-brand { grid-template-columns: 1fr; }
  .hero { background-position: center; }
  .hero-grid { min-height: auto; }
  .intake-panel { max-width: 620px; }
  .cards, .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head, .band { align-items: start; flex-direction: column; }
  .aside { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { height: 70px; gap: 10px; }
  .brand { min-width: 0; gap: 10px; font-size: 0.98rem; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-title { font-size: 1.12rem; }
  .brand-tagline {
    max-width: 172px;
    padding-left: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  h1 { font-size: 2.62rem; overflow-wrap: break-word; }
  .nav-links { inset: 70px 0 auto 0; min-height: calc(100vh - 70px); }
  .hero { padding: 44px 0 34px; }
  .hero-copy p.hero-lede { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row, .cards, .steps, .location-grid, .mini-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .page-hero { padding: 56px 0 44px; }
  .band { padding: 24px; }
  .location-card img { height: 170px; }
  .badge-strip { padding: 24px 0; }
  .badge-row { gap: 22px; }
  .badge-row img { max-width: 170px; max-height: 54px; }
}
