:root {
  --ink: #1d241e;
  --muted: #5c6458;
  --paper: #f8f4ec;
  --paper-soft: #eee5d6;
  --forest: #264234;
  --moss: #738455;
  --clay: #9f5f3f;
  --gold: #c49a4a;
  --blue: #41677a;
  --stone: #d8d2c2;
  --white: #fffdf8;
  --shadow: 0 18px 46px rgba(36, 42, 35, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 244, 236, 0.96);
  box-shadow: 0 10px 30px rgba(35, 38, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  max-width: 230px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.6vw, 22px);
  font-size: 0.88rem;
  font-weight: 650;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background-image: url("assets/aho-hero.png");
  background-size: 118% auto;
  background-position: center 44%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 28, 21, 0.78), rgba(21, 28, 21, 0.45) 44%, rgba(21, 28, 21, 0.12)),
    linear-gradient(0deg, rgba(29, 36, 30, 0.42), rgba(29, 36, 30, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: #1d1b12;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.08);
}

.button.tertiary {
  color: var(--white);
  background: var(--forest);
}

section {
  scroll-margin-top: 92px;
}

.intro-section,
.service-section,
.image-story,
.org-section,
.reviews-section,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

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

.section-heading p,
.split p,
.case-content p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.path-grid,
.service-grid,
.ritual-list {
  display: grid;
  gap: 18px;
}

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

.path-card,
.service-grid article,
.ritual-list article,
.org-panel,
.contact-form {
  border: 1px solid rgba(38, 66, 52, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(36, 42, 35, 0.08);
}

.path-card {
  min-height: 290px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.path-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.path-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.path-card a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 800;
}

.band {
  padding: clamp(72px, 8vw, 108px) clamp(18px, 4vw, 54px);
}

.band-earth {
  color: var(--white);
  background: var(--forest);
}

.band-earth .split p {
  color: rgba(255, 253, 248, 0.78);
}

.over-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.over-content {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin-top: 32px;
}

.about-portrait {
  margin: 0;
  max-width: 340px;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.about-portrait figcaption {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.band-stone {
  background: var(--paper-soft);
}

.split {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.split-reverse {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.text-stack p:first-child {
  margin-top: 0;
}

.over-content .text-stack {
  max-width: 660px;
  align-self: center;
}

.over-content .text-stack p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

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

.service-grid article,
.ritual-list article {
  min-height: 178px;
  padding: 24px;
}

.service-grid article:nth-child(2n) {
  border-top-color: rgba(159, 95, 63, 0.36);
}

.service-grid article:nth-child(3n) {
  border-top-color: rgba(65, 103, 122, 0.36);
}

.service-grid p,
.ritual-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.ritual-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-story {
  padding-top: clamp(64px, 8vw, 104px);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.image-grid-duo {
  grid-template-columns: 1.35fr 0.8fr;
}

.image-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(820px, 100%);
  margin-inline: auto;
}

.image-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(36, 42, 35, 0.08);
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-wide img {
  aspect-ratio: 16 / 10;
}

.image-grid figcaption {
  padding: 13px 15px 15px;
  color: var(--forest);
  font-weight: 800;
}

.image-grid-four figure {
  box-shadow: 0 14px 34px rgba(36, 42, 35, 0.12);
}

.org-panel {
  padding: 28px;
  background: #f4efe5;
}

.panel-label {
  margin: 0 0 18px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.org-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
}

.org-panel li::marker {
  color: var(--moss);
}

.case-band {
  padding: clamp(72px, 9vw, 110px) clamp(18px, 4vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 58, 47, 0.95), rgba(65, 103, 122, 0.86)),
    var(--blue);
}

.case-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.case-content p {
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.1rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.reviews-layout-full {
  grid-template-columns: 1fr;
  align-items: start;
}

.reviews-layout > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.review-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(38, 66, 52, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.review-summary {
  margin: 18px 0 0;
  color: var(--muted);
}

.review-author {
  margin: 22px 0 0;
  color: var(--forest);
  font-weight: 800;
}

.contact-section {
  padding-top: clamp(68px, 8vw, 104px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 750;
}

.contact-details a {
  color: var(--forest);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 66, 52, 0.22);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: #202820;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 750;
}

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

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(35, 58, 47, 0.95), rgba(65, 103, 122, 0.82)),
    var(--forest);
}

.thanks-panel {
  width: min(620px, 100%);
  padding: clamp(30px, 6vw, 54px);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: var(--shadow);
}

.thanks-panel .brand-logo {
  margin-bottom: 26px;
}

.thanks-panel h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 28px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.1rem;
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(248, 244, 236, 0.98);
    border: 1px solid rgba(38, 66, 52, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-cta {
    border-color: rgba(38, 66, 52, 0.22);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-inline: 18px;
  }

  .path-grid,
  .service-grid,
  .ritual-list,
  .image-grid,
  .review-list,
  .over-content,
  .split,
  .split-reverse,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 240px;
  }

  .over-heading,
  .over-content .text-stack,
  .about-portrait {
    max-width: none;
  }

  .image-grid-four {
    width: min(680px, 100%);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media {
    background-size: cover;
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 28, 21, 0.86), rgba(21, 28, 21, 0.56)),
      linear-gradient(0deg, rgba(29, 36, 30, 0.42), rgba(29, 36, 30, 0));
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-section,
  .service-section,
  .image-story,
  .org-section,
  .contact-section {
    width: min(100% - 28px, var(--max));
  }

  .band {
    padding-inline: 14px;
  }

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

  .contact-form {
    padding: 18px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
