:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #25292b;
  --muted: #626865;
  --line: #dedbd2;
  --gold: #ac8745;
  --gold-dark: #83652d;
  --sage: #637765;
  --sage-light: #edf2ed;
  --rose: #a34f46;
  --shadow: 0 18px 45px rgba(43, 45, 42, 0.08);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 24px 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 500;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  overflow-x: auto;
  background: #fbfbfa;
  color: #3f4547;
  font-size: 0.93rem;
  white-space: nowrap;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  color: var(--gold-dark);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 690px;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 102px) clamp(28px, 7vw, 90px);
}

.section-copy h1,
.section-copy h2,
.section-heading h2,
.approach-band h2,
.contact-copy h2,
.thank-you h1 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.2vw, 3.45rem);
  font-weight: 500;
  line-height: 1.12;
}

.section-copy p,
.approach-band p,
.contact-copy p,
.thank-you p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.section-media {
  min-height: 520px;
  overflow: hidden;
}

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

.hero-section .section-media img {
  object-position: center;
}

.about-section {
  background: #f0f0ed;
}

.founder-profile {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 74px);
  background:
    linear-gradient(rgba(237, 242, 237, 0.84), rgba(237, 242, 237, 0.94)),
    var(--sage-light);
}

.founder-photo-orb {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  align-self: center;
  place-items: center;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 22%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 50% 55%, rgba(237, 242, 237, 0.96), rgba(204, 220, 205, 0.92) 72%, rgba(165, 190, 169, 0.95));
  box-shadow:
    0 28px 48px rgba(42, 58, 46, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -22px 36px rgba(72, 98, 77, 0.12);
}

.founder-photo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(4%);
}

.founder-profile-content {
  width: min(100%, 430px);
  margin: 28px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.founder-profile-content .eyebrow {
  margin-bottom: 14px;
}

.founder-profile-content h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 500;
  line-height: 1.18;
}

.founder-profile-content p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.primary,
.form-button {
  background: var(--gold);
  color: #fff;
}

.primary:hover,
.primary:focus-visible,
.form-button:hover,
.form-button:focus-visible {
  background: var(--gold-dark);
}

.secondary {
  border-color: var(--sage);
  color: var(--sage);
}

.secondary:hover,
.secondary:focus-visible {
  background: var(--sage);
  color: #fff;
}

.services-section {
  padding: clamp(72px, 8vw, 104px) 24px;
  background: var(--surface);
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 500px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.service-body h3 {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.25;
}

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

.service-body a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.approach-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: clamp(58px, 8vw, 90px) clamp(28px, 7vw, 90px);
  background: var(--sage-light);
}

.approach-band p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(38px, 6vw, 76px);
  padding: clamp(72px, 8vw, 112px) clamp(28px, 7vw, 90px);
  background: #f9f8f4;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink);
  font-weight: 700;
}

.contact-list a {
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.privacy-note {
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcac0;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  padding: 12px;
}

.form-button {
  width: fit-content;
  margin-top: 8px;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 32px 24px;
  background: var(--ink);
  color: #f3f0e8;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.fine-print {
  color: #c8c2b6;
  font-size: 0.82rem;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(247, 246, 242, 0.86), rgba(247, 246, 242, 0.9)),
    url("./assets/family-care.avif") center / cover;
}

.thank-you {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(24px, 8vw, 120px);
}

.thank-you .brand {
  margin-bottom: 42px;
}

.thank-you p {
  margin-bottom: 34px;
}

@media (max-width: 920px) {
  .split-section,
  .contact-section,
  .approach-band {
    grid-template-columns: 1fr;
  }

  .split-section {
    min-height: 0;
  }

  .section-media {
    min-height: 420px;
  }

  .about-section .section-copy {
    order: 1;
  }

  .about-section .section-media,
  .about-section .founder-profile {
    order: 2;
  }

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

  .service-card {
    grid-template-rows: 280px 1fr;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .brand-row {
    padding: 26px 18px 22px;
  }

  .brand {
    gap: 12px;
    font-size: 1.08rem;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .site-nav {
    gap: 20px;
    padding: 10px 18px;
  }

  .section-copy,
  .contact-section,
  .approach-band {
    padding-right: 22px;
    padding-left: 22px;
  }

  .section-media {
    min-height: 330px;
  }

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

  .service-card {
    grid-template-rows: 220px 1fr;
  }

  .service-body {
    padding: 26px 24px;
  }
}
