/* ============================================================
   SWMI Hotels — styles.css  v4
   Dark editorial · electric green · local SEO ready
   Fonts: Outfit 900 headings + Manrope body via Google Fonts
   ============================================================ */

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

:root {
  --bg:           #111111;
  --bg-card:      #1a1a1a;
  --bg-elevated:  #222222;

  --accent:       #3DFF9E;
  --accent-dim:   rgba(61,255,158,0.10);
  --accent-glow:  rgba(61,255,158,0.22);

  --white:        #ffffff;
  --text-sec:     rgba(255,255,255,0.58);
  --text-muted:   rgba(255,255,255,0.36);

  --border:       rgba(255,255,255,0.09);
  --border-mid:   rgba(255,255,255,0.15);
  --border-hover: rgba(61,255,158,0.38);

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --section-py: 108px;
  --container:  1200px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  22px;

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.container-narrow {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.accent { color: var(--accent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur),
              color var(--dur), border-color var(--dur), box-shadow var(--dur);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #071a0e;
  border-color: var(--accent);
  font-weight: 700;
}
.btn-primary:hover {
  background: #5DFFB3;
  border-color: #5DFFB3;
  box-shadow: 0 0 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

/* White-filled (hero primary CTA — matches reference) */
.btn-white {
  background: #ffffff;
  color: #0d1f14;
  border-color: transparent;
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Glassmorphism ghost (hero secondary CTA — matches reference) */
.btn-glass {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.50);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  font-size: 0.87rem;
  padding: 11px 22px;
}
.btn-outline:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-glow);
}

.btn-cta {
  background: #ffffff;
  color: #0d1f14;
  border-color: transparent;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.btn-cta:hover {
  background: rgba(255,255,255,0.90);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* Scrolled: flip CTA to dark */
.nav-header.scrolled .btn-cta {
  background: #111111;
  color: #ffffff;
  border-color: transparent;
}
.nav-header.scrolled .btn-cta:hover {
  background: #222222;
  box-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

.btn-full { width: 100%; }
.btn-lg   { padding: 16px 34px; font-size: 1.02rem; }

/* ── Navigation ───────────────────────────────────────────── */
.nav-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.30s ease-in-out, box-shadow 0.30s ease-in-out,
              border-color 0.30s ease-in-out;
}
.nav-header.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 16px rgba(0,0,0,0.09);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding: 24px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: padding 0.30s ease-in-out;
}
.nav-header.scrolled .nav-container {
  padding: 16px clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.30s ease-in-out;
}
.nav-header.scrolled .nav-logo { color: #111111; }

.nav-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,255,158,0.65); }
  50%       { box-shadow: 0 0 0 6px rgba(61,255,158,0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: clamp(0.72rem, 1.1vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 8px 11px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

/* Scrolled state — links flip dark */
.nav-header.scrolled .nav-link { color: rgba(0,0,0,0.60); }
.nav-header.scrolled .nav-link:hover { color: #111111; background: rgba(0,0,0,0.06); }

.nav-container > .btn-cta {
  margin-left: clamp(12px, 3vw, 32px);
  flex-shrink: 0;
}

/* Desktop "More" dropdown — keeps the primary nav from overflowing */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown-toggle svg { transition: transform var(--dur); }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 190px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur), transform var(--dur), visibility var(--dur);
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu .nav-link {
  display: block;
  color: #111111;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-dropdown-menu .nav-link:hover { background: rgba(0,0,0,0.06); color: #111111; }

/* Close button (mobile drawer only — hidden on full-width desktop menu) */
.nav-close { display: none; }

/* Contact button duplicated inside the mobile drawer list — hidden on desktop */
.nav-links-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  margin-left: auto;
  border-radius: 8px;
  transition: background var(--dur);
}
.nav-toggle:hover { background: rgba(255,255,255,0.07); }
.nav-header.scrolled .nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur), background 0.30s ease-in-out;
}
.nav-header.scrolled .nav-toggle span { background: #111111; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px clamp(20px, 5vw, 60px) 80px;
  overflow: hidden;
  background: #1e1408;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.30) 0%,
      rgba(10,10,10,0.15) 35%,
      rgba(10,10,10,0.70) 70%,
      rgba(10,10,10,0.90) 100%),
    radial-gradient(ellipse 55% 55% at 75% 20%, rgba(61,255,158,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulseDot 2.5s ease-in-out infinite;
}

.hero-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 26px;
}
.hero-heading-accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-sec);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 42px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  letter-spacing: -0.045em;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-badge {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

/* ── Section shell ────────────────────────────────────────── */
.section { padding-block: var(--section-py); }
.section-dark { background: var(--bg); }
.section-alt  { background: var(--bg-card); }

.section-header { max-width: 660px; margin-bottom: 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  line-height: 1.78;
}

/* ── Who We Serve — 2-column cards with images ────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px var(--border-hover);
}

/* Card image */
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-img img { transform: scale(1.04); }

/* Card body wrapper */
.card-body-wrap {
  padding: clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-dim);
  border: 1px solid rgba(61,255,158,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.93rem;
  color: var(--text-sec);
  line-height: 1.78;
  margin-bottom: 20px;
}

.card-perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.card-perks li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 15px;
  position: relative;
}
.card-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ── The Advantage — stacked layout ──────────────────────── */

/* Row 1: Amenities — 2-col checklist, full width */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.amenity {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.amenity:nth-child(odd)  { border-right: 1px solid var(--border); }
.amenity:nth-last-child(-n+1):nth-child(odd) { border-bottom: none; }
.amenity:nth-last-child(-n+2):nth-child(even) { border-bottom: none; }

.amenity-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(61,255,158,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.amenity strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.amenity span {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Row 2: Comparison section — full width, 2-col inner layout */
.comparison-section {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
}

.comparison-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}

/* Left side: text + CTA */
.comparison-text {
  padding: clamp(32px, 5vw, 52px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
}
.comparison-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
}
.comparison-desc {
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.75;
  flex: 1;
}
.comparison-text .btn { margin-top: auto; align-self: flex-start; }

/* Right side: table */
.comparison-table-wrap {
  padding: clamp(28px, 4vw, 44px);
}

.comparison-table { width: 100%; }

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 130px 130px;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: center;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-header {
  font-weight: 700;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 16px;
}
.comparison-row span:first-child { color: var(--text-sec); font-size: 0.92rem; }

.col-swmi, .col-other { text-align: center; }
.col-swmi.yes { color: var(--accent); font-weight: 700; font-size: 0.88rem; }
.col-other.no { color: #FF6B6B; font-weight: 600; font-size: 0.88rem; }

/* ── Why Choose Us — benefit grid ─────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur);
}
.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5), 0 0 0 1px var(--border-hover);
}
.benefit-card.quiet-wing {
  background: linear-gradient(160deg, rgba(61,255,158,0.08), var(--bg-elevated) 60%);
  border-color: rgba(61,255,158,0.28);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-dim);
  border: 1px solid rgba(61,255,158,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.benefit-body {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.75;
}

@media (max-width: 960px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ── Locations — cards with images ───────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
}
.location-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px var(--border-hover);
  transform: translateY(-3px);
}

/* Location image */
.location-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.location-card:hover .location-img img { transform: scale(1.04); }

.location-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(17,17,17,0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(61,255,158,0.30);
  padding: 5px 14px;
  border-radius: 999px;
}

/* Location card content */
.location-content {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.location-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: -0.03em;
  color: var(--white);
}

.location-region {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.location-desc {
  font-size: 0.93rem;
  color: var(--text-sec);
  line-height: 1.78;
}

.location-serving {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.location-serving li {
  font-size: 0.85rem;
  color: var(--text-sec);
  padding-left: 14px;
  position: relative;
}
.location-serving li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.location-area {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.location-area strong { color: var(--text-sec); }

.location-content .btn-outline { margin-top: auto; align-self: flex-start; }

.location-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
  padding: 16px 22px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.location-note a { color: var(--accent); font-weight: 600; }
.location-note a:hover { text-decoration: underline; }
.location-note svg { flex-shrink: 0; color: var(--accent); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 4vw, 32px);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  background: var(--bg-card);
  transition: background var(--dur), color var(--dur);
  line-height: 1.5;
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-question[aria-expanded="true"] { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease), color var(--dur);
  display: flex;
  align-items: center;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  background: var(--bg-card);
  padding: 0 clamp(22px, 4vw, 32px) 24px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-sec);
  line-height: 1.82;
  padding-top: 4px;
}
.faq-answer a { color: var(--accent); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 90px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(61,255,158,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.cta-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.07;
}
.cta-sub { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.cta-actions .btn { width: 100%; justify-content: center; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 52px;
  align-items: start;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 300px;
}
.footer-tagline .tagline-emphasis {
  font-size: 1.05em;
  color: var(--accent);
  font-weight: 700;
}
.footer-email { font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.footer-email:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-nav { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-nav-col strong {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-nav-col a { font-size: 0.88rem; color: var(--text-sec); transition: color var(--dur); }
.footer-nav-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.79rem;
  color: var(--text-muted);
}

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.09s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.27s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BREAKPOINTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .comparison-inner { grid-template-columns: 300px 1fr; }
}

/* ── ≤ 960px ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-py: 80px; }

  .comparison-inner {
    grid-template-columns: 1fr;
  }
  .comparison-text {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  .comparison-text .btn { margin-top: 0; }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cta-actions { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .cta-actions .btn { width: auto; }
}

/* ── ≤ 768px — tablet / large mobile ─────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 68px; }

  /* Nav: hide links + CTA, show hamburger */
  .nav-links,
  .nav-container > .btn-cta,
  .nav-container > a.nav-link { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    padding: 90px 24px 40px;
    gap: 6px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111111;
    background: rgba(0,0,0,0.05);
    transition: background var(--dur);
  }
  .nav-close:hover { background: rgba(0,0,0,0.10); }
  .nav-links.open .nav-close { display: flex; }
  .nav-links.open li { width: 100%; }
  .nav-links.open .nav-link {
    display: block;
    padding: 18px 16px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    border-radius: 12px;
    letter-spacing: 0;
    text-transform: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open .nav-link:hover { background: rgba(0,0,0,0.04); color: #111111; }
  .nav-links.open .nav-links-cta {
    display: block;
    margin-top: 20px;
    padding: 0 16px;
  }

  /* "More" dropdown collapses into flat stacked links on mobile */
  .nav-dropdown-toggle { display: none; }
  .nav-dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    min-width: unset;
  }
  .nav-dropdown-menu .nav-link {
    display: block;
    padding: 18px 16px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    border-radius: 12px;
    letter-spacing: 0;
    text-transform: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links-cta .btn-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }

  /* Stats: 2 columns, wraps to 3 rows for 5 items */
  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-item {
    padding: 24px 18px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+1):nth-child(2n+1) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }

  /* Cards: stack to 1 column on tablet */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Amenities: single column */
  .amenities-grid { grid-template-columns: 1fr; margin-bottom: 36px; }
  .amenity:nth-child(odd) { border-right: none; }
  .amenity { border-bottom: 1px solid var(--border); }
  .amenity:last-child { border-bottom: none; }
  /* Override the nth-last-child desktop rule for 1-col */
  .amenity:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--border); }

  /* Locations: stack */
  .locations-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* Footer: stack */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .footer-nav { gap: 28px; }
}

/* ── ≤ 600px — keep cards 1-col, other fixes ─────────────── */
@media (max-width: 600px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 100px 100px;
    font-size: 0.84rem;
  }
}

/* ── ≤ 540px — small mobile ───────────────────────────────── */
@media (max-width: 540px) {
  :root { --section-py: 56px; }

  .nav-container { padding: 16px 20px; }

  .hero { padding-top: 120px; padding-bottom: 60px; }
  .hero-heading { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  .stat-item { padding: 20px 14px; }
  .stat-number { font-size: 1.7rem; }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 88px 88px;
    font-size: 0.8rem;
  }

  .footer-nav { gap: 20px; }
  .footer-nav-col { min-width: calc(50% - 10px); }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 4px; }

  .faq-question { padding: 18px 18px; font-size: 0.92rem; }
  .faq-answer   { padding: 0 18px 20px; }
}

/* ── ≤ 400px — very small phones ─────────────────────────── */
@media (max-width: 400px) {
  .hero-heading { font-size: 2.2rem; }
  .stat-number  { font-size: 1.5rem; }
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 76px 76px;
    font-size: 0.75rem;
  }
}
