/* ── Variables ── */
:root {
  --cream:    #F4EFE8;
  --white:    #FFFFFF;
  --dark:     #1A1A1A;
  --charcoal: #2D2D2D;
  --mid:      #5A5A5A;
  --light:    #8A8A8A;
  --border:   #E2DDD4;
  --accent:   #C9A462;
  --accent-d: #A8843E;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-l: 0 2px 10px rgba(0,0,0,.07);
  --nav-h:    64px;
  --trans:    .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.15rem; font-weight: 600; margin: 1.8rem 0 .6rem; display: flex; align-items: center; gap: .5rem; color: var(--charcoal); }
h3 i { font-size: .9rem; color: var(--accent); }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .8rem; }
p  { line-height: 1.75; color: var(--mid); }
strong { color: var(--dark); font-weight: 600; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--charcoal); }
.section-sub { color: var(--light); margin-top: .5rem; font-size: .95rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: .85rem 2rem;
  background: var(--accent); color: var(--white);
  border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--charcoal); font-size: .9rem; font-weight: 500;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,164,98,.06); }

.btn-cta {
  display: inline-block; margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--accent); color: var(--white);
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  letter-spacing: .02em;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(201,164,98,.4);
}
.btn-cta:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,164,98,.45); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: baseline; gap: .3rem; }
.nav-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--accent); }
.nav-hc    { font-size: .8rem; color: rgba(255,255,255,.5); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  color: rgba(255,255,255,.8); padding: .45rem .8rem; border-radius: 6px;
  font-size: .88rem; font-weight: 400; transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.nav-cta {
  background: var(--accent); color: var(--white); padding: .5rem 1.2rem;
  border-radius: 50px; font-weight: 600; font-size: .85rem;
}
.nav-links a.nav-cta:hover { background: var(--accent-d); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--trans), opacity var(--trans); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: calc(var(--nav-h) + 1rem) 24px 4rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent); color: var(--white);
  padding: .4rem 1.2rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-content h1 { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-location { font-size: .95rem; color: rgba(255,255,255,.75); margin-top: .6rem; }
.hero-location i { margin-right: .3rem; color: var(--accent); }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 2rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 1rem 1.5rem;
  flex-wrap: wrap;
}
.hs { text-align: center; padding: .4rem 1.2rem; }
.hs strong { display: block; font-size: 1.1rem; font-family: 'Playfair Display', serif; color: var(--white); }
.hs span { font-size: .75rem; color: rgba(255,255,255,.6); }
.hs-sep { width: 1px; height: 32px; background: rgba(255,255,255,.2); }
.hero-price { margin-top: 1.5rem; }
.price-main { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 500; color: var(--accent); }
.price-sub { display: block; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: background var(--trans), transform var(--trans);
}
.hero-dot.active { background: var(--white); transform: scale(1.2); }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.6); font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── QUICK FACTS ── */
#quick-facts {
  background: var(--dark); padding: 48px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans);
}
.fact:last-child { border-right: none; }
.fact:nth-child(4) { border-right: none; }
.fact:nth-child(5) { border-top: 1px solid rgba(255,255,255,.08); }
.fact:nth-child(6) { border-top: 1px solid rgba(255,255,255,.08); }
.fact:nth-child(7) { border-top: 1px solid rgba(255,255,255,.08); }
.fact:nth-child(8) { border-top: 1px solid rgba(255,255,255,.08); border-right: none; }
.fact:hover { background: rgba(255,255,255,.04); }
.fact > i { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; width: 24px; text-align: center; }
.fact strong { display: block; color: var(--white); font-size: .95rem; font-weight: 600; }
.fact span   { display: block; color: rgba(255,255,255,.5); font-size: .78rem; margin-top: .15rem; }

/* ── DESCRIPTION ── */
#description { background: var(--white); }
.desc-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem; align-items: start;
}
.desc-text p { margin-bottom: 1rem; }
.desc-text h3 { font-size: 1.05rem; font-weight: 600; margin: 2rem 0 .6rem; font-family: 'Inter', sans-serif; }

.info-card {
  background: var(--cream); border-radius: 14px; padding: 1.75rem;
  border: 1px solid var(--border);
}
.info-card h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1rem; color: var(--charcoal); }
.info-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: .6rem .25rem; color: var(--mid); }
.info-table td:first-child { color: var(--light); width: 50%; }
.info-table strong { color: var(--dark); }

