:root {
  --ink: #243236;
  --muted: #5d6b70;
  --paper: #fffdf8;
  --cream: #f7efe2;
  --sage: #dfe9dc;
  --sky: #d9e7ee;
  --clay: #b06f55;
  --teal: #315f61;
  --plum: #72546b;
  --line: rgba(36, 50, 54, 0.16);
  --shadow: 0 24px 70px rgba(36, 50, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  text-decoration: none;
  min-width: 148px;
}

.brand-mark {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a,
.nav-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.nav-label:hover,
.site-nav a:focus-visible,
.nav-label:focus-visible {
  background: var(--sage);
  outline: none;
}

.nav-group {
  position: relative;
}

.nav-label {
  cursor: default;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-menu a {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  background: var(--teal);
  color: white !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #264f51 !important;
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 36, 39, 0.82), rgba(22, 36, 39, 0.44) 54%, rgba(22, 36, 39, 0.2));
}

.hero-body {
  position: relative;
  width: calc(100% - 36px);
  max-width: 1120px;
  min-width: 0;
  margin: 0 auto;
  padding: 92px 0 74px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f3d4bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
}

.hero-trust span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  background: var(--clay);
  color: white;
}

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

.button.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

.page-hero {
  padding: 86px clamp(18px, 4vw, 56px) 54px;
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.page-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--teal);
}

.page-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.section {
  padding: 72px clamp(18px, 4vw, 56px);
}

.section.soft {
  background: var(--cream);
}

.section.cool {
  background: var(--sky);
}

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

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-inner.narrow-copy {
  width: min(860px, 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.split-text h2 {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.split-text p {
  color: var(--muted);
}

.portrait-panel,
.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel {
  display: grid;
  min-height: 430px;
  place-items: end start;
  padding: 30px;
  background:
    linear-gradient(160deg, rgba(49, 95, 97, 0.78), rgba(114, 84, 107, 0.58)),
    url("https://images.unsplash.com/photo-1491013516836-7db643ee125a?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: white;
}

.profile-photo-panel {
  padding: 0;
  place-items: stretch;
  background: var(--cream);
}

.profile-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 35%;
}

.portrait-panel .initials {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.portrait-panel p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.image-panel img {
  width: 100%;
  height: min(58vw, 560px);
  min-height: 360px;
  object-fit: cover;
}

.image-panel.contained {
  background: var(--cream);
}

.image-panel.contained img {
  object-fit: contain;
}

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

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

.card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card h3 {
  color: var(--teal);
  font-size: 1.42rem;
}

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

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.callout {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: 8px;
}

.callout h3 {
  color: var(--teal);
  font-size: 1.45rem;
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--clay);
  border-radius: 50%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  font-weight: 800;
}

.step h3 {
  color: var(--teal);
  font-size: 1.25rem;
}

.step p {
  color: var(--muted);
}

.contact-band {
  padding: 64px clamp(18px, 4vw, 56px);
  background: var(--teal);
  color: white;
}

.contact-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-band h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-band p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
}

.contact-box,
.contact-form {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-box h2,
.contact-form h2 {
  color: var(--teal);
  font-size: 1.8rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 750;
}

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

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

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list details {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--teal);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  background: #172729;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    color: var(--teal);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
  }

  .mobile-nav summary span::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 12px;
    margin-right: 8px;
    background:
      linear-gradient(var(--teal), var(--teal)) 0 0 / 16px 2px no-repeat,
      linear-gradient(var(--teal), var(--teal)) 0 5px / 16px 2px no-repeat,
      linear-gradient(var(--teal), var(--teal)) 0 10px / 16px 2px no-repeat;
  }

  .mobile-nav[open] summary {
    color: white;
    background: var(--teal);
  }

  .mobile-nav[open] summary span::before {
    background:
      linear-gradient(white, white) 0 0 / 16px 2px no-repeat,
      linear-gradient(white, white) 0 5px / 16px 2px no-repeat,
      linear-gradient(white, white) 0 10px / 16px 2px no-repeat;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    z-index: 30;
    display: grid;
    max-height: calc(100dvh - 84px);
    padding: 12px;
    overflow-y: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    gap: 6px;
  }

  .mobile-nav-panel a,
  .mobile-nav-heading {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 11px;
    color: var(--ink);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
  }

  .mobile-nav-panel a:hover,
  .mobile-nav-panel a:focus-visible {
    background: var(--sage);
    outline: none;
  }

  .mobile-nav-section {
    display: grid;
    gap: 3px;
    padding: 6px;
    background: var(--cream);
    border-radius: 8px;
  }

  .mobile-nav-section a:not(.mobile-nav-heading) {
    min-height: 36px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .mobile-nav-cta {
    justify-content: center;
    margin-top: 4px;
    color: white !important;
    background: var(--teal);
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: rgba(22, 36, 39, 0.66);
  }

  .hero-body {
    padding-top: 74px;
    padding-bottom: 54px;
  }

  .hero-trust {
    flex-wrap: nowrap;
    max-width: 100%;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .hero-trust span {
    flex: 0 0 auto;
  }

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-panel img {
    height: min(72vw, 430px);
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 1.18rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-body {
    width: calc(100% - 28px);
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-trust span {
    padding: 6px 9px;
    font-size: 0.78rem;
  }

  .section,
  .page-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .button {
    width: 100%;
  }

  .image-panel img,
  .profile-photo-panel img {
    height: min(76vw, 330px);
    min-height: 230px;
  }
}
