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

:root {
  --white:      #ffffff;
  --off-white:  #F7F9FC;
  --blue-dark:  #0A3D62;
  --blue:       #1565A8;
  --blue-mid:   #1A73C2;
  --blue-light: #E8F1FA;
  --yellow:     #F4C430;
  --yellow-dark:#D4A520;
  --text:       #1A2332;
  --text-mid:   #3D5166;
  --text-light: #6B8099;
  --border:     #D8E4EE;
  --border-dark:#C0D0E0;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(10,61,98,0.10);
  --shadow-lg:  0 12px 48px rgba(10,61,98,0.16);
  --transition: 0.3s ease;
  --header-h:   68px;
  --max-w:      1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
em { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 5rem;
}
.section-light { background: var(--off-white); }
.section-blue  { background: var(--blue-dark); color: var(--white); }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.light .eyebrow { color: rgba(255,255,255,0.65); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-lead  { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--blue-dark);
}
.section-title em { font-size: 1.1em; font-weight: 400; }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-inline: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-yellow {
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 700;
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,196,48,0.4); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline {
  border: 2px solid var(--border-dark);
  color: var(--blue-dark);
  background: transparent;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,61,98,0.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(10,61,98,0.1); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-icon { width: 32px; height: 32px; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.logo-sub { font-weight: 400; }

.nav {
  display: none;
  gap: 2rem;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav a.active,
.nav a:hover { color: var(--blue); }
.nav a.active::after,
.nav a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.lang-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  padding: 0.2rem 0.3rem;
  transition: color var(--transition);
}
.lang-btn.active { color: var(--blue); }
.lang-btn:hover  { color: var(--blue-mid); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 34px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 850;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  box-shadow: 0 8px 32px rgba(10,61,98,0.12);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,61,98,0.72) 0%, rgba(10,61,98,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
  padding-top: var(--header-h);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em { font-size: 1.1em; font-weight: 400; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--yellow);
  padding-block: 0.7rem;
  white-space: nowrap;
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 90s linear infinite;
}
.ticker-content {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-right: 0;
  display: inline-block;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin-block: 2rem;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.platform-badge.booking { background: #003580; color: #fff; }
.platform-badge.booking:hover { background: #002a6e; transform: translateY(-1px); }
.platform-badge.airbnb  { background: #FF5A5F; color: #fff; }
.platform-badge.airbnb:hover  { background: #e04a4f; transform: translateY(-1px); }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--yellow);
  color: var(--blue-dark);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(244,196,48,0.4);
  line-height: 1.2;
}
.about-img-badge strong { font-size: 1.4rem; font-weight: 800; }

/* ── APARTMENTS ── */
.apts-grid {
  display: grid;
  gap: 1.5rem;
}

.apt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.apt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.apt-img {
  position: relative;
  overflow: hidden;
}
.apt-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apt-card:hover .apt-img img { transform: scale(1.04); }

.apt-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.apt-badge--blue { background: var(--blue); color: var(--white); }
.apt-badge--dark { background: var(--blue-dark); color: var(--white); }

.apt-body { padding: 1.5rem; }
.apt-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.apt-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.apt-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.apt-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1.6rem;
  position: relative;
}
.apt-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
}
.apt-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  border: none;
  padding: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 0.75rem 0.6rem;
  background: linear-gradient(to top, rgba(10,61,98,0.75), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

/* ── REVIEWS MARQUEE ── */
.reviews-outer {
  overflow: hidden;
  padding-block: 3.5rem;
  background: var(--blue-light);
  position: relative;
}
.reviews-outer::before,
.reviews-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-outer::before { left: 0;  background: linear-gradient(to right, var(--blue-light), transparent); }
.reviews-outer::after  { right: 0; background: linear-gradient(to left,  var(--blue-light), transparent); }

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
@media (hover: hover) {
  .reviews-track:hover { animation-play-state: paused; }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .reviews-track { animation-duration: 60s; }
}

.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(10,61,98,0.08);
}
.review-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.review-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.review-author span { color: var(--text-light); font-weight: 400; }

/* ── BOOK SECTION ── */
.book-grid {
  display: grid;
  gap: 2.5rem;
}

.platform-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.platform-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}
.booking-link { background: #003580; color: #fff; }
.booking-link:hover { background: #002a6e; transform: translateX(4px); }
.airbnb-link  { background: #FF5A5F; color: #fff; }
.airbnb-link:hover  { background: #e04a4f; transform: translateX(4px); }
.wa-link      { background: #25d366; color: #fff; }
.wa-link:hover      { background: #1db858; transform: translateX(4px); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: none;
}
.map-link {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  transition: background var(--transition);
}
.map-link:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ── CONTACT FORM ── */
.book-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.14);
}
.form-input option { background: var(--blue-dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; padding: 0.85rem; font-size: 1rem; }

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success-icon { font-size: 3rem; color: var(--yellow); margin-bottom: 1rem; }
.form-success h4  { font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.form-success p   { color: rgba(255,255,255,0.75); }

/* ── FOOTER ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo em { font-style: normal; font-weight: 400; }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--blue-dark); transform: translateY(-2px); }

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--white); }

.footer-info p,
.footer-info a {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  display: block;
}
.footer-info a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,20,40,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-img {
  max-width: min(900px, calc(100vw - 3rem));
  max-height: calc(100svh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── WHATSAPP FLOAT ── */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0    rgba(37, 211, 102, 0.6); }
  60%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 0 0 0    rgba(37, 211, 102, 0);   }
}
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 3s ease infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(21,101,168,0.4);
  transition: transform var(--transition), background var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── RESPONSIVE ── */

/* Mobile only: hide Book Now from header (it's in the mobile nav) */
@media (max-width: 767px) {
  .nav-right .btn { display: none; }
}

/* Small+ (≥ 480px) */
@media (min-width: 480px) {
  .apts-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

/* Medium (≥ 768px) */
@media (min-width: 768px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .book-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap iframe { height: 260px; }
  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; }
}

/* Large (≥ 1024px) */
@media (min-width: 1024px) {
  .apts-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding-inline: 2.5rem; }
  .container { padding-inline: 2rem; }
}

/* Extra large (≥ 1280px) */
@media (min-width: 1280px) {
  .about-grid { gap: 5rem; }
}

/* Touch: disable hover transforms on gallery */
@media (hover: none) {
  .gallery-item:hover img { transform: none; }
  .apt-card:hover { transform: none; }
}
