:root {
  --ink: #2b1a12;
  --muted: #765f50;
  --paper: #fff4df;
  --white: #ffffff;
  --leaf: #2f6f3f;
  --leaf-dark: #193f2b;
  --redstone: #8f3f24;
  --redstone-dark: #5f2919;
  --strawberry: #c7342f;
  --sun: #efa83a;
  --cream: #ffe7bf;
  --sky: #b9dde0;
  --mist: #f6dfbd;
  --line: rgba(95, 41, 25, 0.18);
  --shadow: 0 24px 60px rgba(95, 41, 25, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#stay,
#experiences,
#gallery,
#booking {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.92), rgba(255, 244, 223, 0.98)),
    radial-gradient(circle at top left, rgba(239, 168, 58, 0.24), transparent 34%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(43, 26, 18, 0.78), rgba(43, 26, 18, 0));
}

.brand,
.nav-links,
.header-cta,
.button,
.contact-row a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

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

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--redstone-dark);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(95, 41, 25, 0.3);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  gap: 28px;
  padding: 126px clamp(20px, 5vw, 72px) 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 221, 224, 0.72), transparent 24%),
    radial-gradient(circle at 16% 26%, rgba(239, 168, 58, 0.36), transparent 30%),
    linear-gradient(135deg, #fff4df 0%, #f7ddb8 46%, #d99a66 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 250, 241, 0.88), rgba(255, 250, 241, 0.3) 52%, rgba(95, 41, 25, 0.08)),
    linear-gradient(0deg, rgba(95, 41, 25, 0.08), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--redstone-dark);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--strawberry);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(199, 52, 47, 0.28);
}

.button.email {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--redstone-dark);
}

.button.ghost {
  border: 1px solid rgba(95, 41, 25, 0.25);
  background: rgba(255, 250, 241, 0.62);
  color: var(--redstone-dark);
  backdrop-filter: blur(12px);
}

.hero-photo {
  position: relative;
  margin: 0;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border: 10px solid rgba(255, 250, 241, 0.86);
  border-radius: 8px;
  background: var(--redstone-dark);
  box-shadow:
    0 28px 70px rgba(95, 41, 25, 0.34),
    -18px 18px 0 rgba(143, 63, 36, 0.22);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 231, 191, 0.6);
  border-radius: 4px;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(95, 41, 25, 0.8);
  backdrop-filter: blur(14px);
}

.hero-photo figcaption span {
  color: var(--cream);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  font-size: 14px;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 231, 191, 0.36);
  border-radius: 8px;
  background: rgba(95, 41, 25, 0.82);
  backdrop-filter: blur(14px);
  color: var(--white);
}

.hero-facts span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 850;
  text-align: center;
}

.hero-facts span:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.18;
}

p {
  line-height: 1.7;
}

.intro > p,
.split-copy p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8eb, #f9dfbc);
}

.feature-strip article {
  min-height: 245px;
  padding: 34px clamp(20px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-icon {
  color: var(--strawberry);
  font-weight: 900;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-image {
  min-height: 620px;
  border-radius: 8px;
  background: url("images/pool photo.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.split-copy {
  max-width: 620px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--strawberry);
  background: linear-gradient(90deg, rgba(143, 63, 36, 0.14), rgba(239, 168, 58, 0.12));
  font-weight: 750;
}

.gallery {
  background:
    linear-gradient(140deg, rgba(95, 41, 25, 0.96), rgba(25, 63, 43, 0.94)),
    var(--redstone-dark);
  color: var(--white);
}

.experiences {
  background:
    linear-gradient(180deg, #fff8eb, #f8dfb8);
}

.experiences .section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 44px rgba(95, 41, 25, 0.14);
}

.experience-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.experience-card div {
  padding: 20px;
}

.experience-card h3 {
  margin-top: 0;
}

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--redstone-dark);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(95, 41, 25, 0.78);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.92), rgba(255, 244, 223, 0.95)),
    url("images/pool.jpg") center/cover;
}

.booking-copy h2 {
  margin-bottom: 22px;
}

.contact-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--redstone);
  color: var(--white);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 850;
}

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

.booking-form input:focus {
  outline: 3px solid rgba(239, 168, 58, 0.34);
  border-color: var(--sun);
}

.full {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, var(--redstone-dark), #3a1d15 52%, var(--leaf-dark));
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.video-section {
  background: linear-gradient(180deg, #fffaf1, #fff0d4);
}

.bungalow-video {
  width: min(100%, 1040px);
  max-height: 680px;
  border-radius: 8px;
  background: var(--redstone-dark);
  box-shadow: var(--shadow);
}

.mobile-booking-bar {
  display: none;
}

.lightbox {
  width: min(94vw, 1100px);
  border: 0;
  border-radius: 8px;
  padding: 14px;
  background: var(--redstone-dark);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close {
  display: block;
  margin: 0 0 10px auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .hero-inner,
  .split,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 430px;
    order: -1;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip article:nth-child(2) {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 235px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .split-image {
    min-height: 430px;
  }
}

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

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.1;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 14px;
  }

  .hero {
    min-height: 94vh;
    padding: 108px 18px 22px;
  }

  .hero-photo {
    min-height: 310px;
    border-width: 6px;
    box-shadow:
      0 18px 42px rgba(95, 41, 25, 0.3),
      -8px 8px 0 rgba(143, 63, 36, 0.2);
  }

  .hero-photo::before {
    inset: 10px;
  }

  .hero-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-photo figcaption span,
  .hero-photo figcaption strong {
    font-size: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-facts span,
  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .feature-strip article {
    min-height: auto;
    border-bottom-color: var(--line);
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 92px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 20;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(95, 41, 25, 0.94);
    box-shadow: 0 14px 40px rgba(95, 41, 25, 0.38);
    backdrop-filter: blur(14px);
  }

  .mobile-booking-bar a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-booking-bar a:nth-child(2) {
    background: var(--sun);
    color: var(--redstone-dark);
  }
}
