:root {
  --ink: #202018;
  --muted: #6c6a5e;
  --paper: #f7f2e8;
  --white: #fffdf8;
  --leaf: #315f43;
  --moss: #71824c;
  --clay: #b75f35;
  --sun: #e2b85c;
  --line: rgba(32, 32, 24, 0.14);
  --shadow: 0 24px 60px rgba(28, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.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: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.menu-toggle {
  position: fixed;
  z-index: 30;
  top: 20px;
  left: 20px;
  display: inline-grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  background: rgba(37, 39, 30, 0.72);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.menu-toggle span {
  grid-column: 1;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle strong {
  grid-column: 2;
  grid-row: 1 / 4;
  font-size: 14px;
}

.menu-toggle:hover,
.sidebar-close:hover {
  background: rgba(255, 253, 248, 0.16);
}

body.sidebar-open .menu-toggle {
  opacity: 0;
  pointer-events: none;
}

.sidebar-overlay {
  position: fixed;
  z-index: 19;
  inset: 0;
  background: rgba(16, 18, 13, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.sidebar {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  width: 236px;
  padding: 24px 18px;
  background: #25271e;
  color: var(--white);
  border-right: 1px solid rgba(255, 253, 248, 0.12);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 220ms ease;
  box-shadow: 20px 0 70px rgba(16, 18, 13, 0.24);
}

body.sidebar-open .sidebar {
  transform: translateX(0);
}

body.sidebar-open .sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 34px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.sidebar-close {
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
}

.sidebar-nav {
  display: grid;
  gap: 7px;
}

.sidebar-nav a {
  padding: 12px 13px;
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.sidebar-nav a:hover {
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14, 19, 13, 0.66), rgba(14, 19, 13, 0));
  z-index: -1;
  pointer-events: none;
}

body.is-scrolled .site-header::before {
  background: rgba(37, 39, 30, 0.92);
  box-shadow: 0 12px 34px rgba(32, 32, 24, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(29, 34, 24, 0.32);
  backdrop-filter: blur(14px);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255, 253, 248, 0.9);
}

.nav a:hover,
.header-cta:hover {
  background: rgba(255, 253, 248, 0.16);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 86px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 11, 0.76), rgba(12, 17, 11, 0.24) 58%, rgba(12, 17, 11, 0.16)),
    linear-gradient(0deg, rgba(12, 17, 11, 0.78), rgba(12, 17, 11, 0.04) 52%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

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

.hero .eyebrow {
  color: var(--sun);
}

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

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

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 9px;
}

.hero-copy {
  max-width: 610px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 253, 248, 0.9);
}

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

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

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

.button.primary:hover {
  background: #9f4f2b;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.45);
  background: rgba(255, 253, 248, 0.09);
  color: var(--white);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 38px;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 440px;
}

.hero-note span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.section-band {
  background: var(--white);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 96px;
}

section,
#top {
  scroll-margin-top: 96px;
}

.intro-grid,
.stay-layout,
.visit-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.feature-photo {
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-panel {
  padding: clamp(10px, 2vw, 28px) 0;
}

.feature-panel > p {
  color: var(--muted);
  font-size: 18px;
}

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

.amenity-grid div {
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border: 1px solid rgba(49, 95, 67, 0.28);
  border-radius: 50%;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 800;
}

.amenity-grid strong,
.amenity-grid small {
  display: block;
}

.amenity-grid small {
  margin-top: 5px;
  color: var(--muted);
}

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

.experience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-list article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-list span {
  display: block;
  margin-bottom: 56px;
  color: var(--clay);
  font-weight: 700;
}

.experience-list p {
  color: var(--muted);
}

.signature-experiences {
  scroll-margin-top: var(--scroll-offset);
  background: #756a4d;
  color: #f7f0e8;
}

.signature-experiences .section-inner {
  padding-top: 76px;
  padding-bottom: 84px;
}

.experience-hero-copy {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.experience-hero-copy .eyebrow {
  color: #eadfce;
}

.experience-hero-copy h2 {
  color: #fffaf3;
  font-size: clamp(34px, 4vw, 58px);
}

.experience-hero-copy h3 {
  max-width: 860px;
  margin: 16px auto 18px;
  color: #efe4d6;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
}

.experience-hero-copy p {
  color: rgba(255, 250, 243, 0.9);
  font-size: 18px;
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.2);
  border-radius: 8px;
  background: #d8cec4;
  color: #514934;
  box-shadow: 0 22px 42px rgba(30, 26, 18, 0.22);
  animation: experienceFadeUp 0.7s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience-card:nth-child(2) {
  animation-delay: 0.06s;
}

.experience-card:nth-child(3) {
  animation-delay: 0.12s;
}

.experience-card:nth-child(4) {
  animation-delay: 0.18s;
}

.experience-card:nth-child(5) {
  animation-delay: 0.24s;
}

.experience-card:nth-child(6) {
  animation-delay: 0.3s;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(24, 22, 16, 0.3);
}

.experience-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

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

.experience-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #756a4d;
  color: #fffaf3;
  font-weight: 800;
}

.experience-card h3 {
  color: #75613f;
  font-size: 28px;
  line-height: 1.15;
}

.experience-card h4 {
  margin-top: 10px;
  color: #3f3f3c;
  font-size: 18px;
  line-height: 1.35;
}

.experience-card p {
  margin-top: 14px;
  color: #4f4f4d;
  line-height: 1.65;
}

.experience-card strong {
  display: block;
  margin-top: 18px;
  color: #75613f;
}

.experience-card ul {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding-left: 18px;
  color: #4f4f4d;
  line-height: 1.45;
}

.why-choose-experiences {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 76px;
}

.why-copy h2 {
  margin-bottom: 26px;
  color: #fffaf3;
  font-size: clamp(32px, 3vw, 48px);
  text-align: center;
}

.why-list {
  display: grid;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 18px 22px;
  border-radius: 8px;
  background: #d8cec4;
  color: #6d5c3b;
  font-size: 20px;
  box-shadow: 0 14px 30px rgba(29, 25, 18, 0.16);
  animation: experienceFadeUp 0.65s ease both;
}

.why-list span {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #756a4d;
  color: #fffaf3;
  font-size: 18px;
  font-weight: 800;
}

.why-choose-experiences > img {
  display: block;
  width: 100%;
  min-height: 500px;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 65px;
  box-shadow: 0 24px 52px rgba(30, 26, 18, 0.3);
}

@keyframes experienceFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.info-grid article,
.blog-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-grid span,
.blog-grid small {
  display: block;
  margin-bottom: 44px;
  color: var(--clay);
  font-weight: 800;
}

.info-grid p,
.blog-grid p,
.cuisine p {
  color: var(--muted);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.cuisine-list {
  display: grid;
  gap: 12px;
}

.cuisine-list span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:nth-child(2) {
  margin-top: 52px;
}

.carousel {
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-slide {
  display: none;
  animation: carouselFade 0.45s ease both;
}

.carousel-slide.is-active {
  display: block;
}

.gallery-carousel .carousel-track {
  min-height: 560px;
  background: #756a4d;
  box-shadow: 0 24px 54px rgba(41, 42, 31, 0.16);
}

.gallery-carousel figure {
  margin: 0;
}

.gallery-carousel img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-carousel figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 560px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(37, 39, 30, 0.78);
  color: #fffdf8;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #756a4d;
  color: #fffdf8;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: #5f5137;
  outline: none;
  transform: translateY(-2px);
}

.carousel-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(117, 106, 77, 0.35);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #756a4d;
}

.testimonials-section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.testimonial-carousel .carousel-track {
  min-height: 260px;
  background: transparent;
  box-shadow: none;
}

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

.testimonial-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(117, 100, 70, 0.16);
  border-radius: 8px;
  background: #756a4d;
  box-shadow: 0 18px 38px rgba(41, 42, 31, 0.14);
  text-align: left;
}

.testimonial-slide {
  min-height: 260px;
  padding: 0;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #fffdf8;
  font-size: 18px;
  line-height: 1.45;
}

.testimonial-card strong {
  display: block;
  color: #f5ead9;
  font-size: 18px;
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 15px;
  font-weight: 700;
}

@keyframes carouselFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visit p {
  color: var(--muted);
  font-size: 18px;
}

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

.visit-options a {
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

.visit-options a:hover {
  border-color: rgba(183, 95, 53, 0.45);
  color: var(--clay);
}

.contact {
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(41, 42, 31, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.form-status {
  padding: 14px 16px;
  border: 1px solid rgba(49, 95, 67, 0.26);
  border-radius: 8px;
  background: rgba(49, 95, 67, 0.09);
  color: var(--leaf);
  font-weight: 700;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.checkbox-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--clay);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 32, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.phone-control {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
}

.phone-control select,
.phone-control input {
  min-width: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(226, 184, 92, 0.35);
  border-color: var(--clay);
}

.saved-enquiries {
  grid-column: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
}

.saved-enquiries-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.saved-enquiries h3 {
  margin: 0;
  font-size: 18px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.enquiry-card {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.enquiry-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.enquiry-card span,
.enquiry-card p,
.enquiry-card small {
  color: var(--muted);
}

.enquiry-card p {
  margin: 0;
}

.enquiry-card small {
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 6vw, 86px);
  background: #25271e;
  color: var(--white);
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.footer a {
  color: var(--sun);
  font-weight: 700;
}

@media (min-width: 901px) {
  .site-header {
    grid-template-columns: 1fr;
    pointer-events: none;
  }

  .site-header .brand,
  .site-header .nav {
    display: none;
  }

  .header-cta {
    pointer-events: auto;
  }
}

@media (max-width: 1180px) {
  .experience-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card h3 {
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 0;
  }

  .sidebar {
    right: auto;
    bottom: 0;
    width: min(86vw, 318px);
    height: auto;
    padding: 22px 18px;
    display: block;
    overflow-y: auto;
  }

  .sidebar-brand {
    font-size: 18px;
  }

  .sidebar-brand .brand-mark {
    width: 42px;
    height: 42px;
  }

  .sidebar-nav {
    display: grid;
    gap: 7px;
  }

  .sidebar-nav a {
    padding: 12px 13px;
    font-size: 15px;
    white-space: normal;
    background: transparent;
  }

  .site-header {
    display: none;
  }

  .nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    background: rgba(32, 32, 24, 0.86);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 130px 20px 138px;
  }

  .hero-note {
    left: 20px;
    right: 20px;
    bottom: 88px;
  }

  .intro-grid,
  .stay-layout,
  .visit-grid,
  .contact,
  .experience-card-grid,
  .why-choose-experiences,
  .experience-list,
  .info-grid,
  .blog-grid,
  .cuisine-grid {
    grid-template-columns: 1fr;
  }

  .saved-enquiries {
    grid-column: 1;
  }

  .section-inner {
    padding: 68px 0;
  }

  .feature-photo,
  .feature-photo img {
    min-height: 380px;
  }

  .experience-list article {
    min-height: 190px;
  }

  .experience-card-grid {
    gap: 18px;
  }

  .experience-card img {
    height: 260px;
  }

  .why-choose-experiences {
    margin-top: 54px;
  }

  .why-choose-experiences > img {
    min-height: 360px;
    max-height: 460px;
  }

  .experience-list span,
  .info-grid span,
  .blog-grid small {
    margin-bottom: 24px;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .gallery-carousel .carousel-track,
  .gallery-carousel img {
    min-height: 360px;
    height: 360px;
  }

  .gallery-carousel figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .testimonial-slide {
    min-height: 300px;
    padding: 30px 22px;
  }

  .testimonial-slide p {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav {
    gap: 2px;
    padding: 4px;
  }

  .nav a {
    padding: 9px 9px;
    font-size: 13px;
  }

  .hero-copy,
  .intro-copy,
  .feature-panel > p,
  .visit p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .amenity-grid,
  .visit-options,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

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

/* Premium interactive additions */
.premium-stay {
  align-items: stretch;
}

.stay-preview {
  position: relative;
  isolation: isolate;
}

.stay-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 18, 0.08), rgba(20, 24, 18, 0.72));
  z-index: 1;
}

.stay-preview > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--white);
}

.stay-preview span,
.dish-detail span,
.footer-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-preview strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.stay-preview p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.82);
}

.stay-options,
.recipe-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

.detail-card {
  width: 100%;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.detail-card:hover,
.detail-card:focus-visible,
.detail-card.is-active {
  border-color: rgba(183, 95, 53, 0.48);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(41, 42, 31, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.detail-card strong,
.detail-card small {
  display: block;
}

.detail-card small {
  margin-top: 5px;
  color: var(--muted);
}

.cuisine-premium {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  align-items: start;
}

.dish-detail {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(32, 32, 24, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 54px rgba(41, 42, 31, 0.12);
}

.dish-detail img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.dish-detail div {
  padding: 24px;
}

.dish-detail > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.dish-detail h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
}

.dining-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.dining-items article {
  overflow: hidden;
  border: 1px solid rgba(32, 32, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 28px rgba(41, 42, 31, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dining-items article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(41, 42, 31, 0.14);
}

.dining-items img {
  display: block;
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.dining-items h4 {
  margin: 14px 14px 7px;
  color: #75613f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.dining-items p {
  margin: 0 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.recipe-list {
  max-height: 740px;
  overflow: auto;
  padding-right: 8px;
}

.recipe-list .detail-card {
  min-height: 58px;
  font-weight: 800;
}

.recipe-list .detail-card strong {
  color: #75613f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.15;
}

.recipe-list .detail-card small {
  font-weight: 600;
  line-height: 1.35;
}

.recipe-list .highlight-card {
  position: relative;
  border-color: rgba(226, 184, 92, 0.7);
  background: linear-gradient(135deg, #fff7df, #efe3cc);
}

.recipe-list .highlight-card::after {
  content: "Do not skip";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #756a4d;
  color: #fffaf3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-footer {
  align-items: start;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-contact a {
  color: rgba(255, 253, 248, 0.88);
  font-weight: 700;
}

@media (max-width: 900px) {
  .stay-options,
  .cuisine-premium {
    grid-template-columns: 1fr;
  }

  .recipe-list {
    max-height: none;
    padding-right: 0;
  }

  .dining-items {
    grid-template-columns: 1fr;
  }

  .premium-footer {
    display: grid;
  }
}

.dining-section {
  scroll-margin-top: var(--scroll-offset);
  background: #d8cec4;
}

.dining-inner {
  display: block;
}

.dining-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.dining-heading h2 {
  color: #75613f;
  font-size: clamp(38px, 5vw, 64px);
}

.dining-heading p:last-child {
  max-width: 820px;
  margin: 12px auto 0;
  color: #4f4f4d;
  font-size: 19px;
  line-height: 1.6;
}

.dining-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 34px;
}

.dining-tab.detail-card {
  min-height: 86px;
  padding: 13px 14px;
  border-color: rgba(117, 97, 63, 0.2);
  background: rgba(255, 253, 248, 0.76);
  text-align: center;
}

.dining-tab.detail-card strong {
  color: #75613f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
}

.dining-tab.detail-card small {
  color: #6f6d66;
  font-size: 12px;
  line-height: 1.35;
}

.dining-tab.detail-card:hover,
.dining-tab.detail-card:focus-visible,
.dining-tab.detail-card.is-active {
  border-color: rgba(117, 97, 63, 0.55);
  background: #fffaf3;
  box-shadow: 0 16px 34px rgba(41, 42, 31, 0.14);
}

.dining-tabs .highlight-card {
  position: relative;
  border-color: rgba(226, 184, 92, 0.8);
  background: linear-gradient(135deg, #fff7df, #efe3cc);
}

.dining-tabs .highlight-card::after {
  content: "Must check";
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #756a4d;
  color: #fffaf3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dining-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.dining-showcase .dish-detail {
  display: grid;
  grid-template-rows: 260px auto;
  margin: 0;
  background: #f6efe7;
}

.dining-showcase .dish-detail.is-changing {
  animation: dishDetailPop 0.34s ease both;
}

.dining-showcase .dish-detail img {
  height: 100%;
  min-height: 0;
}

.dining-showcase .dish-detail div {
  padding: 22px 24px 28px;
}

.dining-showcase .dish-detail span,
.dining-menu-panel > span {
  display: inline-block;
  margin-bottom: 9px;
  color: #75613f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dining-showcase .dish-detail h3 {
  color: #75613f;
}

.dining-showcase .dish-detail p {
  color: #3f3f3c;
  font-size: 17px;
  line-height: 1.72;
}

.dining-menu-panel {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(32, 32, 24, 0.12);
  border-radius: 8px;
  background: #756a4d;
  box-shadow: 0 22px 54px rgba(41, 42, 31, 0.14);
}

.dining-menu-panel h3 {
  margin-bottom: 18px;
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
}

.dining-menu-panel > span {
  color: #efe3cc;
}

.dining-menu-panel .dining-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.dining-items.is-populating {
  animation: menuPopulate 0.35s ease both;
}

.dining-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 243, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  color: #514934;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dining-item:hover,
.dining-item:focus-visible,
.dining-item.is-active {
  background: #fffaf3;
  box-shadow: 0 14px 30px rgba(27, 24, 18, 0.18);
  transform: translateX(-4px);
  outline: none;
}

.dining-item img {
  width: 82px;
  height: 76px;
  border-radius: 7px;
  object-fit: cover;
}

.dining-item strong,
.dining-item small {
  display: block;
}

.dining-item strong {
  color: #75613f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.15;
}

.dining-item small {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: #57544e;
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes menuPopulate {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dishDetailPop {
  from {
    opacity: 0.65;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .dining-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dining-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dining-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dining-tab.detail-card strong {
    font-size: 16px;
  }

  .dining-showcase .dish-detail {
    grid-template-rows: auto auto;
  }

  .dining-showcase .dish-detail img {
    height: 220px;
    min-height: 0;
  }

  .dining-menu-panel {
    padding: 18px;
  }

  .dining-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .dining-item img {
    width: 68px;
    height: 66px;
  }
}

/* Form, brand, and footer updates */
.aranya-highlight {
  color: var(--sun);
  text-shadow: 0 10px 28px rgba(226, 184, 92, 0.24);
}

.brand .aranya-highlight,
.sidebar-brand .aranya-highlight {
  color: #f1c96b;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* Reference-style top navigation */
.menu-toggle,
.sidebar-overlay,
.sidebar {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  color: #756446;
  background: #d6ccc3;
  box-shadow: 0 8px 26px rgba(36, 30, 20, 0.12);
  pointer-events: auto;
}

.site-header .brand {
  display: inline-flex;
  pointer-events: auto;
}

.site-header .nav {
  display: flex;
  pointer-events: auto;
}

.site-header a {
  pointer-events: auto;
}

.site-header::before,
body.is-scrolled .site-header::before {
  display: none;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 30px;
  padding: 3px 14px;
  background: #756a4d;
  color: #fffdf8;
  font-size: 16px;
  line-height: 1;
}

.contact-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-links a {
  color: #fffdf8;
  font-weight: 700;
}

.social-links {
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.social-links a:nth-child(1) {
  background: #e44986;
}

.social-links a:nth-child(2) {
  background: #174ea6;
}

.social-links a:nth-child(3) {
  background: #f10f0f;
}

.social-links a:nth-child(4) {
  background: #2374a6;
}

.social-links a:nth-child(5) {
  background: #1fa855;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 130px;
  padding: 14px clamp(12px, 2.6vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #756446;
}

.brand-mark {
  width: 122px;
  height: 86px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  color: #756446;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.05;
}

.brand small {
  color: #756446;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.45;
}

.brand .aranya-highlight {
  color: #756446;
  text-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 34px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: #756446;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.25vw, 23px);
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  background: transparent;
  color: #5f5137;
}

.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #756446;
}

.header-cta {
  justify-self: end;
  min-width: 136px;
  padding: 16px 20px;
  border: 0;
  border-radius: 7px;
  background: #756a4d;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-align: center;
}

.header-cta:hover {
  background: #675c42;
}

.hero {
  min-height: 100vh;
  padding-top: 210px;
  align-items: center;
}

.hero-content {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.05;
}

.hero-copy {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(20px, 2vw, 28px);
}

.hero-actions {
  justify-content: center;
}

.premium-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 0.8fr) minmax(260px, 1fr) auto;
  align-items: start;
}

.footer-contact p {
  max-width: 300px;
  margin-top: 8px;
}

.footer-map iframe {
  width: min(360px, 100%);
  height: 190px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  filter: saturate(0.88) contrast(1.02);
}

@media (max-width: 900px) {
  .premium-footer {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .site-header {
    display: block;
    pointer-events: auto;
  }

  .site-header .brand {
    display: inline-flex;
    pointer-events: auto;
  }

  .site-header .nav {
    display: flex;
    pointer-events: auto;
  }

  .header-main {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .brand,
  .nav,
  .header-cta {
    justify-self: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .hero {
    padding-top: 250px;
  }
}

@media (max-width: 720px) {
  .top-contact,
  .contact-links,
  .social-links {
    justify-content: center;
  }

  .top-contact {
    min-height: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .contact-links {
    gap: 8px 14px;
  }

  .header-main {
    padding: 14px 16px 16px;
  }

  .brand {
    align-items: flex-start;
    gap: 12px;
  }

  .brand-mark {
    width: 96px;
    height: 68px;
  }

  .brand small {
    display: block;
    font-size: 12px;
  }

  .nav a {
    font-size: 15px;
  }

  .header-cta {
    min-width: 120px;
    padding: 12px 16px;
    font-size: 18px;
  }

  .hero {
    padding-top: 330px;
  }
}

/* Front-page enquiry, welcome video, and accommodation sections */
section,
#top,
#contact,
#enquiry,
#enquiryForm,
.section-inner {
  scroll-margin-top: 178px;
}

.hero {
  padding-bottom: 180px;
}

.hero-note {
  display: none;
}

.hero-enquiry {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  width: min(1250px, calc(100% - 48px));
  transform: translateX(-50%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 30px;
  border: 0;
  background: #756a4d;
  color: #fffdf8;
  box-shadow: 0 24px 60px rgba(28, 22, 12, 0.28);
}

.hero-enquiry .form-status {
  grid-column: 1 / -1;
  background: rgba(255, 253, 248, 0.18);
  border-color: rgba(255, 253, 248, 0.26);
  color: #fffdf8;
}

.hero-form-grid {
  display: contents;
}

.hero-form-grid.guest-details {
  display: contents;
}

.hero-enquiry label {
  color: rgba(255, 253, 248, 0.86);
  font-size: 14px;
  text-align: center;
}

.hero-enquiry input,
.hero-enquiry select {
  min-height: 36px;
  border: 0;
  background: #d8cec5;
  color: #5f5137;
  font-size: 14px;
  padding: 8px 10px;
}

.hero-enquiry .button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: #d8cec5;
  color: #5f5137;
  font-size: 14px;
}

.hero-enquiry .button:hover {
  background: #eee5db;
}

.intro {
  background: #d6ccc3;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
}

.intro-copy h2 {
  color: #756446;
  text-align: center;
}

.intro-lead {
  color: #5f5137;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.intro-video {
  overflow: hidden;
  border-radius: 8px;
  background: #25271e;
  box-shadow: 0 26px 64px rgba(52, 43, 29, 0.2);
}

.intro-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(37, 39, 30, 0.18), rgba(37, 39, 30, 0.18)),
    url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.intro-video span {
  display: block;
  padding: 14px 18px;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 700;
}

.accommodation-section {
  background: #756a4d;
}

.accommodation-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.accommodation-heading .eyebrow {
  color: #e8d9c9;
}

.accommodation-heading h2 {
  color: #fffdf8;
}

.accommodation-heading h3 {
  margin-top: 12px;
  color: #f5ead9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
}

.accommodation-heading p:not(.eyebrow) {
  max-width: 920px;
  margin: 16px auto 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 34px);
}

.accommodation-card {
  overflow: hidden;
  border-radius: 8px;
  background: #d8cec5;
  box-shadow: 0 22px 50px rgba(24, 21, 14, 0.2);
}

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

.accommodation-card div {
  min-height: 300px;
  padding: 26px 30px;
}

.accommodation-card h3 {
  color: #756446;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.accommodation-card h4 {
  margin-top: 8px;
  color: #3f3f3c;
  font-size: 18px;
  line-height: 1.35;
}

.accommodation-card p {
  margin-top: 14px;
  color: #4f4f54;
  font-size: 16px;
  line-height: 1.58;
}

.accommodation-card strong {
  display: block;
  margin-top: 18px;
  color: #756446;
  font-weight: 800;
}

.accommodation-card ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: #4f4f54;
  font-size: 16px;
  line-height: 1.45;
}

.accommodation-note {
  grid-column: 1 / -1;
}

.accommodation-note div {
  min-height: 0;
  text-align: center;
}

.accommodation-note p {
  max-width: 980px;
  margin-inline: auto;
  font-size: 18px;
}

.accommodation-action {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.accommodation-action .button {
  border: 0;
  background: #d8cec5;
  color: #756446;
  border-radius: 7px;
  min-width: 330px;
}

.seo-links,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}

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

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

.seo-link-grid article,
.faq-grid details {
  border: 1px solid rgba(117, 100, 70, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 38px rgba(41, 42, 31, 0.08);
}

.seo-link-grid article {
  padding: 18px;
}

.seo-link-grid h3 {
  color: #756446;
  font-size: 20px;
  line-height: 1.2;
}

.seo-link-grid p {
  margin-top: 8px;
  color: #55514b;
  font-size: 14px;
  line-height: 1.45;
}

.seo-link-grid a {
  display: inline-block;
  margin-top: 12px;
  color: #756446;
  font-size: 14px;
  font-weight: 800;
}

.faq-grid details {
  padding: 20px 22px;
}

.faq-grid summary {
  color: #756446;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.faq-grid p {
  margin-top: 12px;
  color: #55514b;
  line-height: 1.62;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(41, 42, 31, 0.1);
}

.contact-panel a:not(.button) {
  color: var(--leaf);
  font-weight: 800;
}

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

/* Nearby attractions page section */
.nearby-attractions {
  background: #d6ccc3;
  scroll-margin-top: 178px;
}

.attractions-hero {
  position: relative;
  min-height: 575px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fffdf8;
  text-align: center;
}

.attractions-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transform: scale(1.03);
  animation: attractionHeroDrift 18s ease-in-out infinite alternate;
}

.attractions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.48);
}

.attractions-hero > div {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  animation: attractionFadeUp 700ms ease both;
}

.attractions-hero .eyebrow {
  color: #e8d9c9;
}

.attractions-hero h2 {
  margin-bottom: 12px;
  color: #fffdf8;
  font-size: clamp(42px, 6vw, 72px);
}

.attractions-hero p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
}

.attractions-content {
  width: min(1740px, calc(100% - 40px));
}

.attractions-intro {
  max-width: 1380px;
  margin: 0 auto 42px;
  text-align: center;
  animation: attractionFadeUp 720ms ease both;
}

.attractions-intro h2,
.attractions-closing h2 {
  color: #756446;
}

.attractions-intro p,
.attractions-closing p {
  color: #4f4f54;
  font-size: 20px;
  line-height: 1.72;
}

.attraction-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 40px);
}

.attraction-card {
  overflow: hidden;
  border-radius: 8px;
  background: #756a4d;
  color: #f3eee7;
  box-shadow: 0 20px 46px rgba(48, 40, 27, 0.22);
  animation: attractionFadeUp 720ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.attraction-card:nth-child(2n) {
  animation-delay: 80ms;
}

.attraction-card:nth-child(3n) {
  animation-delay: 160ms;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(48, 40, 27, 0.3);
}

.attraction-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.attraction-card:hover img {
  transform: scale(1.05);
}

.attraction-card div {
  padding: 24px 28px 28px;
}

.attraction-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  color: #fffdf8;
  font-weight: 800;
}

.attraction-card h3 {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.attraction-card h4 {
  margin: 0 0 14px;
  color: #e8d9c9;
  font-size: 16px;
  line-height: 1.35;
}

.attraction-card p {
  color: rgba(255, 253, 248, 0.84);
  font-size: 16px;
  line-height: 1.62;
}

.attraction-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.attraction-card li {
  color: rgba(255, 253, 248, 0.9);
  font-size: 15px;
  line-height: 1.4;
}

.attraction-card strong {
  color: #fffdf8;
}

.attractions-closing {
  width: min(1100px, 100%);
  margin: 72px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(117, 100, 70, 0.28);
  background: transparent;
  text-align: center;
  animation: attractionFadeUp 720ms ease both;
}

@keyframes attractionFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes attractionHeroDrift {
  from {
    transform: scale(1.03) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-bottom: 300px;
  }

  .hero-form-grid,
  .accommodation-grid,
  .seo-link-grid,
  .faq-grid,
  .testimonial-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .accommodation-card div {
    min-height: 220px;
  }

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

@media (max-width: 720px) {
  section,
  #top,
  #contact,
  #enquiry,
  #enquiryForm,
  .section-inner {
    scroll-margin-top: 300px;
  }

  .hero {
    min-height: 1180px;
    padding-bottom: 560px;
  }

  .hero-enquiry {
    width: min(420px, calc(100% - 28px));
    bottom: 24px;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .seo-link-grid,
  .faq-grid,
  .testimonial-card-grid {
    grid-template-columns: 1fr;
  }

  .phone-control {
    grid-template-columns: 1fr;
  }

  .hero-enquiry label {
    font-size: 16px;
  }

  .intro-video {
    border-radius: 8px;
  }

  .accommodation-card img {
    height: 220px;
  }

  .accommodation-action .button {
    width: 100%;
    min-width: 0;
  }

  .attractions-hero {
    min-height: 460px;
  }

  .attraction-card-grid {
    grid-template-columns: 1fr;
  }

  .attractions-intro p,
  .attractions-closing p {
    font-size: 16px;
  }

  .attraction-card img {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .attractions-hero img,
  .attractions-hero > div,
  .attractions-intro,
  .attraction-card,
  .attractions-closing {
    animation: none;
  }

  .attraction-card,
  .attraction-card img {
    transition: none;
  }
}

/* Keep the main menu in the header on smaller screens. */
@media (max-width: 900px) {
  .site-header {
    display: block;
    pointer-events: auto;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .site-header .brand,
  .site-header .nav {
    display: flex;
    pointer-events: auto;
  }

  .brand,
  .nav {
    justify-self: center;
  }

  .nav {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: center;
    flex-wrap: wrap;
    background: transparent;
  }

  .nav a {
    padding: 6px 0;
  }
}
