/* ==========================================================================
   Atabey Luxury Paradise — stylesheet
   ========================================================================== */

:root {
  /* Brand palette */
  --c-blue: #003893;
  --c-red: #CE1126;
  --c-warm-white: #FFFDF8;
  --c-cream: #FAFAF7;
  --c-navy: #081B33;
  --c-gold: #D4AF37;
  --c-sand: #F1EBDD;
  --c-charcoal: #292B29;

  /* Type */
  --f-serif: 'Cormorant Garamond', serif;
  --f-sans: 'DM Sans', sans-serif;

  /* Layout */
  --header-h: 84px;
  --pad-x: clamp(20px, 5vw, 96px);
  --max-w: 1400px;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  color: var(--c-charcoal);
  background-color: var(--c-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-navy);
  color: var(--c-warm-white);
  padding: 12px 20px;
  z-index: 999;
  font-family: var(--f-sans);
  font-size: 14px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold);
  display: inline-block;
}

.t-display {
  font-family: var(--f-serif);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--c-warm-white);
}
.t-display em,
.t-h2 em,
.t-h3 em {
  font-style: italic;
  font-weight: 300;
}

.t-h2 {
  font-family: var(--f-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-navy);
}

.t-h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--c-navy);
}

.t-nav {
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.t-body {
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-charcoal);
  font-weight: 400;
}

