:root {
  --bg: #f7f2ea;
  --text: #1f2623;
  --muted: #66706a;
  --dark: #1f2a24;
  --dark-soft: #2c3a32;
  --accent: #9b6233;
  --accent-dark: #754820;
  --card: #fffaf2;
  --line: rgba(31, 38, 35, 0.14);
  --shadow: 0 24px 70px rgba(31, 38, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(rgba(22, 29, 25, 0.30), rgba(22, 29, 25, 0.48)),
    url("images/tipi-hot-tub-sunset.jpg") center center / cover no-repeat;
  color: white;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(24, 32, 27, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

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

.nav-toggle {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 1.7rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 7vw, 96px) 70px;
}

.hero-content {
  max-width: 790px;
}

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

.site-header .eyebrow {
  color: #f4c894;
}

h1, h2, h3 {
  line-height: 1.05;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  max-width: 980px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.45);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 18px;
}

.hero-text {
  max-width: 650px;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 15px rgba(0,0,0,0.45);
}

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

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  border-color: rgba(255,255,255,0.72);
  color: white;
  background: rgba(0,0,0,0.14);
}

.section {
  padding: 96px clamp(20px, 7vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.card,
.location-box,
.booking-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.feature-list,
.location-box ul {
  margin: 0;
  padding-left: 22px;
}

.feature-list li,
.location-box li {
  margin-bottom: 10px;
}

.dark {
  background: var(--dark);
  color: white;
}

.dark .eyebrow {
  color: #f4c894;
}

.dark p {
  color: rgba(255,255,255,0.82);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.image-feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
}

.image-feature.reverse .feature-image {
  order: 2;
}

.image-feature.reverse .feature-copy {
  order: 1;
}

.feature-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy {
  max-width: 680px;
}

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

.gallery-grid figure {
  margin: 0;
  background: var(--card);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(31, 38, 35, 0.14);
  border: 1px solid var(--line);
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 15px 18px 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--text);
}

.booking {
  background:
    linear-gradient(rgba(247, 242, 234, 0.9), rgba(247, 242, 234, 0.9)),
    linear-gradient(135deg, #9b6233, #1f2a24);
}

.booking-card {
  max-width: 760px;
  margin: 0 auto;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--text);
}

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

textarea {
  resize: vertical;
}

form .button {
  width: fit-content;
}

.footer {
  padding: 28px clamp(20px, 7vw, 96px);
  background: #151c18;
  color: rgba(255,255,255,0.82);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.footer p {
  margin: 4px 0;
}

.fine-print {
  color: rgba(255,255,255,0.55);
}

@media (max-width: 1000px) {
  .nav-links {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    background: rgba(24, 32, 27, 0.96);
    padding: 20px;
    border-radius: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .split,
  .image-feature,
  .image-feature.reverse,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-feature.reverse .feature-image,
  .image-feature.reverse .feature-copy {
    order: initial;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
