/* ===========================================================
   Scottburgh Views — Stylesheet
   Modern, clean, beachy — light & airy with ocean blues
   =========================================================== */

:root {
  /* Palette */
  --ink:           #0f2236;   /* deep navy, body text */
  --ink-soft:      #3b4f63;   /* secondary text */
  --sea-deep:      #0d4f6e;   /* deep ocean */
  --sea:           #2384b8;   /* primary brand */
  --sea-light:     #7fc6e3;   /* sky-meets-sea */
  --sea-tint:      #e6f3f9;   /* pale wash */
  --sand:          #f5ead8;   /* warm sand */
  --sand-deep:     #e0c993;   /* tan accent */
  --coral:         #e8704a;   /* sunset CTA */
  --coral-soft:    #fff1ec;
  --whatsapp:      #25d366;
  --whatsapp-dark: #128c7e;
  --bg:            #fbfaf7;   /* off-white background */
  --paper:         #ffffff;
  --line:          rgba(15,34,54,.10);

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--sea); color: #fff; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: -.005em; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sea-deep);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--sea-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(15,34,54,.4);
}
.btn-primary:hover { background: var(--sea-deep); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(13,79,110,.5); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.1rem 0;
  transition: background .3s var(--ease), backdrop-filter .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(251,250,247,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  transition: color .3s;
}
.site-header.scrolled .brand { color: var(--ink); }
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 14px -4px rgba(13,79,110,.5);
  display: block;
}
.site-header.scrolled .brand-mark {
  box-shadow: 0 2px 10px -2px rgba(15,34,54,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.brand-tag {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding: .35rem 0;
  transition: color .3s;
}
.site-header.scrolled .site-nav a { color: var(--ink); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: background .3s, transform .25s var(--ease);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--ink); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px;
  padding: 0;
  position: relative;
  backdrop-filter: blur(8px);
}
.site-header.scrolled .nav-toggle { background: rgba(15,34,54,.08); border-color: var(--line); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  transition: transform .3s, opacity .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,34,54,.55) 0%, rgba(15,34,54,.15) 35%, rgba(15,34,54,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 4rem;
  max-width: 880px;
}
.hero .eyebrow { color: var(--sand); }
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em { color: var(--sand); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ INTRO ============ */
.intro { padding: clamp(5rem, 10vw, 8rem) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.3);
}

/* Slideshow variant: stack images, crossfade via .is-active class */
.intro-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.3);
}
.intro-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 7s var(--ease);
  will-change: opacity, transform;
}
.intro-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Dot indicators */
.intro-slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.intro-slideshow-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transition: background .3s, transform .3s;
}
.intro-slideshow-dots span.is-active {
  background: #fff;
  transform: scale(1.4);
}
.intro-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.intro-stats > div { display: flex; flex-direction: column; }
.intro-stats strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sea-deep);
  line-height: 1;
}
.intro-stats span {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .5rem;
}

/* ============ SECTION HEADERS ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-head .lede { margin: 0 auto; }

/* ============ FLATS ============ */
.flats {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--sea-tint) 100%);
}
.flat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 9vw, 7rem);
}
.flat:last-child { margin-bottom: 0; }
.flat-reverse { direction: rtl; }
.flat-reverse > * { direction: ltr; }

.flat-gallery { display: grid; gap: .75rem; }
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.35);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .8s var(--ease);
  cursor: zoom-in;
}
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.gallery-thumbs img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(15,34,54,.35);
}

.gallery-placeholder { position: relative; }
.placeholder-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(15,34,54,.85);
  color: #fff;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.flat-body { padding: 0; }
