:root {
  --ink: #1c2518;
  --muted: #5d6758;
  --paper: #fbfcf7;
  --soft: #eef4e9;
  --sage: #5a8139;
  --sage-dark: #355322;
  --leaf: #5a8139;
  --leaf-light: #e6f0df;
  --clay: #8a9f63;
  --white: #ffffff;
  --line: rgba(53, 83, 34, 0.16);
  --shadow: 0 18px 46px rgba(33, 57, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(53, 83, 34, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.92;
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 72px) 80px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 48, 18, 0.78), rgba(47, 75, 31, 0.34) 48%, rgba(47, 75, 31, 0.07)),
    linear-gradient(0deg, rgba(29, 48, 18, 0.28), rgba(29, 48, 18, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #dfeecf;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.3rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.65rem;
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

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

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

.button.primary {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(40, 75, 26, 0.26);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  background: var(--sage-dark);
  white-space: nowrap;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.info-strip > div {
  min-height: 118px;
  padding: 26px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 6vw, 72px);
}

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

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

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

.pricing-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  background: #f9fbf7;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:first-child {
  padding-top: 0;
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.price-list strong {
  color: var(--leaf);
  font-size: 1.04rem;
  white-space: nowrap;
}

.service-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  background: var(--soft);
}

.about-copy p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-panel {
  display: grid;
  gap: 12px;
}

.about-panel span {
  padding: 18px 20px;
  border-left: 4px solid var(--leaf);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 76px) clamp(20px, 6vw, 72px);
  color: var(--white);
  background: var(--leaf);
}

.booking-section p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 1fr);
  gap: 20px;
}

.contact-details,
.map-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-details {
  padding: clamp(24px, 4vw, 36px);
}

.contact-details p {
  margin: 0 0 24px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details strong {
  display: block;
  margin-bottom: 6px;
}

.map-link {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(rgba(40, 73, 25, 0.42), rgba(40, 73, 25, 0.82)),
    radial-gradient(circle at 28% 32%, #dfe8d6 0 11%, transparent 12%),
    linear-gradient(135deg, #71954c, #e3ecd9 44%, #5a8139);
}

.map-link span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.map-link small {
  max-width: 420px;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #1c2518;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(24, 31, 24, 0.78), rgba(24, 31, 24, 0.36));
  }

  .info-strip,
  .pricing-grid,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 760px;
    padding-top: 100px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .button {
    width: 100%;
  }

  .info-strip > div {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
