/* ============================================================
   STAY ON THE ROCK — styles.css
   Premium short-term rentals · St. John's, Newfoundland
   ============================================================ */

/* ─── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy-deep:    #0a0f1e;
  --navy-mid:     #0d1b2a;
  --navy-surface: #112236;
  --navy-card:    #0f1f33;
  --navy-border:  #1a3050;
  --navy-hover:   #1e3a5a;

  --gold-rich:    #c9a84c;
  --gold-light:   #e8c96d;
  --gold-pale:    #f3e0a0;
  --gold-muted:   #8a6d2a;
  --gold-glow:    rgba(201, 168, 76, 0.18);

  --white:        #ffffff;
  --white-90:     rgba(255,255,255,0.90);
  --white-70:     rgba(255,255,255,0.70);
  --white-50:     rgba(255,255,255,0.50);
  --white-20:     rgba(255,255,255,0.20);
  --white-10:     rgba(255,255,255,0.10);
  --white-06:     rgba(255,255,255,0.06);

  --slate-400:    #94a3b8;
  --slate-500:    #64748b;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:   7rem;
  --container-max: 1200px;
  --container-px: 1.5rem;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:     0.18s;
  --dur-mid:      0.35s;
  --dur-slow:     0.65s;

  /* Shadows */
  --shadow-card:  0 4px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-gold:  0 0 40px rgba(201,168,76,0.25);
  --shadow-hover: 0 8px 48px rgba(0,0,0,0.6);
}

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

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

body {
  background-color: var(--navy-deep);
  color: var(--white-90);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 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; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold-rich); color: var(--navy-deep); }

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

em {
  font-style: italic;
  color: var(--gold-light);
}

p { color: var(--white-70); }
strong { color: var(--white-90); font-weight: 600; }

/* ─── 4. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur-mid) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white-90);
  border: 1.5px solid var(--white-20);
}
.btn--ghost:hover {
  border-color: var(--gold-rich);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-muted);
}
.btn--outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--submit {
  font-size: 0.95rem;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

/* ─── 6. ANIMATIONS ─────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay via data-delay attribute */
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.30s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }

/* ─── 7. NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--dur-mid) var(--ease-out),
              padding var(--dur-mid) var(--ease-out),
              backdrop-filter var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.5);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--dur-fast);
}
.nav__logo:hover { color: var(--gold-light); }

.nav__logo-mark {
  font-size: 1.4rem;
  color: var(--gold-rich);
  line-height: 1;
}

.nav__logo-text { color: inherit; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  text-decoration: none;
}
.nav__link:hover {
  color: var(--white);
  background: var(--white-06);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.nav__hamburger:hover { background: var(--white-06); }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-90);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-mid) var(--ease-out);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── 8. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem var(--container-px) 6rem;
}

/* Animated gradient orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__gradient-orb--1 {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(13, 27, 42, 0.9) 0%, rgba(10, 15, 30, 0) 70%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.hero__gradient-orb--2 {
  width: 600px;
  height: 600px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(10, 15, 30, 0) 70%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.hero__gradient-orb--3 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(17, 34, 54, 0.8) 0%, rgba(10, 15, 30, 0) 70%);
  animation: orbDrift3 28s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, -60px) scale(1.1); }
}
@keyframes orbDrift3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.15); }
}

/* Grain overlay for premium texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero__title em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-70);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--white-06);
  border: 1px solid var(--white-10);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white-70);
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.55;
  animation: hintFade 3s ease-in-out 2s forwards;
}

.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-70);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-50), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

@keyframes hintFade {
  0%   { opacity: 0; }
  30%  { opacity: 0.55; }
  80%  { opacity: 0.55; }
  100% { opacity: 0; pointer-events: none; }
}

/* ─── 9. TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-surface);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item__icon {
  font-size: 1rem;
  color: var(--gold-rich);
  letter-spacing: -0.03em;
}

.trust-item__label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-70);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--navy-border);
}

/* ─── 10. PROPERTIES SECTION ────────────────────────────────── */
.properties {
  background: var(--navy-mid);
}

.properties__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Property Card */
.property-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid);
  position: relative;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-hover);
}

.property-card--featured {
  border-color: var(--gold-muted);
}
.property-card--featured:hover {
  border-color: var(--gold-rich);
  box-shadow: var(--shadow-gold), var(--shadow-hover);
}

.property-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.property-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