.nota-bene {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(201,164,98,.08); border: 1px solid rgba(201,164,98,.25);
  border-radius: 10px; padding: 1rem; margin-top: 1rem; font-size: .83rem;
}
.nota-bene i { color: var(--accent); flex-shrink: 0; margin-top: .1rem; }
.nota-bene p { color: var(--mid); margin: 0; line-height: 1.5; }

/* ── PLAN ── */
#plan { background: var(--cream); }
.plan-tabs {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem;
}
.plan-tab {
  padding: .6rem 1.5rem; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .88rem; font-weight: 500; color: var(--mid);
  transition: all var(--trans);
}
.plan-tab.active, .plan-tab:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(201,164,98,.08);
}
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-wrapper { position: relative; text-align: center; }
.plan-img {
  max-height: 70vh; width: auto; max-width: 100%;
  border-radius: var(--radius); box-shadow: var(--shadow);
  margin: 0 auto; cursor: zoom-in;
}
.plan-zoom-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; padding: .55rem 1.25rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--mid); font-size: .85rem;
  transition: all var(--trans);
}
.plan-zoom-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan-disclaimer {
  text-align: center; margin-top: 1rem; font-size: .82rem;
  color: var(--light); display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.plan-disclaimer i { color: #E5A000; }
.plan-placeholder {
  background: var(--white); border: 2px dashed var(--border);
  border-radius: var(--radius); padding: 3rem 2rem; text-align: center; color: var(--light);
}
.plan-placeholder i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--border); }
.plan-placeholder p { margin: .3rem 0; }
.plan-ph-note { font-size: .82rem; font-family: monospace; }

/* ── GALLERY ── */
#gallery { background: var(--white); }
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.gtab {
  padding: .5rem 1.2rem; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .85rem; font-weight: 500; color: var(--mid);
  transition: all var(--trans);
}
.gtab.active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.gtab:not(.active):hover { border-color: var(--accent); color: var(--accent); background: rgba(201,164,98,.06); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px;
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--border);
}
.gallery-item.portrait { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--trans);
  display: flex; align-items: flex-end; padding: 12px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--white); font-size: .78rem; font-weight: 500;
  background: rgba(0,0,0,.4); border-radius: 4px; padding: .2rem .5rem;
}
.gallery-item.hidden { display: none; }

.gallery-more { text-align: center; margin-top: 2rem; }

/* ── SUITE TEASER ── */
#suite-teaser-section { background: var(--white); padding: 0 0 88px; }
.suite-teaser {
  display: flex; align-items: center; gap: 2.25rem;
  padding: 2.75rem 3rem;
  background: linear-gradient(120deg, #1A1A1A 0%, #2D2D2D 100%);
  border-radius: 18px; border: 1px solid rgba(201,164,98,.3);
  position: relative; overflow: hidden;
  box-shadow: 0 18px 50px rgba(26,26,26,.18);
}
.suite-teaser-eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 600; color: var(--accent); margin-bottom: .5rem;
}
.suite-teaser::after {
  content: '\f084'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: -10px; bottom: -20px;
  font-size: 9rem; color: rgba(201,164,98,.06);
}
.suite-teaser-icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,164,98,.15); border: 1px solid rgba(201,164,98,.4);
  display: flex; align-items: center; justify-content: center;
}
.suite-teaser-icon i { font-size: 1.5rem; color: var(--accent); }
.suite-teaser-text { position: relative; z-index: 1; }
.suite-teaser-text h3 {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: 1.4rem; font-weight: 500; margin: 0 0 .5rem; display: block;
}
.suite-teaser-text p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 1rem; max-width: 640px; }
.suite-teaser-btn {
  display: inline-block; padding: .7rem 1.75rem;
  background: var(--accent); color: var(--white);
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  transition: background var(--trans), transform var(--trans);
}
.suite-teaser-btn:hover { background: var(--accent-d); transform: translateY(-1px); }

.contact-intro { color: var(--mid); font-size: .9rem; margin-bottom: 1.25rem; line-height: 1.55; }

