:root {
  --ink: #243238;
  --ink-soft: #46565d;
  --teal: #315f5a;
  --teal-dark: #234a46;
  --sage: #dce9e3;
  --sage-light: #eef4f1;
  --cream: #faf8f4;
  --paper: #ffffff;
  --clay: #e8c7b8;
  --clay-light: #f5e8e1;
  --line: #ccd8d3;
  --focus: #8b4d29;
  --max-width: 1160px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 16px 50px rgba(36, 50, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin-bottom: 0.45em;
  font-size: clamp(2.55rem, 7vw, 4.8rem);
  font-weight: 720;
}

h2 {
  margin-bottom: 0.55em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 0.45em;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 680;
}

h4 {
  margin-bottom: 0.35em;
  font-size: 1.1rem;
}

p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.25em;
}

li + li {
  margin-top: 0.45em;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(49, 95, 90, 0.12);
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 86px;
  margin: 0 auto;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
}

.wordmark strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.wordmark span {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  margin: 5px 0;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--teal);
}

.primary-nav .nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--teal-dark);
}

main {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 790px;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-sm {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.section-paper {
  background: var(--paper);
}

.section-sage {
  background: var(--sage-light);
}

.section-teal {
  color: #fff;
  background: var(--teal-dark);
}

.section-teal h2,
.section-teal h3,
.section-teal a {
  color: #fff;
}

.section-clay {
  background: var(--clay-light);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-teal .eyebrow {
  color: var(--sage);
}

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.section-teal .lead,
.section-teal p {
  color: rgba(255, 255, 255, 0.88);
}

.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(5rem, 9vw, 8.5rem);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -8rem;
  width: 31rem;
  height: 31rem;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.58;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy .lead {
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 1.45rem 0 0;
  gap: 0.55rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-photo {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--sage), #c8dad3 58%, var(--clay));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo::before {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-lg) - 10px);
  content: "";
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.photo-placeholder .initials {
  display: grid;
  place-content: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
  border: 2px solid rgba(36, 50, 56, 0.25);
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.44);
  font-size: 2.2rem;
  font-weight: 740;
  letter-spacing: -0.04em;
}

.photo-placeholder strong {
  display: block;
  margin-bottom: 0.25rem;
}

.photo-placeholder span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.18rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--teal);
}

.button-primary:hover {
  color: #fff;
  background: var(--teal-dark);
  text-decoration: none;
}

.button-secondary {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: transparent;
}

.button-secondary:hover {
  color: #fff;
  background: var(--teal);
  text-decoration: none;
}

.button-light {
  color: var(--teal-dark);
  background: #fff;
}

.button-light:hover {
  color: var(--teal-dark);
  background: var(--sage);
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.intro-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  gap: 2rem 4rem;
}

.intro-heading h2,
.intro-heading p {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 32px rgba(36, 50, 56, 0.035);
}

.card h3 {
  font-size: 1.42rem;
}

.card p {
  color: var(--ink-soft);
}

.card .text-link {
  margin-top: 0.7rem;
}

.card-accent {
  border: none;
  background: var(--sage-light);
}

.card-clay {
  border: none;
  background: var(--clay-light);
}

.card-number {
  display: inline-grid;
  place-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.9rem;
  font-weight: 760;
}

.icon-mark {
  display: inline-grid;
  place-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--teal-dark);
  background: var(--sage);
  font-size: 1.2rem;
  font-weight: 800;
}

.split {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-panel {
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border-radius: var(--radius-lg);
  background: var(--sage-light);
}

.split-panel.clay {
  background: var(--clay-light);
}

.quote-block {
  padding: clamp(1.7rem, 4vw, 2.8rem);
  border-left: 6px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-block p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.45;
}

.check-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 1.65rem;
}

.check-list li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.plain-list {
  margin-top: 1.25rem;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
}

.info-band > div {
  padding: 1.35rem;
}

.info-band > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.info-band strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
}

.info-band span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.page-hero {
  padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(155deg, var(--cream), var(--sage-light));
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.breadcrumb {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumb a {
  color: inherit;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.65rem;
}

.subnav a {
  display: inline-flex;
  padding: 0.45rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.notice {
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--sage-light);
}

.notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.notice.warning {
  border-left-color: var(--focus);
  background: #fbf1e9;
}

.service-section + .service-section {
  padding-top: clamp(3.4rem, 7vw, 6.4rem);
  border-top: 1px solid var(--line);
}

.details-list {
  display: grid;
  gap: 0.85rem;
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.details-list dt {
  font-weight: 720;
}

.details-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

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

summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.45rem;
  content: "+";
}

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

.details-content {
  padding: 0 1.25rem 1.3rem;
  color: var(--ink-soft);
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-form {
  padding: clamp(1.4rem, 4vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.contact-link-card p {
  max-width: 68ch;
}

.contact-link-card .button-row {
  align-items: center;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label,
legend {
  font-size: 0.91rem;
  font-weight: 700;
}

label .optional {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #aebdb7;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.94rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.checkbox-field {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.2rem;
}

.checkbox-field label {
  font-weight: 500;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--sage-light);
}

.form-status.is-visible {
  display: block;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-sidebar .card {
  box-shadow: none;
}

.map-card {
  min-height: 220px;
  background:
    linear-gradient(rgba(49, 95, 90, 0.08), rgba(49, 95, 90, 0.08)),
    repeating-linear-gradient(45deg, #eff4f1, #eff4f1 12px, #e5ede9 12px, #e5ede9 24px);
}

.map-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 3.5rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.55fr));
  gap: 2.5rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
}

.footer-grid h2 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.footer-grid h3 {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  gap: 1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sage);
  font-size: 0.76rem;
  font-weight: 680;
}

.desktop-only {
  display: block;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 0.8rem;
  }

  .primary-nav a {
    font-size: 0.84rem;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-band > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .info-band > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 35px rgba(36, 50, 56, 0.1);
    gap: 0.3rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.96rem;
  }

  .primary-nav .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .form-layout,
  .intro-heading {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 360px;
  }

  .card-grid,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .wordmark span {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-photo {
    min-height: 320px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .card-grid.four,
  .info-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-band > div + div,
  .info-band > div:nth-child(3),
  .info-band > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .subnav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .section,
  .section-sm,
  .page-hero {
    padding: 1.5rem 0;
  }
}
