:root {
  --ink: #202119;
  --muted: #6f6659;
  --paper: #f6efe4;
  --paper-deep: #ebddca;
  --olive: #303820;
  --olive-soft: #4e5a37;
  --rust: #b76438;
  --line: #d6c4aa;
  --white: #fffaf2;
  --shadow: 0 24px 80px rgba(45, 39, 28, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(214, 196, 170, 0.78);
  background: rgba(246, 239, 228, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: var(--olive);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 0.82;
  letter-spacing: 0;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 0.96;
}

.brand-name span,
.eyebrow,
.nav-link,
.mini-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--rust);
  transition: right 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--white);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.button.secondary {
  background: transparent;
  color: var(--olive);
}

.button.secondary:hover {
  background: var(--olive);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 76px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.hero {
  min-height: calc(100vh - 74px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--paper-deep);
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.99) 0%, rgba(246, 239, 228, 0.98) 43%, rgba(246, 239, 228, 0.58) 62%, rgba(246, 239, 228, 0.12) 82%),
    linear-gradient(0deg, rgba(32, 33, 25, 0.16), rgba(32, 33, 25, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

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

.eyebrow {
  color: var(--rust);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(46px, 5.7vw, 74px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.14;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 650px;
  margin-top: 24px;
  color: #51483d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

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

.section {
  padding: 116px 0;
}

.section[id] {
  scroll-margin-top: 94px;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.kicker-line {
  width: 84px;
  height: 1px;
  margin: 20px 0 0;
  background: var(--rust);
}

.editorial-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
  background: var(--paper-deep);
}

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

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

.image-frame.portrait {
  aspect-ratio: 1 / 1;
  max-width: 420px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.tall img {
  object-position: center 44%;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.stat {
  min-height: 146px;
  padding: 24px;
  background: var(--paper);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--olive);
}

.stat span {
  color: var(--muted);
}

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

.service {
  min-height: 300px;
  padding: 34px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.service-number {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 34px;
}

.quiet-band {
  padding: 86px 0;
  background: var(--olive);
  color: var(--white);
}

.quiet-band h2,
.quiet-band p,
.quiet-band .eyebrow {
  color: var(--white);
}

.quiet-band p {
  opacity: 0.78;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.36);
}

.process-step .mini-label {
  display: block;
  margin-bottom: 48px;
  color: var(--rust);
  font-weight: 700;
}

.quote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.08;
}

.page-hero {
  padding: 92px 0 70px;
  background: var(--paper-deep);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: 72px;
  align-items: end;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.two-column-text {
  columns: 2 320px;
  column-gap: 64px;
}

.two-column-text p + p {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.detail-item {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 28px;
  padding: 30px;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: start;
  padding: 54px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.52);
}

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

.booking-widget {
  display: grid;
  gap: 18px;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
}

.booking-widget .zl-url {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--white);
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-widget-note {
  font-size: 14px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.contact-method span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong {
  font-weight: 600;
  text-align: right;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  text-align: right;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 14px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  background: var(--olive);
  color: var(--white);
}

.footer-media {
  position: absolute;
  inset: 0;
}

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

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 33, 25, 0.86), rgba(32, 33, 25, 0.34), rgba(32, 33, 25, 0.1));
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.footer-top {
  max-width: 600px;
}

.footer-top h2,
.footer-top p {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 88px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 242, 0.32);
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.footer-bottom a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 242, 0.38);
  text-underline-offset: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    min-height: calc(100vh - 74px);
    padding: 38px 24px;
    background: var(--paper);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .nav-link {
    font-family: var(--serif);
    font-size: 36px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 76vh;
    align-items: end;
  }

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

  .hero::after {
    background: linear-gradient(0deg, rgba(246, 239, 228, 0.96) 0%, rgba(246, 239, 228, 0.82) 44%, rgba(246, 239, 228, 0.18) 100%);
  }

  .hero-content,
  .container,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero-content {
    padding: 250px 0 42px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .editorial-grid,
  .split,
  .split.reverse,
  .page-hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-list,
  .process,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .service,
  .process-step {
    min-height: unset;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-panel {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 58px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand-name strong {
    font-size: 25px;
  }

  .brand-name span {
    display: none;
  }

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

  .hero-content {
    padding-top: 210px;
  }

  .stat,
  .service,
  .process-step {
    padding: 24px;
  }

  .page-hero {
    padding: 68px 0 48px;
  }
}