.unit-tag {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.flat h3 { margin-bottom: .5rem; }
.flat-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.flat-features {
  list-style: none;
  padding: 1.25rem 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flat-features li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.flat-features span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.flat-features strong {
  font-weight: 500;
  color: var(--ink);
  font-size: .98rem;
}

/* ============ AWARD CARD (in flat body) ============ */
.award-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem .9rem .9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px -16px rgba(15,34,54,.3);
}
.award-card img {
  width: 110px;
  height: auto;
  aspect-ratio: 1280 / 900;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.award-text strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .1rem;
}
.award-text span {
  font-size: .85rem;
  color: var(--ink-soft);
}
@media (max-width: 480px) {
  .award-card { flex-direction: column; align-items: flex-start; }
  .award-card img { width: 100%; max-width: 240px; }
}

/* ============ AMENITIES ============ */
.amenities {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper);
}
.amenity-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.amenity-feature-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.35);
}
.amenity-feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: opacity .45s var(--ease), transform 7s var(--ease);
  will-change: opacity;
}
.amenity-feature-image.is-changing img {
  opacity: 0;
}
.amenity-feature-text { transition: opacity .35s var(--ease); }
.amenity-feature-text.is-changing { opacity: 0; }
.amenity-feature-text h3 { margin-top: .5rem; }
@media (max-width: 960px) {
  .amenity-feature { grid-template-columns: 1fr; }
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.amenity {
  /* Button reset */
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;

  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s, background .25s;
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -28px rgba(15,34,54,.35);
  border-color: var(--sea-light);
}
.amenity:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
}
.amenity.is-active {
  background: #fff;
  border-color: var(--sea-deep);
  box-shadow: 0 14px 30px -20px rgba(13,79,110,.55), inset 0 0 0 1px var(--sea-deep);
  transform: translateY(-2px);
}
.amenity.is-active .amenity-icon {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: #fff;
}
.amenity-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sea-tint), #fff);
  display: grid;
  place-items: center;
  color: var(--sea-deep);
  margin-bottom: 1.1rem;
  transition: background .3s var(--ease), color .3s;
}
.amenity-icon svg { width: 26px; height: 26px; }
.amenity h4 { margin-bottom: .4rem; }
.amenity p { font-size: .95rem; margin: 0; color: var(--ink-soft); }

/* Small "view" hint that appears on the active tile */
.amenity::after {
  content: "View →";
  position: absolute;
  top: 1rem; right: 1.1rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sea-deep);
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s;
}
.amenity:hover::after { opacity: .6; }
.amenity.is-active::after { content: "Showing"; opacity: 1; color: var(--coral); }

/* ============ RATES ============ */
.rates {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(127,198,227,.18), transparent 60%),
    linear-gradient(180deg, var(--sand) 0%, var(--bg) 100%);
}
.rates-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(15,34,54,.35);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.rates-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.rates-row {
  display: contents;
}
.rates-row > * {
  padding: 1.6rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
}
.rates-row:last-child > * { border-bottom: none; }
.rates-row > .rates-cell { text-align: center; align-items: center; }
.rates-row > .rates-season { background: rgba(232, 211, 153, .15); }

/* Header row */
.rates-header-row > * {
  background: var(--ink) !important;
  color: #fff;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.rates-header-row .rates-season { color: var(--sand); font-family: var(--serif); font-size: 1.15rem; }
.rates-header-row .rates-cell strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
}
.rates-header-row .rates-cell span {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-top: .15rem;
}
.rates-header-row .rates-cell .rates-sleeps {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: .35rem;
}

/* Season cells */
.rates-season strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.2;
}
.rates-season small {
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: .3rem;
}

