/* ═══════════════════════════════════════════════════════════
   ΑΡΧΟΝΤΙΚΟ ΑΦΡΟΔΙΤΗ — style.css
   Premium hotel website styles
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --clr-stone:       hsl(33, 28%, 52%);
  --clr-stone-light: hsl(33, 28%, 92%);
  --clr-stone-dark:  hsl(33, 20%, 18%);
  --clr-gold:        hsl(43, 65%, 52%);
  --clr-gold-light:  hsl(43, 65%, 78%);
  --clr-cream:       hsl(38, 30%, 96%);
  --clr-ink:         hsl(33, 15%, 12%);
  --clr-ink-soft:    hsl(33, 10%, 35%);
  --clr-white:       #fff;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Outfit', system-ui, sans-serif;

  --fs-xs:   clamp(0.72rem, 0.65rem + 0.25vw, 0.82rem);
  --fs-sm:   clamp(0.87rem, 0.82rem + 0.25vw, 0.97rem);
  --fs-base: clamp(1rem,    0.95rem + 0.25vw, 1.1rem);
  --fs-md:   clamp(1.1rem,  1rem    + 0.5vw,  1.3rem);
  --fs-lg:   clamp(1.5rem,  1.2rem  + 1.5vw,  2.2rem);
  --fs-xl:   clamp(2rem,    1.4rem  + 3vw,    3.8rem);
  --fs-hero: clamp(2.8rem,  1.5rem  + 5vw,    6rem);

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px hsl(33 20% 12% / 0.12);
  --shadow-md: 0 8px 32px hsl(33 20% 12% / 0.18);
  --shadow-lg: 0 20px 60px hsl(33 20% 12% / 0.25);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --section-gap: clamp(4rem, 8vw, 9rem);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  color: var(--clr-ink);
  background: var(--clr-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul[role="list"] { list-style: none; }

/* ── Container ── */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Shared section spacing ── */
.section { padding-block: var(--section-gap); }

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Eyebrow — NO uppercase for Greek, just letter-spacing and weight */
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clr-stone);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--clr-gold-light); }

.section-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-ink);
}
.section-title.light { color: var(--clr-white); }

.section-desc {
  max-width: 60ch;
  margin-inline: auto;
  margin-top: 1rem;
  color: var(--clr-ink-soft);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-ink);
  border-color: var(--clr-gold);
}
.btn-primary:hover {
  background: hsl(43, 65%, 44%);
  border-color: hsl(43, 65%, 44%);
  box-shadow: 0 8px 24px hsl(43 65% 52% / 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
}

.btn-outline {
  background: transparent;
  color: var(--clr-stone-dark);
  border-color: var(--clr-stone);
}
.btn-outline:hover {
  background: var(--clr-stone-dark);
  color: var(--clr-white);
  border-color: var(--clr-stone-dark);
}

.btn-large { font-size: var(--fs-md); padding: 1rem 2.5rem; }

/* ════════════════════════════════
   NAVIGATION — σταθερό κρεμ/καφέ παντού
════════════════════════════════ */

/* Navbar tokens */
:root {
  --nav-bg:      hsl(38, 35%, 93%);
  --nav-brown:   hsl(33, 42%, 24%);
  --nav-brown-soft: hsl(33, 30%, 38%);
  --nav-hover-bg: hsl(38, 35%, 86%);
  --nav-border:  hsl(38, 25%, 82%);
}

#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 16px hsl(33 20% 20% / 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--nav-brown);
}
.logo-eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--nav-brown-soft);
}
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--nav-brown);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 400;
  padding: 0.4rem 0.85rem;
  color: var(--nav-brown-soft);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--nav-brown);
  background: var(--nav-hover-bg);
}
.nav-link.current {
  color: var(--nav-brown) !important;
  font-weight: 600;
  background: var(--nav-hover-bg);
}

