/* ============================================================
   TINLOUGHOUSE — MAIN STYLESHEET
   Atlantic Edge aesthetic: coastal, editorial, refined
   Mobile-first, WCAG 2.1 AA target
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colour Palette */
  --c-night:     #0e1214;   /* near-black slate */
  --c-slate:     #1c2830;   /* deep ocean slate */
  --c-slate-mid: #2e3f4b;   /* mid slate */
  --c-stone:     #4a5a64;   /* stone grey */
  --c-fog:       #8fa0ab;   /* fog/mist */
  --c-sand:      #e8ddd0;   /* warm sand */
  --c-cream:     #f5f0ea;   /* off-white cream */
  --c-white:     #ffffff;

  --c-teal:      #2a8a7e;   /* Atlantic teal — primary accent */
  --c-teal-lt:   #34a898;   /* lighter teal */
  --c-teal-dk:   #1e6b62;   /* darker teal */
  --c-gold:      #c9954a;   /* warm gold accent */

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'Josefin Sans', 'Trebuchet MS', sans-serif;

  --size-xs:  0.75rem;
  --size-sm:  0.875rem;
  --size-base:1rem;
  --size-lg:  1.125rem;
  --size-xl:  1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 2rem;
  --size-4xl: 2.5rem;
  --size-5xl: 3.5rem;
  --size-6xl: 5rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container: 72rem;
  --radius:    4px;
  --radius-md: 8px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 550ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.7;
  color: var(--c-slate);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2.5px solid var(--c-teal);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--c-teal);
  color: var(--c-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-family: var(--font-ui);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 0; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--size-2xl), 4vw, var(--size-4xl));
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-night);
  margin-bottom: var(--space-md);
}

.body-lg {
  font-size: var(--size-lg);
  line-height: 1.75;
  color: var(--c-stone);
  margin-bottom: var(--space-md);
}

.body-text {
  font-size: var(--size-base);
  color: var(--c-stone);
  margin-bottom: var(--space-md);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section-pad {
  padding-block: var(--space-xl);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-lg); }
  .section-pad { padding-block: var(--space-2xl); }
}
@media (min-width: 1024px) {
  .section-pad { padding-block: var(--space-3xl); }
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: var(--size-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: all var(--dur-base) var(--ease-out-expo);
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-teal);
  color: var(--c-white);
  box-shadow: 0 2px 16px rgba(42,138,126,0.22);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42,138,126,0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out-expo),
    transform var(--dur-slow) var(--ease-out-expo);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-right {
  transform: translateX(-28px);
}
.reveal-right.revealed {
  transform: none;
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  background: linear-gradient(to bottom, rgba(14,18,20,0.75) 0%, rgba(14,18,20,0) 100%);
  transition: background var(--dur-base), box-shadow var(--dur-base), padding var(--dur-base);
}

.site-header.scrolled {
  background: rgba(14, 18, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding-block: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
  height: 72px;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--c-teal);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links li { line-height: 1; }

.nav-links a {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast);
  padding-block: 0.25rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--c-teal-lt);
  transition: right var(--dur-base) var(--ease-out-expo);
}
.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--c-teal) !important;
  color: var(--c-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius);
  letter-spacing: 0.08em;
  transition: background var(--dur-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--c-teal-lt) !important; }

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out-expo), opacity var(--dur-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
body.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 18, 20, 0.98);
  backdrop-filter: blur(16px);
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-md);
  align-items: flex-start;
  justify-content: center;
  animation: slideDown var(--dur-slow) var(--ease-out-expo) forwards;
}
body.nav-open .nav-links a {
  font-size: var(--size-xl);
  color: var(--c-white);
  letter-spacing: 0.05em;
}
body.nav-open .nav-links .nav-cta {
  margin-top: var(--space-sm);
  font-size: var(--size-base) !important;
  padding: 0.875rem 2rem !important;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    gap: var(--space-lg) !important;
    align-items: center !important;
  }
  .nav-links a { font-size: var(--size-xs) !important; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--c-night);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Placeholder when no hero image */
.hero-no-img {
  background:
    linear-gradient(160deg, var(--c-teal-dk) 0%, var(--c-slate) 35%, var(--c-night) 100%);
  animation: heroPlaceholderShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroPlaceholderShimmer {
  from { background: linear-gradient(160deg, var(--c-teal-dk) 0%, var(--c-slate) 35%, var(--c-night) 100%); }
  to   { background: linear-gradient(160deg, #1a5c55 0%, #1e2f3a 35%, var(--c-night) 100%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(14,18,20,0.92) 0%,
      rgba(14,18,20,0.6)  40%,
      rgba(14,18,20,0.25) 70%,
      rgba(14,18,20,0.1)  100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--space-md) var(--space-xl);
  padding-top: 120px;
}

.hero-tag {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-teal-lt);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.2s var(--ease-out-expo) both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, var(--size-6xl));
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s 0.35s var(--ease-out-expo) both;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(var(--size-base), 3vw, var(--size-xl));
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  animation: fadeUp 0.8s 0.5s var(--ease-out-expo) both;
}

.hero-proposition {
  font-family: var(--font-body);
  font-size: clamp(var(--size-base), 2.5vw, var(--size-lg));
  color: rgba(255,255,255,0.8);
  max-width: 40rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.6s var(--ease-out-expo) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s 0.75s var(--ease-out-expo) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeUp 0.8s 0.9s var(--ease-out-expo) both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--size-3xl);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-md);
  color: rgba(255,255,255,0.5);
  z-index: 2;
  display: none;
  transition: color var(--dur-fast);
  animation: fadeUp 1s 1.1s var(--ease-out-expo) both;
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }

.scroll-dot {
  animation: scrollBob 2s 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@media (min-width: 600px) {
  .hero-scroll { display: block; }
}

@media (min-width: 768px) {
  .hero-content {
    padding-bottom: var(--space-2xl);
    padding-inline: var(--space-lg);
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── ABOUT ── */
.about {
  background: var(--c-cream);
}

.about-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(42,138,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
  color: var(--c-teal);
}

.highlight-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--c-night);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.highlight-item span {
  display: block;
  font-size: var(--size-sm);
  color: var(--c-stone);
}

.about-image {
  position: relative;
}

.about-img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-slate-mid);
  max-height: 600px;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-in-out);
}

.about-img-frame:hover img { transform: scale(1.03); }

/* Placeholder when no about image */
.img-placeholder::after {
  content: 'Image Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: var(--size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.about-img-accent {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  background: rgba(42,138,126,0.08);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(42,138,126,0.15);
  z-index: 0;
}

@media (min-width: 768px) {
  .about-img-accent { display: block; }
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-image { order: 2; }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 55% 40%;
    gap: var(--space-2xl);
  }
}

/* ── GALLERY ── */
.gallery {
  background: var(--c-night);
  overflow: hidden;
}

.gallery .section-label { color: var(--c-teal-lt); }
.gallery .section-heading { color: var(--c-white); }

.gallery-carousel {
  position: relative;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--space-md);
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 calc(90vw - 2rem);
  max-width: 480px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-slate);
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-in-out);
}
.gallery-slide:hover img { transform: scale(1.04); }

/* Placeholder slide */
.slide-placeholder {
  background:
    linear-gradient(135deg,
      var(--c-slate-mid) 0%,
      var(--c-slate)     100%
    );
}
.slide-placeholder::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,18,20,0.8);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  backdrop-filter: blur(8px);
  display: none;
}
.gallery-btn:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
  transform: translateY(-50%) scale(1.08);
}
.gallery-btn svg { width: 20px; height: 20px; }
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

@media (min-width: 600px) {
  .gallery-btn { display: flex; }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--space-md) 0;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  transition: all var(--dur-fast);
  cursor: pointer;
}
.gallery-dot.active {
  background: var(--c-teal-lt);
  transform: scale(1.3);
  width: 20px;
  border-radius: 4px;
}

@media (min-width: 600px) {
  .gallery-track { padding-inline: var(--space-lg); }
  .gallery-slide { flex: 0 0 420px; }
}
@media (min-width: 1024px) {
  .gallery-slide { flex: 0 0 520px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,11,13,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  animation: fadein var(--dur-base) var(--ease-out-expo);
}

.lightbox[hidden] { display: none; }

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--dur-fast);
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-nav:hover { background: var(--c-teal); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── AMENITIES ── */
.amenities {
  background: var(--c-white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.amenity-card {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--c-cream);
  border: 1.5px solid rgba(14,18,20,0.07);
  transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,18,20,0.08);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  background: rgba(42,138,126,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.amenity-icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-teal);
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--c-night);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: var(--size-sm);
  color: var(--c-stone);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.amenity-list li {
  font-size: var(--size-sm);
  color: var(--c-slate-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.amenity-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-teal);
  flex-shrink: 0;
}

.amenities-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-md);
  background: rgba(201,149,74,0.08);
  border: 1px solid rgba(201,149,74,0.2);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  color: var(--c-stone);
  font-size: var(--size-sm);
}
.amenities-note svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 600px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── LOCATION ── */
.location {
  background: var(--c-slate);
}

.location .section-label { color: var(--c-teal-lt); }
.location .section-heading { color: var(--c-white); }
.location .body-lg { color: rgba(255,255,255,0.7); }

.location-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.places-heading {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal-lt);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.places-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.places-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: var(--size-sm);
  font-family: var(--font-ui);
}
.places-list li svg {
  width: 14px;
  height: 14px;
  color: var(--c-teal-lt);
  flex-shrink: 0;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-slate-mid);
  border: 2px solid rgba(255,255,255,0.06);
}

.map-frame iframe {
  display: block;
  filter: grayscale(20%) contrast(0.9);
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

/* ── CONTACT ── */
.contact {
  background:
    linear-gradient(
      160deg,
      var(--c-night)   0%,
      var(--c-slate)   60%,
      var(--c-slate-mid) 100%
    );
}

.contact .section-label { color: var(--c-teal-lt); }
.contact .section-heading { color: var(--c-white); }
.contact .body-text { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all var(--dur-base) var(--ease-out-expo);
  cursor: pointer;
}
.contact-detail:hover {
  background: rgba(42,138,126,0.15);
  border-color: rgba(42,138,126,0.35);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(42,138,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--c-teal-lt);
}

.contact-detail-label {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-fog);
  margin-bottom: 1px;
}

.contact-detail-value {
  display: block;
  font-size: var(--size-sm);
  color: var(--c-white);
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--c-night);
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
}

.footer-brand p {
  font-size: var(--size-sm);
  line-height: 1.7;
  margin-block: var(--space-sm);
  color: rgba(255,255,255,0.5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo .logo-mark {
  width: 30px;
  height: 30px;
  font-size: var(--size-lg);
}

.footer-logo .logo-text {
  font-size: var(--size-base);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-teal-lt);
  transition: color var(--dur-fast);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-social:hover { color: var(--c-white); }

.footer-contact h3,
.footer-nav h3 {
  font-family: var(--font-ui);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-sm);
}

.footer-contact ul,
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a,
.footer-nav a {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast);
}
.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--c-teal-lt);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: var(--size-xs);
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ── PRINT ── */
@media print {
  .site-header,
  .hero-scroll,
  .gallery-btn,
  .nav-toggle { display: none !important; }
  .hero { min-height: auto; padding-block: 2rem; }
  body { background: white; color: black; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
