:root {
  --ink: #183436;
  --muted: #5b6d6f;
  --body: #41585a;
  --teal: #075e6b;
  --teal-2: #0b7e86;
  --aqua: #d7eeee;
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --gold: #d9a21b;
  --line: #e7ddcc;
  --shadow: 0 30px 90px rgba(23, 52, 54, 0.15);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% -4%, rgba(215, 238, 238, 0.78), transparent 30rem),
    linear-gradient(180deg, var(--cream), var(--paper) 46rem, var(--cream));
  font-family: "Mulish", "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 162, 27, 0.78);
  outline-offset: 5px;
}

section[id] {
  scroll-margin-top: 114px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.15s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 237, 0.88);
  border-bottom: 1px solid rgba(231, 221, 204, 0.72);
  backdrop-filter: blur(14px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--teal);
  text-decoration: none;
}

.brand-mark {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(217, 162, 27, 0.45);
  border-radius: 999px;
}

.brand-mark img {
  width: 86px;
  height: 81px;
  object-fit: contain;
}

.brand-text {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  overflow-x: auto;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--teal);
  background: rgba(215, 238, 238, 0.42);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 10px;
  padding: 0 28px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  color: var(--paper);
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(7, 94, 107, 0.24);
}

.button-primary:hover {
  background: #064f5a;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.text-link:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 44px;
}

.hero-portrait {
  position: relative;
}

.hero-portrait img {
  width: 100%;
  height: clamp(430px, 52vw, 600px);
  object-fit: cover;
  object-position: center 28%;
  border: 10px solid rgba(255, 253, 248, 0.95);
  border-radius: 30px 30px 110px 30px;
  box-shadow: var(--shadow);
}

.hero-letter {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 253, 248, 0.78);
  border-left: 7px solid var(--gold);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 52, 54, 0.08);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 4.8vw, 4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  margin: 0;
  color: var(--teal);
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-lede {
  margin: 26px 0 0;
  color: var(--body);
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  line-height: 1.62;
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 30px;
}

.care-line {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(100% - 48px, var(--max));
  margin: 0 auto 42px;
  padding: 18px 24px;
  color: var(--teal);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-line-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.care-line-credentials {
  gap: 10px;
}

.credential-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--teal);
  background: rgba(215, 238, 238, 0.58);
  border: 1px solid rgba(11, 126, 134, 0.22);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
}

.tagline {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-style: italic;
}

.sailboat-band {
  position: relative;
  width: min(100% - 48px, var(--max));
  height: clamp(280px, 31vw, 370px);
  margin: 0 auto 80px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(23, 52, 54, 0.14);
}

.sailboat-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.9);
}

.sailboat-band figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  color: var(--paper);
  background: linear-gradient(180deg, transparent 34%, rgba(8, 46, 52, 0.6));
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-style: italic;
  line-height: 1.22;
}

.sailboat-band figcaption span {
  display: block;
  max-width: 600px;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 7vw, 90px);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(36px, 5vw, 60px);
}

.section-rule {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 22px;
  background: var(--gold);
  border-radius: 999px;
}

.section-body p,
.section-intro,
.steps-card p,
.final-contact p,
.concerns-copy p {
  margin: 0;
  color: var(--body);
  font-size: 1.12rem;
  line-height: 1.66;
}

.section-body p + p,
.concerns-copy p + p {
  margin-top: 18px;
}

.section-intro {
  margin-top: 20px;
}

.concerns-copy {
  max-width: 880px;
}

.concerns-section .section-kicker {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
}

.concerns-copy h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
}

.concerns-copy h2 + p {
  margin-top: 20px;
}

.approach-section {
  align-items: start;
}

.approach-section h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  line-height: 1.1;
}

.approach-list {
  display: grid;
  gap: 22px;
}

.approach-item,
.step-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.approach-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

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

.approach-item span,
.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.step-item span {
  width: 42px;
  height: 42px;
}

.approach-item p,
.step-item p,
.faq-items p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: stretch;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 8px 0 clamp(56px, 7vw, 90px);
}

.steps-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(23, 52, 54, 0.14);
}

.steps-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(0.96);
}

.steps-card {
  align-self: center;
  position: relative;
  z-index: 1;
  margin-left: -120px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 52, 54, 0.14);
}

.steps-card h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
}

.steps-card > p {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.62;
}

.steps-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.faq-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto clamp(56px, 7vw, 80px);
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.faq-heading {
  margin-bottom: 22px;
}

.faq-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

details {
  min-height: 100%;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

summary {
  min-height: 32px;
  color: var(--teal);
  cursor: pointer;
  font-weight: 900;
}

.final-contact {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 56px;
  padding: clamp(40px, 5vw, 58px) 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(215, 238, 238, 0.55), rgba(255, 253, 248, 0.94)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.final-contact img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.final-contact h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.final-contact p {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 22px;
}

.contact-links a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  color: var(--teal-2);
}

.final-contact .emergency-note {
  max-width: 660px;
  margin: 24px auto 0;
  color: #7b8a8b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-contact .emergency-note strong {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .faq-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero,
  .section-split,
  .steps-section {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    order: -1;
  }

  .steps-card {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .care-line,
  .sailboat-band,
  .section,
  .steps-section,
  .faq-section,
  .final-contact {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .brand-mark img {
    width: 70px;
    height: 66px;
  }

  .brand-text {
    white-space: normal;
  }

  .site-nav {
    gap: 4px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .site-nav a {
    padding: 7px 8px;
  }

  section[id] {
    scroll-margin-top: 168px;
  }

  .hero {
    gap: 28px;
    padding-top: 28px;
  }

  .hero-letter {
    padding: 28px 24px;
  }

  .hero-portrait img {
    height: 420px;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .care-line {
    justify-items: start;
    padding: 18px 0;
    text-align: left;
  }

  .care-line-row {
    justify-content: flex-start;
  }

  .sailboat-band {
    height: 270px;
    margin-bottom: 58px;
  }

  .sailboat-band figcaption {
    padding: 22px;
  }

  .section {
    padding-bottom: 58px;
  }

  .approach-item,
  .step-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .approach-item span {
    width: 42px;
    height: 42px;
  }

  .steps-section {
    padding-bottom: 58px;
  }

  .steps-image {
    min-height: 280px;
  }

  .steps-card {
    padding: 28px 22px;
  }

  .faq-section {
    padding: 24px 18px;
  }

  .faq-items {
    grid-template-columns: 1fr;
  }

  .final-contact {
    padding: 40px 18px;
  }
}