/* Κράτηση button */
.nav-book-btn {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  background: var(--clr-gold);
  color: var(--clr-ink);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 0.5rem;
}
.nav-book-btn:hover {
  background: hsl(43, 65%, 44%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px hsl(43 65% 52% / 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-brown);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO (index.html only)
════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: hero-ken-burns 8s ease-in-out forwards;
}
@keyframes hero-ken-burns {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    hsl(33 20% 8% / 0.68) 0%,
    hsl(33 20% 8% / 0.48) 50%,
    hsl(33 20% 8% / 0.58) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  padding-inline: 1rem;
  max-width: 860px;
}

.hero-tagline {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--clr-gold-light);
  margin-bottom: 1.2rem;
  animation: fade-up 0.9s 0.3s both;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  animation: fade-up 0.9s 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero-sub {
  font-size: var(--fs-md);
  font-weight: 300;
  opacity: 0.88;
  margin-bottom: 2.5rem;
  animation: fade-up 0.9s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.9s 0.9s both;
  margin-bottom: 2rem;
}

/* ── ESPA Banners ── */
.espa-banners {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fade-up 0.9s 1.1s both;
  margin-top: 0.5rem;
}
.espa-banners a {
  display: inline-block;
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.espa-banners a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.espa-banners img {
  height: 42px;
  width: auto;
  display: block;
}

/* Lighter version for contact page */
.espa-banners--light {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.001% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-slide-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: var(--nav-h);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(33 20% 8% / 0.75) 0%, hsl(33 20% 8% / 0.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  color: var(--clr-white);
}
.page-hero-content .hero-tagline {
  animation: none;
  margin-bottom: 0.4rem;
}
.page-hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.1;
}

/* Μειώνω top padding για όλες τις inner sections μετά από page-hero */
.page-hero + .section,
.page-hero ~ .section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* ════════════════════════════════
   HIGHLIGHTS BAR
════════════════════════════════ */
.highlights-bar {
  background: var(--clr-stone-dark);
  color: var(--clr-white);
  padding: 1.2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 2rem;
  font-size: var(--fs-sm);
  font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.highlight-item:last-child { border-right: none; }
.highlight-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.section-about { background: var(--clr-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 240px;
  gap: 1rem;
  height: 520px;
}
.about-img-main { grid-column: 1; grid-row: 1 / 3; }
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary { grid-column: 2; grid-row: 2; }
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}


.about-text { padding-block: 1rem; }
.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-lead {
  font-size: var(--fs-md);
  color: var(--clr-ink-soft);
  margin-bottom: 1rem;
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.7;
}
.about-text p { color: var(--clr-ink-soft); margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin-block: 2rem;
  padding-block: 2rem;
  border-block: 1px solid var(--clr-stone-light);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat strong {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--clr-stone);
  line-height: 1;
}
.stat span {
  font-size: var(--fs-xs);
  color: var(--clr-ink-soft);
  letter-spacing: 0.04em;
}

/* Extra interior images on about page */
.about-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.about-extra-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-extra-img img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════
   ROOMS
════════════════════════════════ */
.section-rooms { background: var(--clr-cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.room-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); }

/* room badge — NO uppercase */
.room-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--clr-gold);
  color: var(--clr-ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.room-body { padding: 1.1rem 1.25rem 1.5rem; }
.room-body h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.room-body p {
  font-size: var(--fs-sm);
  color: var(--clr-ink-soft);
  margin-bottom: 0.9rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  list-style: none;
  margin-bottom: 1.5rem;
}
.room-features li {
  font-size: var(--fs-xs);
  background: var(--clr-stone-light);
  color: var(--clr-stone-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.rooms-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clr-stone-light);
}
.rooms-cta p {
  font-size: var(--fs-md);
  color: var(--clr-ink-soft);
  margin-bottom: 1.5rem;
  font-family: var(--ff-serif);
}

/* ════════════════════════════════
   GALLERY (dark bg – section on index)
════════════════════════════════ */
.section-gallery { background: var(--clr-stone-dark); }
.section-gallery .section-title { color: var(--clr-cream); }
.section-gallery .section-eyebrow { color: var(--clr-gold-light); }

/* Gallery on its own page */
.section-gallery-page { background: var(--clr-white); padding-top: 3rem; }
.section-gallery-page .section-eyebrow { color: var(--clr-stone); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  padding-inline: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: hsl(33 20% 8% / 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay span {
  color: var(--clr-white);
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  transform: scale(0.7);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--clr-white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
  backdrop-filter: blur(6px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 1.5rem; top: 50%; translate: 0 -50%; }

/* ════════════════════════════════
   AMENITIES
════════════════════════════════ */
.section-amenities { background: var(--clr-white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
  border-color: var(--clr-stone-light);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-stone-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background var(--transition);
}
.amenity-card:hover .amenity-icon { background: var(--clr-gold); }
.amenity-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-stone);
  transition: color var(--transition);
}
.amenity-card:hover .amenity-icon svg { color: var(--clr-ink); }

.amenity-card h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.amenity-card p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.55; }

/* ── Full amenity detail list (categorized) ── */
.amenities-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--clr-stone-light);
}
.amenity-category h4 {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-stone-dark);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--clr-gold);
  display: inline-block;
}
.amenity-category ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.amenity-category li {
  font-size: var(--fs-sm);
  color: var(--clr-ink-soft);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.amenity-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.7rem;
  top: 0.2em;
}

