@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --accent: #b44a2f;
  --accent-strong: #8f321e;
  --ink: #2a211d;
  --slate: #1f1a17;
  --paper: #f5efe4;
  --paper-soft: #ece2d1;
  --line: #d4c3a8;
  --forest: #5f6f52;
  --moss: #7f8f62;
  --shadow: 0 18px 48px rgba(42, 33, 29, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', 'Segoe UI', Helvetica, Arial, sans-serif;
  --transition: 200ms ease;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top right, #f0e4cb 0%, var(--paper) 35%, #f1e9dc 100%);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-strong); }

img { max-width: 100%; height: auto; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 239, 228, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.brand-logo {
  width: 88px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 0.98rem;
  z-index: 50;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 0;
  font-size: 1.1rem;
  cursor: pointer;
}

main { min-height: 70vh; }

.accommodation-main {
  padding-bottom: 102px;
}

.section {
  padding: 28px 22px;
  background: var(--paper-soft);
}

.intro-welcome {
  background: var(--paper);
  padding: 38px 22px;
}

.intro-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  max-width: 860px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

.feature-bg {
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
}

.feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("Assets/backgrounds/rose-background.webp") repeat;
  background-size: auto 90%;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--slate);
  color: #ffffff;
  isolation: isolate;
  padding: 0 0 5vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(31, 26, 23, 0) 24%, rgba(31, 26, 23, 0.28) 60%, rgba(31, 26, 23, 0.52) 100%),
    linear-gradient(160deg, rgba(95, 111, 82, 0.12), rgba(180, 74, 47, 0.1));
  z-index: 1;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform: scale(1.02);
  z-index: 0;
  opacity: 1;
  transition: opacity 1200ms ease;
}

.hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1600ms ease;
}

.hero.has-video .bg-video {
  opacity: 1;
}

.hero.has-video img.bg {
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 16px 20px 0;
  margin-top: 0;
  animation: fadeInUp 900ms ease forwards;
  opacity: 0;
  transform: translateY(12px);
}

.logo-floating {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -10%) translateY(-30px);
  width: 450px;
  height: 450px;
  display: grid;
  place-items: center;
  z-index: 3;
  animation: fadeIn 1200ms ease 120ms forwards;
  opacity: 0;
}

.logo-floating img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.65))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.6));
}

.logo-floating::before {
  content: '';
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 80%);
  filter: blur(6px);
  z-index: -1;
}

.logo-floating::before {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 72%);
  filter: blur(5px);
  z-index: -1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 18px auto 12px;
  max-width: 720px;
  color: #ffffff;
  letter-spacing: 0.4px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.85), 0 12px 26px rgba(0, 0, 0, 0.55);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.04rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
}

.hero p::before {
  content: none;
}

.hero-alt {
  position: relative;
  overflow: hidden;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 6vh;
  color: #ffffff;
  isolation: isolate;
}

.hero-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(31, 26, 23, 0.45), rgba(95, 111, 82, 0.28), rgba(143, 50, 30, 0.35));
  z-index: 1;
}

.hero-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url("Assets/home/home-hero.webp")) center/cover no-repeat;
  filter: brightness(0.78);
  z-index: 0;
}

.hero-alt .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 24px 20px 0;
  margin: 0;
}

.hero-alt h1 {
  margin: 0 0 10px;
  color: #f7f1e4;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.85), 0 12px 26px rgba(0, 0, 0, 0.65);
}

.hero-alt p {
  margin: 0 auto 18px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75), 0 10px 22px rgba(0, 0, 0, 0.55);
}

.primary-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background 220ms ease, color var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(180, 74, 47, 0.3);
}

