:root {
  --bg: #f4f8f7;
  --surface: #ffffff;
  --surface-alt: #eef6f5;
  --surface-accent: #f7f4ed;
  --text: #1c2f33;
  --text-soft: #557176;
  --heading: #18353a;
  --primary: #5d9094;
  --primary-dark: #3f6d71;
  --accent: #b8ddd7;
  --line: #dbe7e4;
  --success: #7ea59d;
  --shadow: 0 18px 48px rgba(28, 47, 51, 0.08);
  --shadow-soft: 0 10px 24px rgba(28, 47, 51, 0.05);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 221, 215, 0.3), transparent 32%),
    linear-gradient(180deg, #f8fbfb 0%, var(--bg) 100%);
  line-height: 1.7;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--heading);
}

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

:focus-visible {
  outline: 3px solid rgba(93, 144, 148, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 12px 16px;
  background: var(--heading);
  color: #fff;
  border-radius: 999px;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 251, 0.88);
  border-bottom: 1px solid rgba(219, 231, 228, 0.85);
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--heading);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dff1ee 0%, #f7f4ed 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.brand-text strong,
.brand-text span {
  display: block;
}

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

.brand-text span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--heading);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.98rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(184, 221, 215, 0.35);
  color: var(--heading);
}

.nav-cta,
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(93, 144, 148, 0.24);
}

.button-secondary {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 84px 0 64px;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184, 221, 215, 0.4);
  color: var(--primary-dark);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--heading);
  line-height: 1.2;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.lead {
  font-size: 1.12rem;
  max-width: 62ch;
}

.hero-card,
.card,
.info-card,
.form-card,
.quote-card,
.timeline-step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 231, 228, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24, 53, 58, 0.14), rgba(24, 53, 58, 0.1)),
    linear-gradient(135deg, #dcefed 0%, #f8f4ea 100%);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.hero-visual::before {
  width: 260px;
  height: 260px;
  top: -30px;
  right: -50px;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  bottom: 30px;
  left: -40px;
}

.visual-content {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.visual-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--primary-dark);
}

.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section {
  padding: 40px 0 72px;
}

.section-alt {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(238, 246, 245, 0.5));
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

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

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

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

.card,
.info-card,
.form-card,
.quote-card,
.timeline-step {
  padding: 28px;
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(184, 221, 215, 0.45), rgba(247, 244, 237, 0.85));
  color: var(--primary-dark);
  font-weight: 700;
}

.highlight-box {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #eef6f5 0%, #fbf8f3 100%);
  border: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-size: 2rem;
  color: var(--heading);
}

.stat span {
  color: var(--text-soft);
}

.split-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
}

.photo-placeholder {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(24, 53, 58, 0.06), rgba(24, 53, 58, 0.12)),
    linear-gradient(135deg, #dcefed 0%, #f6efe4 100%);
  position: relative;
}

.photo-placeholder::before {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--heading);
  font-size: 0.92rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.list-clean li:last-child {
  border-bottom: none;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  position: relative;
  padding-left: 86px;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: 28px;
  top: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(184, 221, 215, 0.55);
  color: var(--heading);
  font-weight: 700;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fbfdfd;
  color: var(--text);
}

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

.form-note,
.meta {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.notice {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(184, 221, 215, 0.35);
  color: var(--heading);
}

.contact-list strong,
.hours strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}

.contact-list p,
.hours p {
  margin-bottom: 18px;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(219, 231, 228, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.page-hero {
  padding: 64px 0 36px;
}

.page-hero .hero-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 237, 0.84));
}

.legal h2 {
  margin-top: 34px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(184, 221, 215, 0.3);
  color: var(--primary-dark);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-card,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-card,
  .card,
  .info-card,
  .form-card,
  .quote-card,
  .timeline-step {
    padding: 22px;
  }

  .timeline-step {
    padding-left: 22px;
    padding-top: 76px;
  }

  .timeline-step::before {
    left: 22px;
    top: 20px;
  }

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

  h1 {
    font-size: 2.3rem;
  }

  .button,
  .button-secondary,
  .nav-cta {
    width: 100%;
  }
}