/* ════════════════════════════════
   QUOTE BAND
════════════════════════════════ */
.quote-band {
  background: var(--clr-stone-dark);
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  text-align: center;
  color: var(--clr-white);
}
.quote-band-inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.quote-icon {
  width: 40px;
  height: 30px;
  color: var(--clr-gold);
  opacity: 0.7;
}
.quote-band p {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--clr-stone-light);
}
.quote-band strong { color: var(--clr-gold); font-style: normal; font-weight: 600; }
.quote-band cite {
  font-size: var(--fs-sm);
  color: var(--clr-stone);
  letter-spacing: 0.06em;
  font-style: normal;
}

/* ════════════════════════════════
   LOCATION
════════════════════════════════ */
.section-location { background: var(--clr-cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.location-text .section-title { margin-bottom: 1.2rem; }
.location-text p { color: var(--clr-ink-soft); margin-bottom: 2rem; }

.distance-list { display: flex; flex-direction: column; gap: 0.75rem; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.distance-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.distance-item svg { width: 20px; height: 20px; color: var(--clr-gold); flex-shrink: 0; }
.distance-item div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}
.distance-item strong { font-size: var(--fs-sm); color: var(--clr-ink); }
.distance-item span { font-size: var(--fs-xs); color: var(--clr-stone); font-weight: 600; white-space: nowrap; }

.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-embed-wrap iframe { width: 100%; height: 100%; display: block; }

/* ════════════════════════════════
   CONTACT / CTA
════════════════════════════════ */
.section-contact {
  position: relative;
  padding-block: clamp(5rem, 10vw, 10rem);
  overflow: hidden;
  background: var(--clr-stone-dark);
}
.contact-standalone {
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: saturate(0.5);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(33 20% 10% / 0.9) 0%, hsl(33 20% 10% / 0.78) 100%);
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.contact-content .section-eyebrow { margin-bottom: 0.5rem; }
.contact-content .section-title { margin-bottom: 1.2rem; }

.contact-sub {
  max-width: 55ch;
  margin-inline: auto;
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-md);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.contact-actions { margin-bottom: 3rem; }

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--clr-gold); flex-shrink: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: hsl(33 20% 10%);
  color: rgba(255,255,255,0.65);
  padding-block: 3rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-brand .logo-eyebrow { color: rgba(255,255,255,0.5); }
.footer-brand .logo-name { color: var(--clr-cream); font-size: 1.6rem; }
.footer-brand p { font-size: var(--fs-xs); color: rgba(255,255,255,0.45); margin-top: 0.3rem; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: flex-end;
  padding-top: 0.3rem;
}
.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-gold); }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer-credit { color: rgba(255,255,255,0.45) !important; }
.footer-credit a {
  color: var(--clr-gold-light);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--clr-gold); }

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-slide, .hero-title, .hero-sub, .hero-tagline, .hero-actions, .espa-banners {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-toggle { display: flex; z-index: 10; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 28%;
    background: var(--nav-bg);
    border-left: 1px solid var(--nav-border);
    flex-direction: column;
    gap: 0.1rem;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    align-items: flex-start;
    z-index: 5;
    box-shadow: -8px 0 40px hsl(33 20% 20% / 0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    color: var(--nav-brown-soft) !important;
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
    width: 100%;
    border-bottom: 1px solid var(--nav-border);
    border-radius: 0;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link.current { background: transparent !important; color: var(--nav-brown) !important; }
  .nav-book-btn {
    margin: 2rem 0 0;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.4rem;
    display: block;
    border-top: 2px solid var(--nav-border);
    padding-top: 1.5rem;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr; height: 380px; }
  .about-img-secondary { display: none; }
  .about-img-main { grid-row: 1; height: 380px; }
  .about-extras { grid-template-columns: 1fr 1fr; }
  .about-extras .about-extra-img:last-child { display: none; }

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

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .highlights-bar { flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; padding: 0.6rem 0; }
  .highlight-item:last-child { border-bottom: none; }

  .about-stats { gap: 1.2rem; }

  .espa-banners { gap: 0.75rem; }
  .espa-banners img { height: 34px; }

  .page-hero { height: 260px; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact-info { flex-direction: column; align-items: center; }
  .espa-banners { flex-direction: column; align-items: center; }
  .about-extras { grid-template-columns: 1fr; }
}