.btn-secondary {
  background: #f1e5d4;
  color: var(--accent);
  border-color: #d8b996;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}


.section p { margin: 0 0 12px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.policy-links {
  display: grid;
  gap: 16px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  justify-content: center;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  border-radius: 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
  min-height: 48px;
  width: 100%;
}

.policy-link::before {
  content: none;
}

.policy-link:hover {
  color: var(--accent);
  border-color: rgba(180, 74, 47, 0.35);
  box-shadow: 0 16px 40px rgba(180, 74, 47, 0.14);
  transform: translateY(-2px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 16px;
  width: min(680px, 92vw);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal h3 {
  margin: 0 36px 10px 0;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: 0.04em;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin: 0;
  text-align: center;
  align-items: center;
}

.stats-panel {
  align-items: start;
}

.stats-copy {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.stats-strip {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 22px;
  margin-bottom: 18px;
  position: relative;
}

.stats-strip::after {
  content: none;
}


.stat-value {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  margin: 0;
}


.stat-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  position: relative;
  padding-bottom: 6px;
}

.stat-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(180, 74, 47, 0.85), rgba(95, 111, 82, 0.32));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.access-panel {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.access-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.muted { color: #6b6b6b; }



.feature-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  opacity: 0;
  animation: fadeInUp 800ms ease forwards;
}

.feature-card {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 10%, rgba(180, 74, 47, 0.1), transparent 40%),
              radial-gradient(circle at 80% 90%, rgba(95, 111, 82, 0.08), transparent 36%);
  pointer-events: none;
}

.feature-copy {
  display: grid;
  gap: 10px;
}

.feature-card.centerpiece .feature-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  gap: 14px;
}

.about-legacy {
  padding: 24px 24px 26px;
}

.about-legacy-head {
  text-align: center;
  margin-bottom: 14px;
}

.about-kicker {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42, 33, 29, 0.68);
}

.about-legacy-hero {
  margin: 0 auto 14px;
  max-width: 980px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-legacy-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-legacy-prose {
  max-width: 980px;
  margin: 0 auto;
}

.about-legacy-prose p {
  margin: 0 0 12px;
}

.about-legacy-aside {
  width: min(36%, 300px);
  margin: 4px 0 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-legacy-aside.right {
  float: right;
  margin-left: 20px;
}

.about-legacy-aside.left {
  float: left;
  margin-right: 20px;
}

.about-legacy-aside img {
  width: 100%;
  height: auto;
  display: block;
}

.about-legacy-clear {
  clear: both;
}

.about-legacy-bottom {
  max-width: 720px;
  margin: 10px auto 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-legacy-bottom figure {
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-legacy-bottom img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.about-legacy-action {
  display: flex;
  justify-content: center;
}

.about-legacy-signoff {
  max-width: 980px;
  margin: 10px auto 0;
}

.feature-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
}

.sublede {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(42, 33, 29, 0.9);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.sublede::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(180, 74, 47, 0.85), rgba(95, 111, 82, 0.28));
}


.feature-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: grid;
  gap: 6px;
}

.feature-points li {
  position: relative;
  padding-left: 16px;
}

.feature-points li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.stay-refresh {
  display: grid;
  gap: 10px;
}

.stay-head,
.stay-body {
  max-width: 920px;
}

.stay-head {
  margin: 0 auto;
  text-align: center;
}

.stay-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.stay-rate {
  margin: 0;
  font-size: 1.03rem;
}

.stay-list {
  margin: 0 auto;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  max-width: 780px;
  text-align: left;
}

.stay-list.muted-list {
  color: rgba(42, 33, 29, 0.8);
}

.stay-gallery {
  margin-top: 0;
}

.stay-badge {
  display: flex;
  justify-content: center;
  margin: 4px 0 8px;
}

.stay-badge img {
  width: 108px;
  height: auto;
}

.stay-tabs {
  width: min(920px, 100%);
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}

.stay-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stay-tab-btn {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  border-radius: 0;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.stay-tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(180, 74, 47, 0.45);
}

.stay-tab-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.stay-tab-panels {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 34px;
}

.stay-tab-panel {
  display: none;
  gap: 10px;
}

.stay-tab-panel.active {
  display: grid;
}

.stay-tab-panel p {
  margin: 0;
}

.stay-rate-notes {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  text-align: center;
}

.policy-modal-link {
  display: inline-block;
  margin-top: 8px;
  font-style: italic;
  text-decoration: underline;
}

.policy-modal-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.policy-modal-card {
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #ffffff;
}

.policy-modal-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}

.stay-floating-cta {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 18%);
  z-index: 2;
}

