@import url("https://fonts.cdnfonts.com/css/tex-gyre-termes");

:root {
  --bg: #f5efe5;
  --bg-deep: #ead8c3;
  --ink: #1a1612;
  --ink-soft: #4f4336;
  --accent: #b24c2c;
  --accent-dark: #7f2c17;
  --card: #fffaf2;
  --line: #d6c2ab;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(178, 76, 44, 0.16), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(122, 87, 55, 0.18), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, #f9f4ec 35%, #f4ecde 100%);
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 2.5rem);
  background: #ffffff;
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(79, 67, 54, 0.2);
}

.brand-block {
  display: grid;
  gap: 0.2rem;
}

.site-logo-link {
  display: inline-block;
  width: fit-content;
}

.site-logo {
  display: block;
  width: auto;
  height: clamp(34px, 4.2vw, 52px);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.top-nav a.active {
  border-color: var(--accent-dark);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.75s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: none;
  position: absolute;
  inset: 0;
  background: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  color: #fff;
  padding: clamp(1.2rem, 2.2vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(23, 18, 14, 0.45);
}

.hero-home .hero-content h1 {
  text-align: center;
}

.hero-controls {
  position: absolute;
  left: clamp(1rem, 2.2vw, 2.4rem);
  right: clamp(1rem, 2.2vw, 2.4rem);
  bottom: clamp(1rem, 2.2vw, 1.8rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-nav {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(18, 14, 11, 0.45);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.5rem 0.72rem;
  cursor: pointer;
}

.hero-nav:hover {
  background: rgba(178, 76, 44, 0.85);
}

.hero-dots {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: "TeXGyreTermes", "Times New Roman", serif;
  line-height: 1.15;
  margin-top: 0.5rem;
}

h1 {
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  margin-bottom: 0.7rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.button,
.ghost-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button:hover,
.nav-cta:hover {
  background: var(--accent-dark);
}

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

.intro,
.journey,
.stay,
.final-cta {
  width: min(1100px, calc(100% - 2rem));
  margin: 4.5rem auto;
}

.section {
  width: min(1100px, calc(100% - 2rem));
  margin: 4rem auto;
}

.area-hero {
  width: min(1100px, calc(100% - 2rem));
  margin: 3rem auto 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.area-hero-text {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(1rem, 2vw, 1.8rem);
}

.area-hero h1 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
}

.area-hero-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.photo-note {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.area-section {
  width: min(1100px, calc(100% - 2rem));
  margin: 3rem auto;
}

.section-head {
  margin-bottom: 1rem;
}

.place-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.drinks-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.place-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(26, 22, 18, 0.08);
  padding: 0.9rem;
}

.place-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.7rem;
}

.stacked-list {
  margin: 0.5rem 0;
  padding-left: 1.1rem;
}

.local-tip {
  margin-top: 1rem;
  background: #f0dfcc;
  border: 1px solid #d0b08b;
  padding: 0.75rem 0.9rem;
}

.sub-hero {
  width: min(980px, calc(100% - 2rem));
  margin: 3.5rem auto 2.2rem;
}

.sub-hero h1 {
  margin-bottom: 0.5rem;
}

.journey-cards {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.1rem;
  box-shadow: 0 8px 18px rgba(26, 22, 18, 0.08);
}

.story-index {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story-card a,
.info-card a {
  color: var(--accent-dark);
  font-weight: 600;
}

.split-panel {
  width: min(1100px, calc(100% - 2rem));
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--line);
  background: var(--card);
}

.split-copy {
  padding: clamp(1rem, 2vw, 2rem);
}

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.feature-layout,
.list-grid,
.booking-layout {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.feature-layout,
.list-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.booking-layout {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.info-card-compact h2 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.info-card-compact p,
.info-card-compact a {
  font-size: 0.95rem;
}

.info-card-compact p a {
  font-size: inherit;
}

.button-compact {
  padding: 0.6rem 0.95rem;
  font-size: 0.9rem;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.gallery-grid {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-section {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 3rem;
}

.gallery-section-head {
  margin-bottom: 1rem;
}

.gallery-section .gallery-grid {
  width: 100%;
}

.gallery-grid figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  padding: 0.7rem;
  color: var(--ink-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(10, 8, 7, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #111;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.enquiry-form {
  display: grid;
  gap: 0.5rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.6rem 0.7rem;
  font: inherit;
  background: #fff;
}

.enquiry-form .button {
  border: none;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.intro {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-grid {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: 0 8px 18px rgba(26, 22, 18, 0.08);
}

.feature-card .feature-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 1px solid var(--line);
  margin: 0 0 0.9rem;
}

.feature-tag {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0.2rem 0 0.6rem;
}

.journey {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: linear-gradient(140deg, var(--bg-deep), #f5e8d8);
  border: 1px solid rgba(79, 67, 54, 0.2);
}

.journey-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.journey-steps article {
  background: rgba(255, 255, 255, 0.65);
  padding: 1rem;
}

.journey-steps span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.stay {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr;
}

.stay-content,
.parking-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.stay ul {
  padding-left: 1.2rem;
  margin: 0.8rem 0 0;
}

.final-cta {
  text-align: center;
  padding: clamp(1.3rem, 3vw, 2.3rem);
  background: linear-gradient(110deg, #291f18, #4a3222);
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(79, 67, 54, 0.25);
  margin-top: 2rem;
  padding: 1.2rem 1rem 2rem;
  text-align: center;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.footer-links a {
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--accent-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .stay {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-controls {
    bottom: 0.7rem;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .area-hero {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header {
    position: static;
  }

  .hero-controls {
    left: 0.7rem;
    right: 0.7rem;
    flex-wrap: wrap;
  }

  .hero-dots {
    margin-left: 0;
  }

  .lightbox-image {
    max-height: 68vh;
  }
}