/* Price cells */
.price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sea-deep);
  line-height: 1;
  letter-spacing: -.02em;
}
.price .currency {
  font-size: 1.1rem;
  vertical-align: top;
  margin-right: .15rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.per {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .35rem;
}
.fee {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}

/* Peak row highlight */
.rates-peak > .rates-cell .price { color: var(--coral); }
.rates-peak > .rates-season { background: var(--coral-soft); }
.rates-peak > .rates-season strong { color: var(--coral); }

/* Admin fee row */
.rates-fee > * { background: rgba(15,34,54,.03); padding-top: 1.2rem; padding-bottom: 1.2rem; }
.rates-fee .rates-season small { color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-size: .82rem; }

/* Perks beneath */
.rates-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.rates-perk {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.4rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.rates-perk svg {
  color: var(--sea-deep);
  flex-shrink: 0;
  margin-top: .15rem;
}
.rates-perk strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: .15rem; }
.rates-perk span { font-size: .92rem; color: var(--ink-soft); }

.rates-cta {
  text-align: center;
}

/* Mobile: stack the rate grid */
@media (max-width: 740px) {
  .rates-grid { grid-template-columns: 1fr; }
  .rates-row > * { padding: 1rem 1.25rem; border-bottom: none; }
  .rates-row { border-bottom: 1px solid var(--line); padding-bottom: .5rem; margin-bottom: .5rem; }
  .rates-row:last-child { border-bottom: none; }
  .rates-row > .rates-season {
    background: rgba(232, 211, 153, .25);
    border-radius: 10px;
    margin: 1rem 1rem .25rem;
  }
  .rates-row > .rates-cell {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .rates-row > .rates-cell::before {
    content: attr(data-label);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .rates-header-row { display: none; }
}

/* ============ ABOUT ============ */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 120%);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.35);
}
.about-image::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.5rem 1.5rem 1.5rem;
  border: 2px solid var(--sand-deep);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text .lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--sea-deep);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* ============ REVIEWS ============ */
.reviews {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 0;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -28px rgba(15,34,54,.35);
}
.stars {
  color: var(--coral);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.review blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.review figcaption strong { font-weight: 600; color: var(--ink); }
.review figcaption span { font-size: .85rem; color: var(--ink-soft); }

/* ============ LOCATION ============ */
.location {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--sea-tint);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.4);
  min-height: 460px;
  background: #fff;
}
.things-to-do {
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(15,34,54,.25);
}
.things-to-do h3 { margin-bottom: 1.25rem; }
.things-to-do ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.things-to-do li {
  padding: .9rem 0 .9rem 1.75rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: .96rem;
  color: var(--ink-soft);
}
.things-to-do li:last-child { border-bottom: none; }
.things-to-do li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.4rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.things-to-do strong { color: var(--ink); font-weight: 600; }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(127,198,227,.25), transparent 60%),
    linear-gradient(180deg, var(--sea-deep), var(--ink));
  color: #fff;
}
.contact .eyebrow { color: var(--sand); }
.contact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.contact-head h2 { color: #fff; }
.contact-head .lede { color: rgba(255,255,255,.8); margin: 0 auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), background .3s, border-color .3s;
}
a.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
}
.contact-card svg { color: var(--sand); flex-shrink: 0; }
.contact-card h4 { color: #fff; margin-bottom: .25rem; }
.contact-card p { color: rgba(255,255,255,.85); margin: 0 0 .75rem; font-size: .98rem; }
.contact-card .card-cta {
  font-size: .82rem;
  color: var(--sand);
  font-weight: 600;
  letter-spacing: .05em;
}

.contact-primary {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-color: transparent;
}
.contact-primary:hover { background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp)) !important; }
.contact-primary svg { color: #fff; }
.contact-primary .card-cta { color: rgba(255,255,255,.95); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.footer-brand > div { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
}
.footer-brand span {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: .15rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--sand); }
.footer-meta {
  display: flex;
  flex-direction: column;
  font-size: .82rem;
  text-align: right;
  opacity: .8;
  gap: .25rem;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,15,25,.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 30px 100px -20px rgba(0,0,0,.8);
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: fabPulse 2.4s var(--ease) infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px -8px rgba(37,211,102,.8);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 30px -8px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .intro-grid,
  .flat,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .flat-reverse { direction: ltr; }
  .intro-image,
  .about-image { order: -1; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 740px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(85%, 320px);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -10px 0 40px -10px rgba(15,34,54,.3);
    transition: right .35s var(--ease);
  }
  .site-nav.open { right: 0; }
  .site-nav a {
    color: var(--ink) !important;
    font-size: 1.15rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
  }

  .flat-features {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .intro-stats { gap: 1.5rem; }
  .intro-stats strong { font-size: 1.6rem; }

  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }

  .whatsapp-fab { bottom: 1rem; right: 1rem; width: 54px; height: 54px; }

  .hero-content { padding: 7rem 0 3rem; }
  .hero-sub { font-size: 1.05rem; }
}

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