:root {
  --ink: #17211d;
  --muted: #5c655f;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #ddd8ce;
  --green: #0f6b58;
  --green-dark: #08473b;
  --mint: #e7f4ee;
  --wine: #7f1d2d;
  --rose: #faeef0;
  --gold: #b8832f;
  --gold-soft: #f5ead3;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(221, 216, 206, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #344039;
  font-size: 0.94rem;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--mint);
  outline: none;
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(500px, 68svh, 660px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #10261f;
  isolation: isolate;
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 26, 21, 0.92), rgba(8, 26, 21, 0.68) 48%, rgba(8, 26, 21, 0.34)),
    radial-gradient(circle at 78% 16%, rgba(184, 131, 47, 0.32), transparent 32%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(251, 250, 246, 0.94), rgba(251, 250, 246, 0));
}

.hero-content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 42px 0 76px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--gold);
  color: #21160a;
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 10px 30px rgba(8, 71, 59, 0.12);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 30px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.quick-facts div {
  padding: 16px;
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.trust-strip {
  width: min(100% - 32px, var(--max));
  margin: -52px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
}

.strip-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-item strong {
  font-size: 1rem;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cost-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.cost-band p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.service-card {
  min-height: 274px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.service-card a:hover,
.service-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.service-card.accent-green svg {
  color: var(--green);
}

.service-card.accent-wine svg {
  color: var(--wine);
}

.service-card.accent-gold svg {
  color: var(--gold);
}

.intent-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 76px max(16px, calc((100vw - var(--max)) / 2));
}

.intent-band .section-heading {
  width: min(100% - 32px, var(--max));
}

.intent-band .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.intent-grid {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.intent-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.intent-item:hover,
.intent-item:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.intent-item svg {
  color: var(--gold);
}

.intent-item span {
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.document-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f4f1eb;
}

.tab {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.tab:last-child {
  border-right: 0;
}

.tab.active,
.tab:hover,
.tab:focus-visible {
  background: var(--white);
  color: var(--green-dark);
  outline: none;
}

.tab-panel {
  min-height: 260px;
  padding: 30px;
}

.tab-panel h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.tab-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.cost-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 66px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--gold-soft);
}

.cost-band > div {
  width: min(100%, 820px);
}

.faq-section {
  padding-bottom: 54px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  padding-top: 54px;
}

.contact-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list > span {
  min-height: 56px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--green);
  outline: none;
}

.contact-list svg {
  color: var(--green);
}

.map-frame {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  padding: 42px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  outline: none;
}

.legal-note {
  grid-column: 1 / -1;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.developer-credit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.44);
  outline-offset: 6px;
}

.developer-credit img {
  display: block;
  width: 168px;
  height: auto;
}

.content-page {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.content-hero {
  padding: 22px 0 36px;
}

.content-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1;
}

.content-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.content-body {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-body h2 {
  margin: 32px 0 10px;
  font-size: 1.32rem;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p {
  margin: 0;
  color: var(--muted);
}

.content-body a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
}

.content-note {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

@media (max-width: 1020px) {
  .service-grid,
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item:nth-child(2) {
    border-right: 0;
  }

  .split-section,
  .contact-section,
  .cost-band {
    grid-template-columns: 1fr;
  }

  .cost-band .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.static-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .static-nav a {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.88rem;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: clamp(500px, 72svh, 620px);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  .hero-content {
    padding: 44px 0 72px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -36px;
  }

  .strip-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    padding: 0 18px;
  }

  .tab:last-child {
    border-bottom: 0;
  }

  .tab-panel {
    min-height: 0;
    padding: 24px;
  }

  .map-frame {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .developer-credit {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-page {
    padding: 48px 0 72px;
  }

  .content-body {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .nav-shell,
  .hero-content,
  .trust-strip,
  .section,
  .intent-band .section-heading,
  .intent-grid {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .button {
    padding: 0 14px;
  }

  .service-card {
    min-height: 0;
  }
}