/* ── FEATURES ── */
#features { background: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feat-card {
  background: var(--white); border-radius: 14px; padding: 1.5rem;
  border: 1px solid var(--border); transition: box-shadow var(--trans), transform var(--trans);
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,164,98,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feat-icon i { font-size: 1.1rem; color: var(--accent); }
.feat-card h4 { font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--dark); margin-bottom: .8rem; }
.feat-card ul { display: flex; flex-direction: column; gap: .4rem; }
.feat-card li { font-size: .84rem; color: var(--mid); padding-left: 1rem; position: relative; line-height: 1.4; }
.feat-card li::before { content: ''; position: absolute; left: 0; top: .55rem; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* ── CONTACT ── */
#contact {
  background: var(--dark);
  background-image: url('images/photo-031.jpg');
  background-size: cover; background-position: center;
  position: relative;
}
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.8);
}
#contact .container { position: relative; z-index: 1; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
}
.contact-left h2 { color: var(--white); margin-bottom: 1rem; }
.contact-left p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.contact-price-box { margin-top: 2rem; }
.cpb-price {
  font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--accent);
  line-height: 1;
}
.cpb-detail { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: .3rem; }
.cpb-detail small { display: block; font-size: .8rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

.contact-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.contact-methods { display: flex; flex-direction: column; gap: .75rem; }
.contact-btn {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
  border-radius: 10px; font-size: .92rem; font-weight: 500;
  transition: all var(--trans);
}
.contact-btn.phone { background: var(--cream); color: var(--dark); border: 1px solid var(--border); }
.contact-btn.email { background: var(--accent); color: var(--white); }
.contact-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-l); }
.contact-btn.phone:hover { border-color: var(--accent); }
.contact-btn > i { font-size: 1.1rem; flex-shrink: 0; }
.contact-btn span { display: block; }
.contact-btn small { display: block; font-size: .75rem; opacity: .7; font-weight: 400; }
.contact-note { text-align: center; margin-top: 1.25rem; font-size: .78rem; color: var(--light); }

/* ── FOOTER ── */
footer { background: #111; padding: 32px 0; text-align: center; }
.footer-title { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: .4rem; }
.footer-legal { color: rgba(255,255,255,.3); font-size: .75rem; line-height: 1.6; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s;
}
.lightbox.open { visibility: visible; opacity: 1; }
.lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); cursor: pointer; }
.lb-content {
  position: relative; z-index: 1; max-width: 92vw; max-height: 90vh;
  text-align: center;
}
.lb-content img {
  max-width: 92vw; max-height: 80vh;
  border-radius: 8px; object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-close {
  position: fixed; top: 20px; right: 24px; z-index: 2;
  color: var(--white); font-size: 1.6rem; padding: 8px;
  background: rgba(255,255,255,.1); border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 2; color: var(--white); font-size: 1.2rem; padding: 12px 16px;
  background: rgba(255,255,255,.1); border-radius: 8px;
  transition: background var(--trans);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-caption { color: rgba(255,255,255,.8); font-size: .85rem; margin-top: .75rem; }
.lb-counter { color: rgba(255,255,255,.4); font-size: .75rem; margin-top: .2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid    { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .fact:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .fact:nth-child(4) { border-right: none; }
  .fact:nth-child(5) { border-top: 1px solid rgba(255,255,255,.08); }
  .fact:nth-child(6) { border-right: none; }
  .fact:nth-child(7) { border-top: 1px solid rgba(255,255,255,.08); }
  .desc-grid     { grid-template-columns: 1fr; }
  .desc-sidebar  { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  section { padding: 56px 0; }
  h2 { font-size: 1.7rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(26,26,26,.97); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column; gap: 0; padding: 1rem;
    transform: translateY(-110%); transition: transform .3s ease, visibility .3s;
    border-bottom: 1px solid rgba(255,255,255,.08);
    visibility: hidden; pointer-events: none;
    max-height: calc(100svh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .9rem 1rem; font-size: .95rem; border-radius: 8px; }
  .nav-links a.nav-cta { margin-top: .5rem; text-align: center; border-radius: 8px; }

  /* Hero */
  .hero-stats { gap: 0; padding: .8rem 1rem; }
  .hs { padding: .4rem .6rem; }
  .hs strong { font-size: .95rem; }
  .hs-sep { height: 24px; }
  .price-main { font-size: 2.2rem; }
  .hero-dots { bottom: 60px; }

  /* Facts */
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 16px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-tabs { gap: .4rem; }
  .gtab { padding: .4rem .9rem; font-size: .8rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-card { padding: 1.2rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .cpb-price { font-size: 2.4rem; }

  #suite-teaser-section { padding-bottom: 56px; }
  .suite-teaser { flex-direction: column; text-align: center; gap: 1.25rem; padding: 2rem 1.5rem; }
  .suite-teaser-text p { margin-left: auto; margin-right: auto; }
  .suite-teaser-text h3 { font-size: 1.25rem; }

  /* Lightbox arrows on mobile */
  .lb-prev { left: 8px; padding: 10px 12px; }
  .lb-next { right: 8px; padding: 10px 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hs-sep { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; background: transparent; border: none; padding: 0; margin-top: 1.5rem; }
  .hs { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; }
}
