:root {
  --ink: #1d2522;
  --muted: #5f6860;
  --paper: #fffaf2;
  --surface: #ffffff;
  --sage: #657f62;
  --leaf: #294c3a;
  --marigold: #d4942c;
  --rose: #a74755;
  --line: rgba(29, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(29, 37, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 28, 22, 0.78), rgba(13, 28, 22, 0));
}

.brand,
.nav-links,
.hero-actions,
.contact-methods {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.94rem;
}

.header-action,
.primary-button,
.secondary-button,
.booking-form button {
  border-radius: 999px;
  font-weight: 750;
}

.header-action {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #16231c;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 22, 17, 0.88) 0%, rgba(10, 22, 17, 0.54) 44%, rgba(10, 22, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 22, 17, 0.58) 0%, rgba(10, 22, 17, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 80px) 48px;
  color: #fff;
}

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

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

h1 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.primary-button {
  background: var(--marigold);
  color: #1f170d;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: var(--surface);
}

.intro > p,
.contact > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.split,
.packages,
.gallery {
  background:
    linear-gradient(180deg, rgba(101, 127, 98, 0.08), rgba(255, 250, 242, 0)),
    var(--paper);
}

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

.space-grid,
.package-layout,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.space-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-card,
.package-layout article,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.space-card {
  min-height: 240px;
  padding: 24px;
}

.space-card p,
.package-layout p,
.form-note {
  color: var(--muted);
}

.space-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
}

.packages {
  background: var(--leaf);
  color: #fff;
}

.packages .section-kicker,
.packages .package-layout p {
  color: #f1c879;
}

.package-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-layout article {
  min-height: 210px;
  padding: 28px;
  color: var(--ink);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 190px 190px;
}

.gallery-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--marigold));
  color: #fff;
  font-weight: 800;
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.25));
  background-size: 34px 34px, auto;
}

.gallery-tile span {
  position: relative;
  font-size: 1.4rem;
}

.tile-large {
  grid-row: span 2;
  background-image: linear-gradient(145deg, rgba(41, 76, 58, 0.88), rgba(212, 148, 44, 0.7)), url("assets/sarada-lawn-hero.png");
  background-size: cover;
  background-position: center;
}

.tile-warm {
  background: linear-gradient(135deg, #a74755, #d4942c);
}

.tile-green {
  background: linear-gradient(135deg, #294c3a, #657f62);
}

.tile-fresh {
  grid-column: span 2;
  background: linear-gradient(135deg, #fffaf2, #657f62 48%, #294c3a);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: #fff;
}

.contact-methods {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  color: var(--leaf);
  font-weight: 750;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.booking-form button {
  height: 50px;
  border: 0;
  color: #fff;
  background: var(--rose);
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.72);
  background: #18221e;
}

footer p {
  margin: 0;
}

footer p:first-child {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .space-grid,
  .package-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-action {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    margin: 0 18px 28px;
  }

  .hero-stats,
  .space-grid,
  .package-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 360px;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .tile-large,
  .tile-fresh {
    grid-column: auto;
    grid-row: auto;
  }

  footer {
    display: block;
  }
}