/* Placeholder scenes (artistic representations) */
.property-card__placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.placeholder-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Penthouse placeholder — city skyline at dusk */
.property-card__placeholder--penthouse { background: linear-gradient(180deg, #0a1628 0%, #1a2d4a 50%, #0d1b2a 100%); }
.property-card__placeholder--penthouse .placeholder-sky {
  flex: 1;
  background: linear-gradient(180deg, #0f1e3a 0%, #1e3d6a 40%, #c9704c 70%, #e89650 100%);
}
.property-card__placeholder--penthouse .placeholder-cityline {
  height: 40%;
  background: 
    linear-gradient(to top, #0a0f1e 0%, transparent 100%),
    repeating-linear-gradient(90deg, #0f1827 0px, #0f1827 8px, #12202f 8px, #12202f 18px, #0a1422 18px, #0a1422 28px, #1a2d45 28px, #1a2d45 34px, #0f1827 34px, #0f1827 45px);
  border-top: 2px solid rgba(201,168,76,0.15);
}

/* Suite placeholder — modern interior */
.property-card__placeholder--suite { background: var(--navy-card); }
.property-card__placeholder--suite .placeholder-interior {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(160deg, #1a2d45 0%, #0d1b2a 60%, #0a0f1e 100%);
}

/* Heritage placeholder */
.property-card__placeholder--heritage { background: #0d1520; }
.property-card__placeholder--heritage .placeholder-heritage-bg {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, #1e2d1a 0%, #2d3a1e 30%, #1a2820 60%, #0a1510 100%);
}

.placeholder-label {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  white-space: nowrap;
  background: rgba(10,15,30,0.6);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Card body */
.property-card__body {
  padding: 1.75rem;
}

.property-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.property-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.property-card__floor {
  font-size: 0.78rem;
  color: var(--gold-rich);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.property-card__price {
  text-align: right;
  flex-shrink: 0;
}
.property-card__price-from {
  display: block;
  font-size: 0.68rem;
  color: var(--white-50);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.property-card__price-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.property-card__price-unit {
  font-size: 0.75rem;
  color: var(--white-50);
  margin-left: 2px;
}

.property-card__description {
  font-size: 0.87rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.property-card__amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
  margin-bottom: 1.5rem;
}
.property-card__amenities li {
  font-size: 0.8rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Direct booking callout */
.properties__direct-booking {
  margin-top: 3rem;
}

.direct-booking-callout {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.direct-booking-callout__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.direct-booking-callout__text {
  flex: 1;
  min-width: 200px;
}
.direct-booking-callout__text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.direct-booking-callout__text span {
  font-size: 0.88rem;
  color: var(--white-70);
}

/* ─── 11. ABOUT SECTION ─────────────────────────────────────── */
.about {
  background: var(--navy-deep);
  overflow: hidden;
}

.about__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(13,27,42,0.8) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* Map card */
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__map-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about__map-placeholder {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(13,27,42,1) 0%, rgba(10,15,30,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated map background grid */
.about__map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-dot {
  width: 14px;
  height: 14px;
  background: var(--gold-rich);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--gold-rich);
}

.map-rings {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.map-rings::before,
.map-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: mapRing 3s ease-out infinite;
}
.map-rings::before {
  inset: -20px;
  animation-delay: 0s;
}
.map-rings::after {
  inset: -44px;
  animation-delay: 0.8s;
}

@keyframes mapRing {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.map-label {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-90);
  white-space: nowrap;
  z-index: 2;
}

.map-sub {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-rich);
  white-space: nowrap;
  z-index: 2;
}

/* Stat cards */
.about__stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid);
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-muted);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

/* About content */
.about__content {}
.about__content .section-eyebrow { text-align: left; }
.about__content .section-title   { text-align: left; margin-bottom: 1.75rem; }

.about__text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--white-70);
  margin-bottom: 1.1rem;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--white-90); }
.about__text em     { color: var(--gold-light); font-style: italic; }

.about__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white-06);
  border-radius: var(--radius-md);
  border: 1px solid var(--white-10);
}

.about__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white-90);
  margin-bottom: 0.2rem;
}
.about__feature span {
  font-size: 0.82rem;
  color: var(--white-50);
}

/* ─── 12. GALLERY ───────────────────────────────────────────── */
.gallery {
  background: var(--navy-mid);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  grid-template-areas:
    "large large small1"
    "small2 small3 tall";
}

.gallery-item { 
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item--large { 
  grid-area: large; 
  aspect-ratio: 16/9;
}
.gallery-item--tall  { 
  grid-area: tall; 
  aspect-ratio: 3/4; 
  grid-row: span 1;
}

/* Assign grid areas for standard items */
.gallery-item:nth-child(1) { grid-area: large; }
.gallery-item:nth-child(2) { grid-area: small1; }
.gallery-item:nth-child(3) { grid-area: small2; }
.gallery-item:nth-child(4) { grid-area: small3; }
.gallery-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(6) { grid-area: tall; aspect-ratio: unset; min-height: 280px; }

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover .gallery-item__placeholder {
  transform: scale(1.04);
}

/* Gallery scenes */
.gi-scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gi-sky { width: 100%; height: 55%; }
.gi-sky--sunset { background: linear-gradient(180deg, #0a1628 0%, #1a2d60 30%, #c05530 65%, #e08040 100%); }
.gi-sky--day    { background: linear-gradient(180deg, #0f2040 0%, #2050a0 60%, #4080d0 100%); }
.gi-sky--moody  { background: linear-gradient(180deg, #050c18 0%, #0d1e35 40%, #1a3050 100%); }

.gi-horizon {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.gi-buildings {
  height: 45%;
  background:
    linear-gradient(to top, #0a0f1e 0%, rgba(10,15,30,0.7) 100%),
    repeating-linear-gradient(90deg,
      #0f1827 0px, #0f1827 10px,
      #12202f 10px, #12202f 22px,
      #0a1422 22px, #0a1422 35px,
      #1a2d45 35px, #1a2d45 43px,
      #0f1827 43px, #0f1827 58px
    );
}

/* Bedroom */
.gi-scene--bedroom { background: linear-gradient(160deg, #1a2d45 0%, #0d1b2a 100%); }
.gi-wall { 
  width: 100%; 
  height: 60%; 
  background: linear-gradient(180deg, #1e3050 0%, #112236 100%);
  border-bottom: 2px solid rgba(201,168,76,0.1);
}
.gi-bed-silhouette {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 45%;
  background: linear-gradient(180deg, #0d1b2a 0%, #0a0f1e 100%);
  border-radius: 4px 4px 0 0;
  border-top: 3px solid rgba(201,168,76,0.15);
}

/* Jellybean row */
.gi-jellybean {
  height: 45%;
  background:
    linear-gradient(to top, #0a0f1e 0%, transparent 100%),
    repeating-linear-gradient(90deg,
      #c0392b 0px, #c0392b 18px,
      #e67e22 18px, #e67e22 36px,
      #f39c12 36px, #f39c12 54px,
      #27ae60 54px, #27ae60 72px,
      #2980b9 72px, #2980b9 90px,
      #8e44ad 90px, #8e44ad 108px
    );
}

/* Heritage */
.gi-scene--heritage { background: linear-gradient(160deg, #1e2d1a 0%, #0f1a0d 100%); }
.gi-wood-floor {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: repeating-linear-gradient(
    2deg,
    #3d2b1a 0px, #3d2b1a 6px,
    #4a3522 6px, #4a3522 12px,
    #362516 12px, #362516 18px
  );
}
.gi-heritage-wall {
  width: 100%;
  height: 65%;
  background: linear-gradient(180deg, #1e2d1a 0%, #2a3d20 100%);
  border-bottom: 2px solid rgba(201,168,76,0.1);
}

/* Kitchen */
.gi-scene--kitchen { background: #0d1b2a; }
.gi-counter {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, #1e3050 0%, #112236 100%);
  border-top: 2px solid rgba(201,168,76,0.2);
}
.gi-cabinets {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background: 
    linear-gradient(180deg, #1a2d45 0%, #0d1b2a 100%),
    repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(201,168,76,0.08) 80px, rgba(201,168,76,0.08) 82px);
}

/* Signal Hill */
.gi-hill {
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(20,40,60,0.9) 100%);
  position: relative;
  clip-path: polygon(0 100%, 0 60%, 20% 30%, 40% 20%, 60% 15%, 80% 25%, 100% 45%, 100% 100%);
  background-color: #1a2d3a;
}
.gi-ocean {
  height: 20%;
  background: linear-gradient(180deg, #0d1b2a 0%, #0a1520 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
}

/* Gallery overlay */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.gallery__caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--white-50);
  margin-top: 2rem;
  font-style: italic;
}

/* ─── 13. BOOKING SECTION ───────────────────────────────────── */
.booking {
  background: var(--navy-deep);
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.booking__bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  filter: blur(60px);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* Booking info panel */
.booking__info {}
.booking__info .section-eyebrow { text-align: left; }
.booking__info .section-title   { text-align: left; margin-bottom: 1.25rem; }

.booking__info-text {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.booking__perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.booking__perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--white-06);
  border-radius: var(--radius-md);
  border: 1px solid var(--white-10);
}

.booking__perk-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 2px; }
.booking__perk strong { display: block; font-size: 0.9rem; color: var(--white-90); margin-bottom: 0.15rem; }
.booking__perk span  { font-size: 0.8rem; color: var(--white-50); }

.booking__contact-direct {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
}
.booking__contact-direct p {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 0.5rem;
}

.booking__email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--dur-fast), gap var(--dur-fast);
}
.booking__email-link:hover {
  color: var(--gold-pale);
  gap: 0.7rem;
}

/* Booking form */
.booking__form-wrap {
  position: relative;
}

.booking-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.booking-form__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--navy-border);
}
.booking-form__header h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.booking-form__header p {
  font-size: 0.88rem;
  color: var(--white-50);
}

/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-70);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-surface);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--white-90);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-20);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
  background: var(--navy-hover);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12);
}

/* Select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white-90);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Date inputs */
.form-group input[type="date"] {
  color-scheme: dark;
}

/* Error text */
.form-error {
  font-size: 0.75rem;
  color: #f87171;
  min-height: 1em;
  display: block;
}

/* Form success / global error */
.form-success {
  text-align: center;
  padding: 2rem;
  animation: fadeInScale 0.4s var(--ease-out);
}
.form-success__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin: 0 auto 1.25rem;
  font-weight: 700;
}
.form-success h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--white-70); }

.form-error-global {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(224,85,85,0.1);
  border: 1px solid rgba(224,85,85,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #fca5a5;
  text-align: center;
}
.form-error-global a {
  color: var(--gold-light);
  text-decoration: underline;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── 14. CONTACT SECTION ───────────────────────────────────── */
.contact {
  background: var(--navy-mid);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid),
              box-shadow var(--dur-mid);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-muted);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.contact-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.contact-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.contact-card a {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--dur-fast);
}
.contact-card a:hover { color: var(--gold-pale); }
.contact-card p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.65;
}

/* St. John's info block */
.contact__stjohns { margin-top: 1rem; }

.stjohns-info {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.stjohns-info h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.stjohns-info p {
  font-size: 0.95rem;
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.stjohns-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.stjohns-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: var(--white-06);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--white-70);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.stjohns-tags span:hover {
  border-color: var(--gold-muted);
  color: var(--gold-light);
}

/* ─── 15. FOOTER ────────────────────────────────────────────── */
.footer {
  background: #060b16;
  border-top: 1px solid var(--navy-border);
  padding-top: 4rem;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--navy-border);
}

.footer__brand {}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__logo:hover { color: var(--gold-light); }
.footer__logo .nav__logo-mark { font-size: 1.25rem; }

.footer__brand p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 240px;
}

.footer__email {
  font-size: 0.85rem;
  color: var(--gold-rich);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--dur-fast);
}
.footer__email:hover { color: var(--gold-light); }

.footer__nav h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 1.1rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav ul li a {
  font-size: 0.85rem;
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: inline-block;
}
.footer__nav ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--white-30, rgba(255,255,255,0.3));
  line-height: 1.5;
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--white-50);
  font-style: italic;
}

