/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg: #f5f3ee;
  --paper: #fffdf8;
  --text: #16334a;
  --muted: #5d7282;
  --sea: #1b78a3;
  --sea-dark: #135b7a;
  --sea-light: #e8f5fd;
  --sand: #f0dfbc;
  --sand-light: #faf6ee;
  --green-wa: #25d366;
  --shadow-sm: 0 4px 14px rgba(15, 45, 65, 0.1);
  --shadow-md: 0 12px 32px rgba(15, 45, 65, 0.14);
  --shadow-lg: 0 24px 56px rgba(15, 45, 65, 0.18);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1240px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text);
  background: linear-gradient(180deg, #f0f5fa 0%, var(--bg) 40%, #f2ede4 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

p { margin-top: 0; margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 2rem), var(--max-width));
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(18, 55, 78, 0.14);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(18, 55, 78, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 0.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: color 0.18s, background 0.18s;
}

.site-nav a:hover {
  color: var(--sea-dark);
  background: rgba(27, 120, 163, 0.07);
}

.site-nav a.active {
  color: var(--sea-dark);
  background: rgba(27, 120, 163, 0.1);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ────────────────────────────────────────────────────── */
main { padding-top: 7rem; }

.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(580px, 88vh, 820px);
  box-shadow: var(--shadow-lg);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(5, 22, 34, 0.84) 0%,
    rgba(10, 40, 58, 0.6) 42%,
    rgba(16, 60, 85, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(8rem, 13vw, 13rem);
  max-width: 700px;
}

.hero-content .eyebrow {
  color: rgba(210, 238, 255, 0.9);
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 58ch;
  color: rgba(230, 245, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.5rem;
}

.hero h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  60%       { opacity: 0; top: 18px; }
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sea);
  margin-bottom: 0.6rem;
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.15;
  font-family: var(--font-serif);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 0.93rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(90deg, var(--sea) 0%, #2898cc 100%);
  color: white;
  box-shadow: 0 6px 22px rgba(21, 100, 140, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(21, 100, 140, 0.45);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: var(--paper);
  color: var(--sea-dark);
  border: 1.5px solid rgba(27, 120, 163, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--sea);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

/* ── FEATURE CARDS GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17, 70, 100, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── AMENITIES ───────────────────────────────────────────────── */
.amenities-block {
  background: linear-gradient(140deg, var(--sea-light) 0%, var(--sand-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(27, 120, 163, 0.14);
  margin-bottom: 2rem;
}

.amenities-title {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--sea-dark);
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 120, 163, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17, 70, 100, 0.06);
}

.stat-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-number {
  display: inline;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--sea-dark);
  line-height: 1;
}

.stat-unit {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sea);
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #dde9f2;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  position: relative;
}

.gallery-item::after {
  content: "⤢";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  background: rgba(5, 25, 38, 0.35);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── EXPANDABLE GALLERY ──────────────────────────────────────── */
.expandable-gallery {
  margin-top: 1.3rem;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.toggle-icon {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.gallery-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.full-gallery-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s ease, opacity 0.3s ease;
}

.full-gallery-wrap.open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.full-gallery-wrap > .full-gallery-grid {
  overflow: hidden;
  padding-top: 1rem;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.full-gallery-item {
  border: 0;
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #d9eaf5;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.full-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 25, 38, 0.3);
  opacity: 0;
  transition: opacity 0.2s;
}

.full-gallery-item:hover::after {
  opacity: 1;
}

.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.full-gallery-item:hover img {
  transform: scale(1.07);
}

/* ── EXPERIENCE ──────────────────────────────────────────────── */
.day-rhythm {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.day-card {
  background: linear-gradient(145deg, var(--paper) 0%, #f3f8fc 100%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(27, 120, 163, 0.08);
  box-shadow: var(--shadow-sm);
}

.day-time {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sea);
  margin-bottom: 0.55rem;
}

.day-card h3 {
  margin-bottom: 0.6rem;
}

.day-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.day-divider {
  width: 1.5rem;
  display: flex;
  align-items: flex-start;
  padding-top: 2.1rem;
  justify-content: center;
}

.day-divider::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, transparent, rgba(27, 120, 163, 0.3), transparent);
  rotate: 90deg;
  margin-top: 0.5rem;
}

/* ── OMIS ────────────────────────────────────────────────────── */
.omis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17, 70, 100, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.itinerary {
  background: linear-gradient(140deg, var(--sea-light) 0%, var(--sand-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  border: 1px solid rgba(27, 120, 163, 0.14);
}

.itinerary h3 {
  margin-bottom: 1.2rem;
  color: var(--sea-dark);
}

.itinerary-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.itinerary-day {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.day-label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sea);
  background: rgba(27, 120, 163, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  width: fit-content;
}

.itinerary-day p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section {
  padding-bottom: 5rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-panel {
  background: linear-gradient(140deg, var(--paper) 0%, var(--sea-light) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 120, 163, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-note {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.8rem 1rem;
  background: rgba(27, 120, 163, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sea);
  margin-bottom: 1.4rem !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.contact-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.contact-badge span {
  font-weight: 700;
  color: #1a9e4e;
  font-size: 0.85rem;
}

.contact-badge small {
  color: var(--muted);
  font-size: 0.75rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color 0.18s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-size: 0.82rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ── SCROLL TO TOP ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 46px;
  height: 46px;
  background: var(--sea);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(21, 100, 140, 0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--sea-dark);
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  width: min(1100px, 94vw);
  border: none;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(5, 18, 28, 0.92);
  backdrop-filter: blur(4px);
}

.lightbox-image {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: white;
  background: rgba(5, 28, 46, 0.55);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
  backdrop-filter: blur(4px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(5, 28, 46, 0.8);
  transform: scale(1.08);
}

.lightbox-close {
  top: 0.7rem;
  right: 0.7rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav.prev { left: 0.7rem; }
.lightbox-nav.next { right: 0.7rem; }

.lightbox-counter {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 28, 46, 0.6);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE 960px ────────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid,
  .omis-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .day-rhythm {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .day-divider { display: none; }

  .itinerary-days {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-image-wrap {
    min-height: 280px;
  }
}

/* ── RESPONSIVE 680px ────────────────────────────────────────── */
@media (max-width: 680px) {
  .site-header {
    border-radius: 16px;
  }

  .menu-toggle { display: flex; flex-direction: column; justify-content: center; }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    width: 210px;
    padding: 0.7rem 0.6rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27, 120, 163, 0.1);
    transform: scale(0.96) translateY(-4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
  }

  .site-nav.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  main { padding-top: 6rem; }

  .hero { min-height: 75vh; border-radius: var(--radius-lg); }

  .features-grid,
  .omis-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}
