/* =========================================================
   Lol Ka'naab #9 — akumalforsale.com
   Theme: Caribbean coastal luxury
   ========================================================= */

:root {
  /* Palette */
  --ocean-deep: #0E3A4F;        /* deep navy/teal — primary dark */
  --ocean-mid:  #14586E;        /* mid teal */
  --turquoise:  #2BA9A3;        /* Caribbean turquoise — accent */
  --turquoise-soft: #7CC9C5;
  --sand:       #F1E4CC;        /* warm sand */
  --sand-soft:  #F8F1E4;
  --ivory:      #FBF8F2;        /* page bg */
  --coral:      #D97757;        /* warm accent */
  --ink:        #1A2A2F;        /* body text */
  --ink-soft:   #4A5963;
  --line:       rgba(14, 58, 79, 0.12);
  --white:      #ffffff;

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

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 4px 14px rgba(14, 58, 79, 0.08);
  --shadow-md: 0 12px 40px rgba(14, 58, 79, 0.14);
  --shadow-lg: 0 24px 60px rgba(14, 58, 79, 0.22);

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--ocean-mid); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--turquoise); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type ---------- */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.serif.italic { font-style: italic; }

h1, h2, h3 { margin: 0 0 .5em; line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.1em; color: var(--ink-soft); }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 1rem;
}
.eyebrow.light { color: var(--turquoise-soft); }
.light { color: rgba(255, 255, 255, 0.85); }
h2.light { color: var(--white); }

.section-head { margin-bottom: 3rem; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.85rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean-deep);
  color: var(--white);
  border-color: var(--ocean-deep);
}
.btn-primary:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ocean-deep);
  transform: translateY(-2px);
}
.btn-ghost.dark {
  color: var(--ocean-deep);
  border-color: var(--ocean-deep);
}
.btn-ghost.dark:hover {
  background: var(--ocean-deep);
  color: var(--white);
}
.btn.full { width: 100%; padding: 1.1rem 1.85rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .85rem 0;
  background: rgba(251, 248, 242, 0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: .55rem 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-weight: 500;
  flex-shrink: 0;
  transition: color .25s var(--ease);
}
.nav.scrolled .brand { color: var(--ocean-deep); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand-unit {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding: .25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-links a:hover { color: var(--turquoise); }

.nav-cta {
  padding: .45rem 1rem;
  border: 1.5px solid currentColor;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--white) !important;
}

.lang-switch {
  display: flex;
  gap: .15rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(6px);
}
.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .35rem .65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-switch button.active {
  background: var(--white);
  color: var(--ocean-deep);
}
.nav.scrolled .lang-switch {
  background: rgba(14, 58, 79, 0.06);
  border-color: var(--line);
}
.nav.scrolled .lang-switch button { color: var(--ink-soft); }
.nav.scrolled .lang-switch button.active { background: var(--ocean-deep); color: var(--white); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all .25s var(--ease);
  margin: 0 auto;
}
.nav.scrolled .nav-toggle span { background: var(--ocean-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 58, 79, 0.45) 0%, rgba(14, 58, 79, 0.15) 40%, rgba(14, 58, 79, 0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
}
.hero-title {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  color: var(--white);
}
.hero-title .italic { font-style: italic; color: var(--turquoise-soft); margin-left: .15em; }
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.3rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  margin: 8px auto 0;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* ---------- Facts ---------- */
.facts {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .5rem;
  position: relative;
}
.fact + .fact::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}
.fact-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--ocean-deep);
  line-height: 1;
}
.fact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- About ---------- */
.about { padding: clamp(5rem, 9vw, 8rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-copy h2 { margin-bottom: 1.6rem; max-width: 14ch; }
.about-copy p { font-size: 1.05rem; }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-media-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(251, 248, 242, 0.94);
  color: var(--ocean-deep);
  padding: .7rem 1.1rem;
  border-radius: 999px;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- Gallery ---------- */
.gallery { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--sand-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.04); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ---------- Amenities ---------- */
.amenities { padding: clamp(5rem, 9vw, 8rem) 0; }
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.amenity-col h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.amenity-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-col li {
  padding: .85rem 0 .85rem 1.8rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1rem;
  color: var(--ink);
}
.amenity-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.2rem;
  width: 8px; height: 8px;
  background: var(--turquoise);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ---------- Location ---------- */
.location {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--sand-soft) 100%);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.location-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.distances {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}
.distance {
  background: var(--white);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--turquoise);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.distance-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ocean-deep);
}
.distance span:last-child {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.link-arrow {
  display: inline-block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--turquoise);
  letter-spacing: .04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--white);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lifestyle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.lifestyle-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.lifestyle-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ocean-deep);
  margin: 1.4rem 1.5rem .6rem;
}
.lifestyle-card p {
  margin: 0 1.5rem 1.6rem;
  font-size: .98rem;
  color: var(--ink-soft);
}

/* ---------- CTA Sections (Sale / Rent) ---------- */
.cta-section { padding: clamp(5rem, 9vw, 8rem) 0; }
.cta-section.sale {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  color: var(--white);
}
.cta-section.rent {
  background: var(--sand-soft);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta-grid.reverse { grid-template-columns: 1fr 1.1fr; }
.cta-copy h2 { margin-bottom: 1.4rem; max-width: 14ch; }
.cta-section.sale p { color: rgba(255, 255, 255, 0.82); }
.cta-section.rent p { color: var(--ink-soft); }
.cta-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ownership-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 2rem 0;
  backdrop-filter: blur(6px);
}
.ownership-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--turquoise-soft);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: .95rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-amt {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}

.rent-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.2rem;
  margin: 2rem 0;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--turquoise);
}
.rent-includes div {
  font-size: .94rem;
  color: var(--ink);
  padding-left: 1.3rem;
  position: relative;
}
.rent-includes div::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--turquoise);
  font-weight: 700;
}
.rent-buttons {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-copy h2 { margin-bottom: 1.3rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: .35rem;
}
.contact-detail a {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ocean-deep);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.honeypot { display: none !important; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form label.full { width: 100%; margin-bottom: 1.2rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(43, 169, 163, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-status {
  margin: 1rem 0 0;
  font-size: .92rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: var(--turquoise); font-weight: 600; }
.form-status.error { color: var(--coral); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--white);
}
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.2rem; }
.footer-sub {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: .88rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--turquoise-soft); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  text-align: right;
  font-size: .82rem;
}
.footer-domain {
  color: var(--turquoise-soft);
  letter-spacing: .04em;
  font-weight: 500;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 58, 79, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s var(--ease);
  font-family: var(--sans);
  line-height: 1;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 2rem;
    gap: 1.4rem;
    box-shadow: var(--shadow-md);
  }
  .nav.menu-open .nav-links a { color: var(--ink); }

  .about-grid,
  .location-grid,
  .cta-grid,
  .cta-grid.reverse,
  .contact-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .cta-grid.reverse .cta-media { order: 2; }

  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-card img { height: 220px; }

  .facts-grid { grid-template-columns: repeat(5, 1fr); }
  .fact-num { font-size: 2rem; }
  .fact-label { font-size: .62rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .distances { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0;
  }
  .fact:nth-child(4)::before,
  .fact:nth-child(1)::before { display: none; }
  .fact:nth-child(4) { grid-column: span 1; }
  .fact:nth-child(5) { grid-column: span 2; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .rent-includes { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 160px; }
  .about-media-caption { font-size: .82rem; left: 1rem; bottom: 1rem; }
}
