:root {
  color-scheme: light;
  --ink: #352f28;
  --muted: #756a5e;
  --paper: #f5ecde;
  --surface: #fffaf2;
  --line: #ded0bd;
  --sage: #a9ad86;
  --forest: #667b57;
  --forest-dark: #465b3f;
  --clay: #b97961;
  --sky: #91aaa4;
  --shadow: 0 18px 46px rgba(70, 56, 41, 0.13);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(245, 236, 222, 0.95);
  box-shadow: 0 10px 28px rgba(70, 56, 41, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: brightness(0) saturate(100%) invert(25%) sepia(17%) saturate(924%) hue-rotate(104deg) brightness(92%) contrast(87%);
}

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

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

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--forest-dark);
  box-shadow: 0 12px 26px rgba(70, 56, 41, 0.14);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  background: var(--forest);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

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

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(59, 48, 38, 0.64) 0%, rgba(59, 48, 38, 0.34) 44%, rgba(59, 48, 38, 0.05) 100%),
    linear-gradient(0deg, rgba(108, 82, 58, 0.16), rgba(108, 82, 58, 0.06));
}

.hero-content {
  z-index: 2;
  align-self: end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 22px 76px;
}

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

.hero .eyebrow {
  color: #ffd2bf;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
}

h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(70, 91, 63, 0.2);
}

.hero .button-primary {
  background: var(--surface);
  color: var(--forest-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.button-full {
  width: 100%;
}

.section-band {
  background: #eadcc8;
  color: var(--ink);
}

.section,
.intro {
  padding: 88px 22px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
}

.intro h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 34px;
}

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

.service-card,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(70, 56, 41, 0.08);
}

.service-card {
  min-height: 270px;
  padding: 26px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--forest);
}

.service-icon-warm {
  background: var(--clay);
}

.service-icon-blue {
  background: var(--sky);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card p,
.split-copy p,
.booking-grid p,
.booking-panel p {
  color: var(--muted);
}

.service-card p {
  margin: 14px 0 0;
}

.split-section {
  background: #eee2d1;
}

.split-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.split-copy p,
.booking-grid > div > p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 100px;
  padding: 24px 24px 24px 78px;
  border: 1px solid rgba(118, 98, 76, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--forest);
  content: counter(process);
  font-weight: 800;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 6px;
  color: var(--muted);
}

.booking-section {
  background: var(--paper);
}

.booking-panel {
  padding: 30px;
}

.booking-panel h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.booking-panel p {
  margin: 0 0 24px;
}

.site-footer {
  padding: 28px 22px;
  color: #ffffff;
  background: var(--forest-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner span {
  font-weight: 800;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta,
  .site-header.is-open .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 84svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(59, 48, 38, 0.74), rgba(59, 48, 38, 0.32)),
      linear-gradient(0deg, rgba(108, 82, 58, 0.28), rgba(108, 82, 58, 0.08));
  }

  .hero-content {
    padding: 118px 18px 52px;
  }

  .intro-grid,
  .split-grid,
  .booking-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .intro {
    padding: 64px 18px;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 4.4rem);
  }

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

  .process-list li {
    padding: 76px 20px 22px;
  }

  .process-list li::before {
    top: 22px;
    left: 20px;
  }

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