.btn-booking {
  background: #c65a2a;
  color: #ffffff;
  border: 1px solid #a74820;
  box-shadow: 0 12px 24px rgba(42, 33, 29, 0.2);
  min-width: 220px;
  letter-spacing: 0.02em;
}

.btn-booking:hover {
  background: #d0642f;
  color: #ffffff;
  transform: translateY(-2px);
}

.feature-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-image.fixed {
  height: 340px;
}

.feature-image.center {
  margin: 0 auto;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(180, 74, 47, 0.14);
}

.hero-alt.cottage-hero::after {
  -webkit-mask-image: radial-gradient(circle, #000 90%, transparent 100%);
  mask-image: radial-gradient(circle, #000 90%, transparent 100%);
}

.feature-image:hover img { transform: scale(1.03); }



footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px 34px;
  background: linear-gradient(135deg, #2b211d 0%, #3a2c24 55%, #4a3429 100%);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #ffffff;
  text-align: center;
}

footer a { color: var(--accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.gallery-4x3 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}

.gallery-4x3 figure {
  aspect-ratio: 4 / 3;
}

.gallery-4x3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-4x2 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-4x2 figure {
  aspect-ratio: 4 / 3;
}

.gallery-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-2x2 figure {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .gallery-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-4x3 figure { aspect-ratio: 4 / 3; }
  .gallery-4x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-4x2 figure { aspect-ratio: 4 / 3; }

  /* Accommodation page: make gallery thumbnails smaller and denser on mobile. */
  .accommodation-main .stay-gallery.gallery-4x2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .accommodation-main .stay-gallery.gallery-4x2 figure {
    aspect-ratio: 1 / 1;
  }
  .accommodation-main .stay-refresh {
    gap: 8px;
  }
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 14, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-backdrop.active { display: flex; }

.lightbox-frame {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms ease;
}

.lightbox-close {
  top: -12px;
  right: -12px;
  transform: none;
}

.lightbox-prev { left: -54px; }
.lightbox-next { right: -54px; }

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 720px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 8px; right: 8px; }
}

.gallery figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery figure:hover img { transform: scale(1.04); }


.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.contact-item:hover { transform: translateY(-3px); }

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(180, 74, 47, 0.14);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-weight: 700;
}

.booking-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.form-status {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(180, 74, 47, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 20px;
}

.form-status.error {
  background: rgba(180, 74, 47, 0.12);
  border-color: rgba(180, 74, 47, 0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 16px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(180, 74, 47, 0.35);
  border-color: rgba(180, 74, 47, 0.6);
}

.form-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.form-note {
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}





@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero .bg-video { display: none; }
  .hero img.bg { opacity: 1 !important; }
  .logo-floating { width: 170px; height: 170px; top: 18%; }
  .hero h1 { margin-top: 120px; }

  .about-legacy {
    padding: 18px 16px 20px;
  }

  .about-legacy-prose {
    max-width: 100%;
  }

  .about-legacy-prose p {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .about-legacy-bottom {
    max-width: 100%;
    gap: 8px;
  }

  .about-legacy-bottom img {
    height: 200px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-item {
    padding: 14px 14px;
  }

  .contact-item a,
  .contact-item span {
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .bg-video { display: none; }
  .hero img.bg { opacity: 1 !important; }
}

@media (max-width: 720px) {
  .navbar { flex-direction: row; align-items: center; }
  .nav-toggle { display: inline-flex; margin-left: auto; z-index: 2001; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 22px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
    width: min(260px, 90vw);
    z-index: 2000;
  }
  .nav-links a { width: 100%; }
  .nav-links.open { display: flex; }
  .logo-floating { width: 160px; height: 160px; top: 12%; }
  .hero { min-height: 70vh; padding: 0 0 8vh; }
  .hero-inner { padding: 20px 18px 0; margin-top: 110px; }
  .hero h1 { margin: 14px auto 10px; }
  .section { padding: 28px 18px; }
  .feature-panel { grid-template-columns: 1fr; }
.feature-panel .feature-image { order: -1; }
  .about-legacy-aside,
  .about-legacy-aside.right,
  .about-legacy-aside.left {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 12px;
  }
  .about-legacy-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .about-legacy-bottom img {
    height: 220px;
  }

  .about-legacy-signoff {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .contact-item {
    align-items: flex-start;
    gap: 10px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  .contact-item strong {
    display: inline-block;
    margin-bottom: 2px;
  }

  .feature-card iframe {
    height: 280px !important;
    border-radius: 10px !important;
  }
}

.home-about-intro .feature-panel {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.home-about-intro .feature-copy {
  max-width: 560px;
}

.home-about-intro .feature-image.fixed {
  width: min(760px, 100%);
  height: 300px;
}

.home-page .feature-image img,
.home-page .gallery img {
  transition: none;
}

.home-page .feature-image:hover img,
.home-page .gallery figure:hover img {
  transform: none;
}

main {
  background:
    linear-gradient(rgba(236, 226, 209, 0.89), rgba(236, 226, 209, 0.89)),
    url("Assets/maple Tile.webp") repeat top left;
  background-size: 581px auto;
}

.feature-bg {
  background: transparent;
}

.feature-bg::before {
  content: none;
}

.specials-wrap {
  display: grid;
  gap: 18px;
}

.special-showcase {
  display: grid;
  gap: 14px;
}

.special-head {
  display: grid;
  gap: 6px;
}

.special-type {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(42, 33, 29, 0.62);
}

.gallery-3x1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-3x1 figure {
  aspect-ratio: 4 / 3;
}

.special-description {
  margin: 0;
  max-width: 900px;
}

.special-meta {
  display: grid;
  gap: 2px;
}

.special-meta p {
  margin: 0;
}

.special-actions {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .specials-wrap {
    gap: 14px;
  }

  .special-showcase {
    gap: 12px;
    padding: 18px 16px;
  }

  .special-head {
    gap: 4px;
  }

  .special-type {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .special-description {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .special-meta {
    gap: 4px;
    font-size: 0.94rem;
  }

  .special-actions {
    justify-content: stretch;
  }

  .special-actions .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .gallery-3x1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .special-showcase .gallery-3x1 figure {
    aspect-ratio: 1 / 1;
  }

  .special-showcase {
    padding: 16px 14px;
  }
}

.reviews-feed {
  display: grid;
  gap: 18px;
}

.reviews-intro-card {
  text-align: center;
}

.reviews-key {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.review-entry {
  display: grid;
  gap: 12px;
}

.entry-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.entry-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--ink);
  background: #ffffff;
}

.entry-pill.story {
  border-color: rgba(95, 111, 82, 0.5);
  background: rgba(95, 111, 82, 0.1);
}

.entry-pill.review {
  border-color: rgba(180, 74, 47, 0.46);
  background: rgba(180, 74, 47, 0.12);
}

.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  padding: 5px 10px;
  background: #ffffff;
  text-transform: lowercase;
}

.source-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.source-airbnb .source-dot { background: #ff5a5f; }
.source-booking-com .source-dot { background: #003580; }
.source-google .source-dot { background: #4285f4; }
.source-facebook .source-dot { background: #1877f2; }
.source-leker-slaap .source-dot { background: #7f8f62; }
.source-direct .source-dot { background: #8f321e; }

.entry-text {
  margin: 0;
}

.entry-gallery {
  margin-top: 2px;
}

.entry-actions {
  display: flex;
  justify-content: flex-start;
}

.entry-link {
  font-style: italic;
  text-decoration: underline;
}