.t-meta {
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(41, 43, 41, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--c-red);
  color: var(--c-warm-white);
}
.btn-primary:hover { background-color: #a80e1f; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(255, 253, 248, 0.5);
  color: var(--c-warm-white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-gold-outline {
  border: 1px solid var(--c-gold);
  color: var(--c-navy);
  background: transparent;
}
.btn-gold-outline:hover {
  background: var(--c-gold);
  color: var(--c-navy);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: linear-gradient(to bottom, rgba(8, 27, 51, 0.55), transparent);
  transition: background-color 0.5s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background-color: rgba(8, 27, 51, 0.96);
  backdrop-filter: blur(8px);
  height: 72px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header .logo-link img {
  height: 68px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .logo-link img { height: 54px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.nav-link {
  color: var(--c-warm-white);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background-color: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover { color: var(--c-gold); }

.header-book-btn {
  background-color: var(--c-red);
  color: var(--c-warm-white);
  padding: 12px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-warm-white);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: var(--c-navy);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { color: var(--c-warm-white); font-family: var(--f-serif); font-size: 1.75rem; }
.mobile-nav a.mobile-book {
  color: var(--c-red);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--c-navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,27,51,0.92) 0%, rgba(8,27,51,0.35) 45%, rgba(8,27,51,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x) 96px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  margin-top: 22px;
  max-width: 900px;
}

.hero-sub {
  margin-top: 24px;
  max-width: 480px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-title-line { display: block; opacity: 0; transform: translateY(24px); animation: heroIn 1s var(--ease) forwards; }
.hero-title-line:nth-child(2) { animation-delay: 0.15s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background-color: var(--c-navy);
  padding: 12px var(--pad-x);
  display: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.sticky-cta .btn { width: 100%; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 11vw, 160px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-tight {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.section-sand { background-color: var(--c-sand); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-navy {
  background-color: var(--c-navy);
  color: var(--c-warm-white);
}

.intro-band {
  padding: clamp(64px, 10vw, 120px) var(--pad-x);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.intro-band p {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--c-navy);
}

/* ---------- Two-column grid sections ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.grid-2.reverse .text-col { order: 2; }
.grid-2.reverse .media-col { order: 1; }

.section-label { margin-bottom: 20px; }

.details-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  border-top: 1px solid rgba(41,43,41,0.12);
  padding-top: 24px;
}
.details-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(41,43,41,0.1);
  padding-bottom: 14px;
}
.detail-label {
  font-family: var(--f-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(41,43,41,0.55);
  font-weight: 700;
}
.detail-val {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-navy);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}
.media-frame.wide { aspect-ratio: 4 / 3; }
.media-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.media-frame:hover img { transform: scale(1.045); }

.media-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg, rgba(0,56,147,0.05), rgba(0,56,147,0.05) 10px, rgba(0,56,147,0.09) 10px, rgba(0,56,147,0.09) 20px);
  border: 1px dashed rgba(0,56,147,0.35);
  text-align: center;
  padding: 24px;
}
.media-frame.placeholder span {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  font-weight: 700;
}

/* ---------- Room cards ---------- */
.room-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.room-card {
  border-top: 2px solid var(--c-gold);
  padding: 28px 22px;
  background-color: var(--c-cream);
}
.room-card h3 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.room-card p {
  font-size: 0.9rem;
  color: rgba(41,43,41,0.7);
}

/* ---------- Amenity icon grid ---------- */
.amenity-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.amenity-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
}
.amenity-icon svg { width: 20px; height: 20px; }
.amenity-item h4 {
  font-family: var(--f-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--c-navy);
}

/* ---------- Community cards ---------- */
.community-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.community-card {
  background-color: var(--c-warm-white);
  padding: 32px 24px;
  border-bottom: 3px solid var(--c-red);
}
.community-card .amenity-icon { margin-bottom: 20px; }
.community-card h3 {
  font-family: var(--f-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.community-card p { font-size: 0.92rem; color: rgba(41,43,41,0.72); }

.community-grid-3 { grid-template-columns: repeat(3, 1fr); }

.btn-gold-pill {
  background-color: var(--c-gold);
  color: var(--c-navy);
  border-radius: 999px;
  padding: 15px 30px;
}
.btn-gold-pill:hover { background-color: #e3c15c; }

/* ---------- Info strip (compact location + CTA bar) ---------- */
.info-strip {
  background-color: var(--c-navy);
  padding: 32px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
}
.info-strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-strip-item .t-meta { color: rgba(255,253,248,0.5); }
.info-strip-item .t-nav { color: var(--c-warm-white); font-size: 13px; letter-spacing: 0.05em; }
.info-strip .btn { margin-left: clamp(0px, 3vw, 24px); }

/* ---------- Local experience categories ---------- */
.category-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-chip {
  padding: 28px 20px;
  border: 1px solid rgba(0,56,147,0.18);
  text-align: center;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.category-chip:hover { border-color: var(--c-gold); background-color: var(--c-sand); }
.category-chip span {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--c-navy);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(8,27,51,0.75), transparent);
  color: var(--c-warm-white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .g-label,
.gallery-item:focus-visible .g-label { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,27,51,0.95);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--c-warm-white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,253,248,0.4);
  padding: 10px 18px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,253,248,0.4);
  color: var(--c-warm-white);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.lightbox-nav:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,253,248,0.7);
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .lightbox { padding: 20px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  padding: 36px var(--pad-x);
  border-top: 1px solid rgba(41,43,41,0.12);
  border-bottom: 1px solid rgba(41,43,41,0.12);
}
.trust-bar span {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--c-gold);
}

/* ---------- Booking section ---------- */
.booking-section {
  background-color: var(--c-sand);
  text-align: center;
  padding-bottom: clamp(64px, 9vw, 120px);
}
.booking-section .t-h2 { max-width: 700px; margin: 0 auto; }
.booking-section .t-body { max-width: 560px; margin: 20px auto 0; }
.lodgify-widget-wrap {
  margin: 48px auto 0;
  max-width: 900px;
  background-color: var(--c-warm-white);
  border-radius: 12px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 20px 50px rgba(8,27,51,0.08);
}

/* ---------- Reviews ---------- */
.reviews-section { text-align: center; }
.reviews-empty {
  margin-top: 24px;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(41,43,41,0.55);
}
.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 28px;
  background: var(--c-cream);
  text-align: left;
}
.review-stars { color: var(--c-gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 0.95rem; color: var(--c-charcoal); margin-bottom: 16px; }
.review-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(41,43,41,0.55); }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: clamp(96px, 14vw, 180px) var(--pad-x);
}
.final-cta .t-display { max-width: 800px; margin: 0 auto; }
.final-cta .t-body { color: rgba(255,253,248,0.8); max-width: 480px; margin: 20px auto 0; }
.final-cta .btn { margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--c-cream);
  color: var(--c-navy);
  padding: 56px var(--pad-x) 28px;
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 44px; }
.footer-tagline {
  margin-top: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-gold);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(41,43,41,0.6);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-navy);
  transition: color 0.3s var(--ease);
}
.footer-social a:hover { color: var(--c-red); }

.footer-legal {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(41,43,41,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(41,43,41,0.55);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--c-navy); }
/* ---------- Interior page hero (Contact / Legal pages) ---------- */
.page-hero {
  background-color: var(--c-navy);
  color: var(--c-warm-white);
  padding: calc(var(--header-h) + clamp(56px, 9vw, 120px)) var(--pad-x) clamp(56px, 8vw, 96px);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero .t-h2 { color: var(--c-warm-white); margin-top: 18px; }
.page-hero .page-updated {
  display: block;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.6);
}
.page-hero .page-intro {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(255, 253, 248, 0.85);
}

/* ---------- Legal / prose content ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
}
.legal-content .t-h3 {
  margin-top: 44px;
  margin-bottom: 16px;
}
.legal-content .t-h3:first-child { margin-top: 0; }
.legal-content .t-body { margin-top: 14px; }
.legal-content .t-body:first-of-type { margin-top: 0; }
.legal-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-charcoal);
  padding-left: 22px;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background-color: var(--c-gold);
}
.legal-content a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: #a80e1f; }
.legal-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(41,43,41,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.legal-links a {
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--c-navy);
  text-decoration: none;
}
.legal-links a:hover { color: var(--c-red); }

/* ---------- Contact form ---------- */
.contact-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
}
.contact-form {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(41,43,41,0.65);
}
.form-field input,
.form-field textarea {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-charcoal);
  background-color: var(--c-cream);
  border: 1px solid rgba(41,43,41,0.15);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
}
.form-note {
  margin-top: 24px;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(41,43,41,0.65);
}
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Booking disclosure ---------- */
.booking-disclosure {
  margin-top: 24px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(41,43,41,0.7);
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.booking-disclosure a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }
.booking-disclosure a:hover { color: #a80e1f; }

@media (max-width: 720px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2.reverse .text-col,
  .grid-2.reverse .media-col { order: unset; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .info-strip { justify-content: flex-start; }
  .info-strip .btn { margin-left: 0; width: 100%; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .site-header .logo-link img { height: 50px; }
  .site-header.scrolled .logo-link img { height: 46px; }
  .sticky-cta { display: block; }
  .hero-content { padding-bottom: 132px; }
  .details-list { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  body { padding-bottom: 64px; } /* room for sticky CTA */
}
