:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --ink: #18201d;
  --muted: #626b62;
  --soft: #d8dccf;
  --line: #e2e0d6;
  --sage: #5d7766;
  --sage-dark: #2f5140;
  --clay: #9b6b52;
  --cream: #fbf8f0;
  --shadow: 0 24px 70px rgba(31, 41, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  text-decoration: none;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav .active {
  color: var(--ink);
}

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 6px;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 10px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 20px;
}

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

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 5vw, 64px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 88px);
  grid-template-columns: minmax(0, 1.04fr) minmax(285px, 0.72fr);
  min-height: calc(100vh - 76px);
  padding: 48px 0 56px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-label {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.9;
  margin: 0 0 28px;
  max-width: 790px;
}

h2 {
  font-size: clamp(2.35rem, 5.4vw, 4.7rem);
  line-height: 0.98;
  margin: 0;
}

h3 {
  font-size: 1.03rem;
  margin: 0 0 10px;
}

p {
  line-height: 1.7;
}

.intro {
  color: var(--sage-dark);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.16;
  margin: 0 0 18px;
}

.hero-note {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 30px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

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

.portrait {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.portrait img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portrait figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 14px 16px;
}

.summary-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}

.summary-band div {
  min-width: 0;
}

.summary-band strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.summary-band span {
  color: var(--muted);
  font-size: 0.86rem;
}

.split-section,
.contact-section {
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(68px, 10vw, 118px) 0;
}

.body-copy {
  color: var(--muted);
  font-size: 1rem;
}

.body-copy p:first-child {
  color: var(--ink);
  font-size: 1.15rem;
}

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

.section-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 0;
}

.services-section,
.founder-section {
  padding: clamp(64px, 10vw, 108px) 0;
}

.services-grid,
.venture-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
}

.services-grid article,
.venture-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(31, 41, 34, 0.07);
}

.services-grid article {
  padding: 22px;
}

.services-grid p,
.venture-card p {
  color: var(--muted);
  margin: 0;
}

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

.booking-link {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin: 24px 0;
  max-width: 420px;
  padding: 14px 16px;
  text-decoration: none;
}

.booking-link img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.booking-link span {
  font-weight: 800;
}

.safety-note {
  border-left: 3px solid var(--clay);
  font-size: 0.9rem;
  padding-left: 16px;
}

.contact-form {
  padding: clamp(20px, 4vw, 34px);
}

.field-group {
  margin-bottom: 18px;
}

.contact-form label {
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--cream);
  border: 1px solid var(--soft);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  width: 100%;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage-dark);
  outline: 3px solid rgba(47, 81, 64, 0.14);
}

.hp-field {
  display: none;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 16px 0 0;
}

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

.venture-card {
  padding: 28px;
}

.venture-card a {
  color: var(--sage-dark);
  display: inline-block;
  font-weight: 800;
  margin-top: 20px;
}

.venture-mark {
  height: 42px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
  width: 210px;
}

.af-wordmark {
  width: 240px;
}

.af-strip {
  align-items: center;
  background: linear-gradient(90deg, #1b698d 0%, #8d8ca9 50%, #eeb8ad 100%);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  margin: 10px 0 clamp(56px, 8vw, 92px);
  padding: clamp(20px, 4vw, 32px);
}

.af-strip img {
  height: 64px;
  width: 64px;
}

.af-strip h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.af-strip p {
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 0;
}

.af-strip .button {
  background: #fff;
  border-color: #fff;
}

.credentials-strip {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 64px;
  padding: 24px 0;
  text-align: center;
}

.credentials-strip img {
  filter: grayscale(1);
  max-height: 42px;
  object-fit: contain;
  opacity: 0.78;
}

.credentials-strip span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px clamp(20px, 5vw, 64px) 44px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 8px 0 0;
  max-width: 620px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  left: 18px;
  max-width: 460px;
  padding: 14px;
  position: fixed;
  z-index: 30;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.legal-page {
  padding: clamp(64px, 10vw, 112px) 0;
}

.legal-page h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.legal-page article {
  max-width: 760px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: 230px;
    padding: 8px;
    position: absolute;
    right: 20px;
    top: 68px;
  }

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

  .nav a {
    padding: 12px;
    width: 100%;
  }

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

  .hero {
    min-height: auto;
  }

  .portrait {
    max-width: 460px;
  }

  .summary-band,
  .services-grid,
  .venture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-strip {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .af-strip .button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .summary-band,
  .services-grid,
  .venture-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    left: 12px;
    right: 12px;
  }
}
