:root {
  --ink: #18201c;
  --muted: #5c665f;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --sage: #8ea08a;
  --sage-dark: #526a5d;
  --clay: #bd765e;
  --sand: #e7dccd;
  --line: rgba(24, 32, 28, 0.14);
  --shadow: 0 18px 50px rgba(24, 32, 28, 0.14);
  --site-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  background: #fff;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .two-column > div:first-child.reveal {
  opacity: 1;
  transform: none;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(24, 32, 28, 0.08);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(100%, var(--site-max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
}

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

.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 84px max(clamp(18px, 5vw, 72px), calc((100vw - var(--site-max)) / 2 + 72px)) 34px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-drift, 0px), 0) scale(1.045);
  z-index: -2;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.92) 0%, rgba(251, 250, 246, 0.75) 37%, rgba(251, 250, 246, 0.28) 67%, rgba(251, 250, 246, 0.1) 100%),
    linear-gradient(0deg, rgba(24, 32, 28, 0.18), rgba(24, 32, 28, 0.02));
}

.hero-content {
  width: min(690px, 100%);
  max-width: 100%;
}

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

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

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 640px;
  overflow-wrap: break-word;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  color: #39443d;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

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

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

.button.primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--clay);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
}

.button.primary:hover {
  background: #a86450;
}

.button.primary:hover::after {
  transform: translateX(130%);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.intro-band {
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band-inner {
  width: min(100%, var(--site-max));
  margin-inline: auto;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-stats div {
  padding: 14px clamp(18px, 5vw, 72px);
  background: var(--surface);
}

.intro-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1.05;
}

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

.section {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.two-column,
.approach,
.appointment-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.copy-stack p {
  color: var(--muted);
  font-size: 1.04rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.copy-stack::after {
  content: "";
  display: block;
  clear: both;
}

.about-photo {
  float: right;
  width: min(38%, 260px);
  min-width: 210px;
  margin: 4px 0 18px 28px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  box-shadow: 0 14px 36px rgba(24, 32, 28, 0.12);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.services {
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #eef1eb;
}

.services::before,
.appointment::before {
  content: "";
  position: absolute;
  inset: -70px 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 780px auto;
  transform: translate3d(0, var(--texture-drift, 0px), 0);
  will-change: transform;
}

.services::before {
  opacity: 0.68;
  background-image:
    linear-gradient(rgba(238, 241, 235, 0.18), rgba(238, 241, 235, 0.18)),
    url("assets/water-texture.png");
}

.services .section-inner,
.appointment .section-inner {
  position: relative;
  z-index: 1;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(24, 32, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-grid article:hover {
  border-color: rgba(189, 118, 94, 0.28);
  box-shadow: 0 16px 34px rgba(24, 32, 28, 0.1);
  transform: translateY(-3px);
}

.service-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 18px rgba(24, 32, 28, 0.08));
}

.service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.rates {
  background: #fff;
}

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

.rate-grid article {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(24, 32, 28, 0.1);
  border-radius: 8px;
  background: #fbfaf6;
}

.rate-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.rate-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.travel-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px clamp(24px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 28, 0.1);
  border-radius: 8px;
  background: #eef1eb;
}

.travel-note h3,
.travel-note p {
  margin: 0;
}

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

.approach {
  background: #fff;
}

.quote-block {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(82, 106, 93, 0.94), rgba(189, 118, 94, 0.86)),
    var(--sage-dark);
  box-shadow: var(--shadow);
}

.quote-block p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.boundary {
  display: inline-flex;
  margin-top: 8px;
  padding: 14px 18px;
  border-left: 4px solid var(--clay);
  color: var(--ink) !important;
  background: #f7f2ec;
  font-weight: 750;
}

.appointment {
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.appointment::before {
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(231, 220, 205, 0.16), rgba(231, 220, 205, 0.16)),
    url("assets/sand-texture.png");
}

.appointment-inner {
  align-items: center;
}

.appointment p:not(.eyebrow) {
  max-width: 620px;
  color: #4b554e;
}

.contact-box {
  display: grid;
  gap: 8px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-box span {
  color: var(--clay);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-box a {
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  line-height: 1.05;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.contact-box small {
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonials {
  background: #fff;
}

.testimonial-carousel {
  display: grid;
  gap: 22px;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  transition: transform 280ms ease;
  will-change: transform;
}

.testimonial-track article {
  flex: 0 0 calc((100% - 32px) / 3);
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(24, 32, 28, 0.1);
  border-radius: 8px;
  background: #fbfaf6;
}

.testimonial-track p {
  margin: 0;
  color: #38423b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.35;
}

.testimonial-track span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.carousel-button {
  min-width: 86px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(24, 32, 28, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.carousel-button:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.carousel-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 32, 28, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--clay);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-enabled .reveal,
  .testimonial-track,
  .button.primary::after,
  .hero-image,
  .services::before,
  .appointment::before {
    transition: none;
    transform: none;
  }
}

.footer {
  color: #697169;
  background: #18201c;
}

.footer-inner {
  width: min(100%, var(--site-max));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 72px);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .site-header-inner {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.94) 0%, rgba(251, 250, 246, 0.82) 55%, rgba(251, 250, 246, 0.44) 100%),
      linear-gradient(0deg, rgba(24, 32, 28, 0.16), rgba(24, 32, 28, 0.02));
  }

  .intro-stats,
  .two-column,
  .approach,
  .appointment-inner,
  .service-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track article {
    flex-basis: 100%;
    min-height: auto;
  }

  .about-photo {
    float: none;
    width: min(100%, 360px);
    min-width: 0;
    margin: 0 0 24px;
  }

  .travel-note {
    display: grid;
  }

  .service-grid article {
    min-height: auto;
  }

  .quote-block {
    min-height: 280px;
  }

  .footer-inner {
    display: grid;
  }
}

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

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.02;
  }

  .button {
    width: 100%;
  }
}
