:root {
  --forest: #173f35;
  --forest-2: #315a4d;
  --cream: #e8ddca;
  --stone: #f5f0e7;
  --linen: #fbf8f2;
  --clay: #7a5138;
  --sage: #9aa596;
  --ink: #10251f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 63, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 240, 231, 0.94);
  box-shadow: 0 12px 35px rgba(16, 37, 31, 0.08);
  color: var(--forest);
  padding-block: 12px;
  backdrop-filter: blur(16px);
}

.brand {
  width: clamp(118px, 15vw, 174px);
  display: block;
}

.brand img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(91%) sepia(13%) saturate(431%) hue-rotate(354deg) brightness(98%) contrast(88%);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 37, 31, 0.82) 0%, rgba(16, 37, 31, 0.54) 42%, rgba(16, 37, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(16, 37, 31, 0.62) 0%, rgba(16, 37, 31, 0) 56%);
}

.hero-brand-field {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.07;
  pointer-events: none;
}

.hero-brand-field span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(232, 221, 202, 0.4);
  color: var(--cream);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(82px, 14vw, 190px);
  line-height: 1;
  writing-mode: vertical-rl;
}

.hero-brand-field span:last-child {
  border-right: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(56px, 10vh, 108px) clamp(20px, 6vw, 86px);
}

.hero-mark {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: clamp(48px, 9vh, 96px);
  z-index: 1;
  width: min(31vw, 360px);
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(232, 221, 202, 0.36);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(72px, 15vw, 184px);
  line-height: 0.86;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(38px, 5.7vw, 76px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(245, 240, 231, 0.92);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-light {
  background: var(--cream);
  color: var(--forest);
}

.button-ghost {
  border-color: rgba(232, 221, 202, 0.65);
  color: var(--cream);
}

.button-dark {
  background: var(--forest);
  color: var(--cream);
}

.button-line {
  border-color: rgba(23, 63, 53, 0.35);
  color: var(--forest);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: var(--cream);
}

.intro-strip p {
  min-height: 82px;
  display: grid;
  place-items: center;
  margin: 0;
  border-right: 1px solid rgba(232, 221, 202, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip p:last-child {
  border-right: 0;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-heading.compact {
  max-width: 720px;
}

.service-section {
  background: var(--stone);
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.line-card {
  min-width: 0;
  background: var(--linen);
  border: 1px solid rgba(23, 63, 53, 0.14);
  box-shadow: 0 16px 44px rgba(23, 63, 53, 0.08);
}

.line-card figure {
  margin: 0;
  overflow: hidden;
}

.line-card img {
  width: 100%;
  height: clamp(260px, 26vw, 390px);
  object-fit: cover;
}

.line-card div {
  padding: clamp(22px, 3vw, 34px);
}

.line-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-card p {
  margin-bottom: 0;
  color: var(--forest-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 63, 53, 0.18);
  border: 1px solid rgba(23, 63, 53, 0.18);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--linen);
  padding: clamp(24px, 3.2vw, 42px);
}

.service-card span {
  margin-bottom: auto;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--forest-2);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--linen);
}

.split-copy {
  max-width: 620px;
}

.split-copy p:not(.eyebrow) {
  margin-block: 26px;
  color: var(--forest-2);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.feature-image,
.gallery-section figure,
.appointment-card {
  margin: 0;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.location-panel {
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(232, 221, 202, 0.94), rgba(245, 240, 231, 0.98)),
    var(--cream);
  border: 1px solid rgba(23, 63, 53, 0.16);
  box-shadow: var(--shadow);
  text-align: center;
}

.location-panel img {
  width: min(390px, 78%);
}

.location-panel p {
  margin: 20px 0 0;
  color: var(--forest);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.location-panel span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ritual-section {
  padding: clamp(74px, 10vw, 126px) clamp(20px, 5vw, 72px);
  background: var(--forest);
  color: var(--cream);
}

.ritual-section h2,
.ritual-section h3 {
  color: var(--cream);
}

.ritual-section .eyebrow {
  color: var(--sage);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232, 221, 202, 0.2);
  border: 1px solid rgba(232, 221, 202, 0.2);
}

.timeline article {
  min-height: 290px;
  background: var(--forest);
  padding: clamp(24px, 3vw, 38px);
}

.timeline span {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 68px;
  border: 1px solid var(--cream);
  border-radius: 999px;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(232, 221, 202, 0.78);
}

.gallery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.gallery-section img {
  width: 100%;
  height: clamp(360px, 52vw, 720px);
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--stone);
}

.contact-panel {
  max-width: 780px;
}

.contact-panel h2 {
  margin-bottom: 24px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--forest-2);
  font-size: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 40px 0 0;
  background: rgba(23, 63, 53, 0.16);
  border: 1px solid rgba(23, 63, 53, 0.16);
}

.contact-list div {
  min-width: 0;
  background: var(--linen);
  padding: 24px;
}

.contact-list dt {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--forest);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.appointment-card img {
  width: 100%;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--forest);
  color: rgba(232, 221, 202, 0.8);
}

.site-footer img {
  width: 136px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

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

  .site-nav {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--stone);
    color: var(--forest);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

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

  .contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }

  .hero-mark {
    display: none;
  }

  .hero-brand-field {
    grid-template-columns: 1fr;
  }

  .hero-brand-field span {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 221, 202, 0.4);
    writing-mode: horizontal-tb;
  }

  .intro-strip,
  .service-grid,
  .line-grid,
  .timeline,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .intro-strip p {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(232, 221, 202, 0.22);
  }

  .service-card,
  .timeline article {
    min-height: 240px;
  }

  .timeline span {
    margin-bottom: 44px;
  }

  .gallery-section img {
    height: 390px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
