:root {
  --bg: #fbf6ed;
  --ink: #1f2720;
  --muted: #667066;
  --brand: #315f3a;
  --brand-dark: #24472b;
  --sand: #eadcc7;
  --card: #ffffff;
  --line: rgba(31, 39, 32, 0.12);
  --shadow: 0 24px 80px rgba(42, 35, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 246, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-weight: 700;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 76vh;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.booking-hero {
  min-height: 660px;
  background: url("assets/hero-rafting.jpg") center center / cover no-repeat;
  place-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.hero h1 {
  position: relative;
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-copy-centered {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 170px;
  color: #fff;
  text-align: center;
}

.hero-copy-centered .eyebrow {
  color: #f8b17a;
}

.hero-copy-centered h1 {
  max-width: none;
  font-size: clamp(42px, 6vw, 86px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.booking-widget {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 118px;
  display: grid;
  grid-template-columns: minmax(220px, 1.55fr) minmax(150px, 1fr) minmax(150px, 1fr) auto;
  gap: 22px;
  align-items: end;
  width: min(800px, calc(100% - 36px));
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.76);
  transform: translateX(-50%);
}

.booking-widget label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 15px;
}

.booking-widget select,
.booking-widget input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: #111;
  font: inherit;
}

.booking-widget button {
  min-height: 48px;
  border: 1px solid #ff7a33;
  border-radius: 6px;
  padding: 0 24px;
  background: #f56d15;
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-widget button:hover {
  background: #fff;
  color: #f56d15;
}

.intro,
.section,
.site-footer {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  background: var(--brand-dark);
  color: #fff;
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.intro .eyebrow {
  color: #cde4b8;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  gap: 24px;
}

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

.card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(42, 35, 25, 0.08);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

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

.location-card div,
.room-card h3,
.room-card p {
  padding: 0 22px;
}

.location-card div {
  padding-top: 22px;
  padding-bottom: 24px;
}

.room-card h3 {
  padding-top: 22px;
}

.room-card p {
  padding-bottom: 24px;
}

.warm {
  background: #f4eadb;
}

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

.amenity-grid span {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 28px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: 32px;
  align-items: center;
  background: var(--brand);
  color: #fff;
}

.contact .eyebrow {
  color: #dcefc9;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
}

.contact-panel a {
  padding: 16px 18px;
  background: #fff;
  color: var(--brand-dark);
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: #151a16;
  color: #fff;
}

.site-footer img {
  width: 150px;
  margin-bottom: 14px;
  filter: brightness(1.18);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .hero:not(.booking-hero),
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-cta {
    justify-self: start;
  }

  .cards.three,
  .amenity-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-hero {
    min-height: 740px;
  }

  .booking-widget {
    bottom: 48px;
    grid-template-columns: 1fr 1fr;
    width: min(620px, calc(100% - 30px));
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 138px;
  }

  .cards.three,
  .amenity-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .booking-hero {
    min-height: 760px;
  }

  .hero-copy-centered {
    margin-bottom: 250px;
  }

  .booking-widget {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