/* ─── 16. MOBILE / RESPONSIVE ───────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py: 5rem;
  }

  .properties__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .booking__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "large large"
      "small1 small2"
      "small3 tall";
  }
  .gallery-item:nth-child(5) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(6) { grid-column: 2; grid-row: 3; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
    --container-px: 1.25rem;
  }

  /* Nav mobile */
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 5rem 1.5rem 2rem;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--navy-border);
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease-out);
    overflow-y: auto;
    z-index: 999;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links li { width: 100%; }
  .nav__link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
  }
  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
  .nav__hamburger { display: flex; z-index: 1000; }

  /* Mobile menu overlay */
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
  }
  .nav__overlay.active { display: block; }

  /* Hero */
  .hero { padding: 7rem 1.25rem 5rem; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__badges { gap: 0.5rem; }

  /* Trust bar */
  .trust-bar__inner {
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    flex-wrap: nowrap;
  }
  .trust-divider { display: none; }

  /* Properties */
  .properties__grid { max-width: 100%; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .gallery-item,
  .gallery-item--large,
  .gallery-item--tall {
    grid-area: unset !important;
    grid-column: unset !important;
    grid-row: unset !important;
    aspect-ratio: 16/9;
    min-height: unset;
  }

  /* Booking form */
  .booking-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__brand p { max-width: 100%; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  /* Direct booking callout */
  .direct-booking-callout {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .about__stat-cards { grid-template-columns: repeat(3, 1fr); }
  .about__map-card { aspect-ratio: 3/2; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  h2 { font-size: 1.8rem; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .booking-form { padding: 1.25rem; }
  .about__stat-cards { grid-template-columns: 1fr 1fr; }
  .about__stat-cards .stat-card:last-child {
    grid-column: span 2;
  }
  .trust-bar__inner { padding: 0 var(--container-px) 0.25rem; }
}

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

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