:root {
  --soil: #3c332b;
  --bark: #5b4a3e;
  --moss: #49664a;
  --sage: #899d78;
  --clay: #c96f3d;
  --rust: #a95330;
  --cream: #f8f1e5;
  --linen: #eee2d0;
  --stone: #d7c6af;
  --white: #fffaf1;
  --shadow: 0 18px 46px rgba(60, 51, 43, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--soil);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(248, 241, 229, .92);
  border-bottom: 1px solid rgba(91, 74, 62, .14);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--moss);
  font-family: Arial, sans-serif;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-family: Arial, sans-serif;
  font-size: .9rem;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  min-height: calc(100vh - 84px);
  align-items: stretch;
  border-bottom: 1px solid rgba(91, 74, 62, .14);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 112px) clamp(22px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: .97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 1.25rem;
  line-height: 1.2;
}

.intro {
  max-width: 640px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--moss);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--moss);
}

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

.button.full {
  width: 100%;
  margin-top: 20px;
}

.booking-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 5px solid var(--clay);
  border-radius: 6px;
  background: var(--linen);
  color: var(--bark);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  background: #e7dccd;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 84px);
  object-fit: contain;
}

.statement {
  padding: clamp(36px, 6vw, 72px) clamp(22px, 7vw, 120px);
  background: var(--moss);
  color: var(--white);
}

.statement p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.16;
  text-align: center;
}

.content-band,
.split-section,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(22px, 7vw, 120px);
}

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

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

.service-grid article,
.rate,
.contact-card,
.quiet-panel {
  border: 1px solid rgba(91, 74, 62, .16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 230px;
  padding: 26px;
}

.service-grid p,
.split-section p,
.contact-section p,
dd,
li {
  font-family: Arial, sans-serif;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background: var(--linen);
}

.split-section > div:first-child p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.1rem;
}

.quiet-panel {
  padding: 28px;
  background: #fbf5eb;
}

.quiet-panel ul {
  margin: 0;
  padding-left: 20px;
}

.muted {
  background: #f5eadb;
}

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

.rate {
  min-height: 170px;
  padding: 28px;
  border-top: 7px solid var(--sage);
}

.rate.featured {
  border-top-color: var(--clay);
}

.rate span {
  display: block;
  font-family: Arial, sans-serif;
  color: var(--bark);
}

.rate strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(310px, .56fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.contact-section h2 {
  max-width: 680px;
}

.contact-section p {
  max-width: 660px;
  font-size: 1.1rem;
}

.contact-card {
  padding: 28px;
}

dl {
  margin: 0;
}

dt {
  margin-bottom: 2px;
  color: var(--rust);
  font-family: Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

dd {
  margin: 0 0 20px;
}

footer {
  padding: 34px 22px 44px;
  text-align: center;
  background: var(--soil);
  color: var(--cream);
}

.footer-mark {
  width: 72px;
  height: 72px;
}

footer p {
  margin: 6px 0;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    order: -1;
    min-height: 0;
  }

  .service-grid,
  .rate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    gap: 4px;
    text-align: right;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-media {
    min-height: 0;
  }

  .service-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }
}
