/* ================================================================
   ZEAL by Kasana – Premium CSS Stylesheet (Reference-Matched)
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy-deep: #0a1020;
  --navy-mid: #0f172a;
  --navy-light: #162036;
  --navy-text: #1a2d4a;
  --cream: #f8f6f0;
  --cream-dark: #e8e4da;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8942A;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-subtle: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --muted: #64748B;
  --white: #FFFFFF;

  --ff-display: 'Inter', system-ui, sans-serif;
  --ff-body: 'Krub', system-ui, sans-serif;

  --nav-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── Custom Cursor ─────────────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

@media (min-width: 769px) {
  .custom-cursor {
    display: block;
  }
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Typography Helpers ────────────────────────────────────────── */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-heading-dark {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-text);
  margin-bottom: 16px;
}

.section-heading-dark em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.section-tag-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--gold-subtle);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  width: fit-content;
}

.tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-tag-center {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
  text-align: center;
}

.gold-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.gold-underline.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ── Scroll Reveal ──────────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-subtle);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-zeal {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
}

.logo-byline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-enquire {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 24px;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}

.hero-slide.active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, var(--navy-deep) 0%, rgba(10, 16, 32, 0.6) 40%, rgba(10, 16, 32, 0.25) 100%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 16, 32, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-subtle);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 5% 150px;
  max-width: 760px;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gold-subtle);
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--ff-body);
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.85rem;
  padding: 12px 32px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  width: 6px;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-subtle);
}

.hero-stat {
  padding: 16px 24px;
  text-align: center;
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--gold-subtle);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Ticker ─────────────────────────────────────────────────────── */
.gold-ticker {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: scrollTicker 30s linear infinite;
}

.ticker-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-deep);
  padding: 0 20px;
}



@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Floating CTA ──────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s;
}

.float-btn svg {
  width: 18px;
  height: 18px;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-phone {
  background: linear-gradient(135deg, #1a73e8, #0d5bd1);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* ── Overview Section ──────────────────────────────────────────── */
.section-overview {
  padding: 40px 5%;
  background: linear-gradient(to bottom, var(--navy-deep), var(--navy-mid));
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-image-wrap {
  position: relative;
}

.overview-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.overview-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  padding: 20px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.badge-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-deep);
}

.badge-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-deep);
}

.overview-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.spec-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-subtle);
}

.spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.spec-text {
  display: flex;
  flex-direction: column;
}

.spec-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.spec-text span {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ── Gallery ───────────────────────────────────────────────────── */
.section-gallery {
  padding: 48px 5%;
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy-deep));
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery-title-wrap {
  display: flex;
  flex-direction: column;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--ff-body);
  transition: all 0.3s;
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-tall {
  grid-row: span 2;
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.9) 0%, rgba(10, 16, 32, 0.2) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
}

.gi-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-item:hover .gi-info {
  transform: translateY(0);
}

.gi-info-text h4 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  line-height: 1.3;
}

.gi-info-text span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(212, 175, 55, 0.7);
}

.gi-zoom {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.gi-zoom svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.gi-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gi-corner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.gi-corner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.gallery-item:hover .gi-corner {
  opacity: 1;
}

/* ── Lightbox ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(10, 16, 32, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s;
}

.lb-close:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.lb-close svg {
  width: 18px;
  height: 18px;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s;
}

.lb-nav:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.lb-nav svg {
  width: 18px;
  height: 18px;
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  width: auto;
  height: auto;
}

.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.lb-caption h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
}

.lb-caption span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(212, 175, 55, 0.6);
}

/* ── Spaces ────────────────────────────────────────────────────── */
.section-spaces {
  padding: 40px 5%;
  background: var(--cream);
}

.spaces-header {
  text-align: center;
  margin-bottom: 48px;
}

.spaces-sub {
  color: rgba(26, 45, 74, 0.7);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 12px auto 0;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.space-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.space-card:hover .space-img {
  transform: scale(1.08);
}

.space-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.95) 0%, rgba(10, 16, 32, 0.15) 50%, transparent 100%);
}

.space-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.space-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-subtle);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  backdrop-filter: blur(12px);
}

.space-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.space-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.space-card:hover .space-desc {
  max-height: 80px;
}



/* ── Connectivity ──────────────────────────────────────────────── */
.section-connectivity {
  padding: 28px 5%;
  background: var(--navy-light);
  border-top: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
}

.connectivity-header {
  text-align: center;
  margin-bottom: 32px;
}

.connect-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.connect-heading {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.connect-heading em {
  color: var(--gold);
  font-style: italic;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.connect-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.connect-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-subtle);
  transform: translateY(-4px);
}

.connect-time {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.connect-place {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Six Reasons ───────────────────────────────────────────────── */
.section-reasons {
  padding: 48px 5%;
  background: var(--cream);
}

.reasons-header {
  margin-bottom: 56px;
}

.reasons-tag {
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.reasons-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy-text);
  text-transform: none;
}

.reasons-heading span {
  font-weight: 700;
}

.reasons-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 0;
}

.reason-card {
  background: rgba(232, 228, 218, 0.5);
  border: 1px solid var(--cream-dark);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.reason-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

.reason-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.reason-card:hover .reason-top-bar {
  transform: scaleX(1);
}

.rc-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26, 45, 74, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.5s;
}

.reason-card:hover .rc-num {
  color: rgba(212, 175, 55, 0.25);
}

.rc-icon {
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.rc-icon svg {
  width: 28px;
  height: 28px;
}

.reason-card:hover .rc-icon {
  transform: scale(1.15) rotate(5deg);
}

.rc-title {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.rc-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width 0.5s;
}

.reason-card:hover .rc-bar {
  width: 48px;
}

.rc-desc {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: #5a6d80;
  line-height: 1.6;
  font-weight: 400;
}



.inv-icon svg {
  width: 22px;
  height: 22px;
}

.inv-card:hover .inv-icon {
  transform: scale(1.1);
}

.inv-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width 0.3s;
}

.inv-card:hover .inv-bar {
  width: 48px;
}

.inv-title {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-text);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.inv-desc {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: #5a6d80;
  line-height: 1.6;
  font-weight: 400;
}

/* ── Catchment ─────────────────────────────────────────────────── */
.section-catchment {
  padding: 40px 5%;
  background: var(--cream);
}

.catchment-header {
  margin-bottom: 48px;
}

.catch-tag {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.catch-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-text);
}

.catch-heading span {
  font-weight: 700;
}

.catch-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.catchment-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* Increased gap for cards */
  background: transparent; /* Removed dark background */
}

.catchment-tabs {
  display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
  .catchment-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--cream);
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .catchment-categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 20px 5% 40px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  }

  .cat-tab-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--gold-subtle);
    background: white;
    color: var(--gold-dark);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .cat-tab-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
  }

  .catchment-categories::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .cat-col {
    display: block; /* Show all cards for scrolling */
    flex: 0 0 85%; /* Cards take up most of the width */
    scroll-snap-align: center;
    padding: 32px 24px;
  }

  .cat-col.active {
    /* No longer need display: block here as they are all block */
    border-color: var(--gold);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15);
  }
}

.cat-col {
  background: white; /* Clean white cards */
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.cat-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-subtle);
}

.cat-icon {
  color: var(--gold);
  margin-bottom: 12px;
}

.cat-label {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.cat-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-text);
  margin-bottom: 20px;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(26, 45, 74, 0.75);
}

.cat-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Location ──────────────────────────────────────────────────── */
.section-location {
  padding: 40px 5%;
  background: var(--cream);
}

.location-header {
  margin-bottom: 40px;
}

.loc-tag {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.loc-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.15;
  color: var(--navy-text);
}

.loc-heading span {
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 0;
}

.nearby-list {
  display: flex;
  flex-direction: column;
}

.nearby-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.nearby-item:last-child {
  border-bottom: none;
}

.nearby-time {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  min-width: 60px;
  text-align: right;
}

.nearby-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-text);
}

.nearby-info span {
  font-size: 0.78rem;
  color: rgba(26, 45, 74, 0.6);
}

.map-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-iframe-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--cream-dark);
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-pin-bar {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.75rem;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}



/* ── CTA Band ──────────────────────────────────────────────────── */
.section-cta-band {
  position: relative;
  padding: 56px 5%;
  background: var(--navy-deep);
  text-align: center;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-heading em {
  color: var(--gold);
  font-style: italic;
}

.cta-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-cta-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Contact ───────────────────────────────────────────────────── */
.section-contact {
  padding: 40px 5%;
  background: var(--navy-mid);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-intro {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-subtle);
}

.cd-item:first-child {
  border-top: 1px solid var(--gold-subtle);
}

.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cd-icon svg {
  width: 18px;
  height: 18px;
}

.cd-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.cd-value {
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: pre-line;
}

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.form-card-heading {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-v2 {
  display: flex;
  flex-direction: column;
}

.form-field-v2 label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-field-v2 input,
.form-field-v2 select,
.form-field-v2 textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.form-field-v2 input::placeholder,
.form-field-v2 textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field-v2 input:focus,
.form-field-v2 select:focus,
.form-field-v2 textarea:focus {
  border-color: var(--gold);
}

.form-field-v2 select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-field-v2 select option {
  background: var(--navy-mid);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--ff-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-submit.success {
  background: #22c55e;
}

.form-note {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  color: #FCA5A5;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 24px;
}

.form-success svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-success strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #060c17;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-main {
  padding: 48px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 270px;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-address {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Back to Top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  box-shadow: 0 4px 20px var(--gold-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .overview-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gi-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .investor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }

  .logo {
    margin-right: auto;
  }

  .hamburger {
    display: flex;
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    margin: 0;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 280px;
    background: rgba(10, 16, 32, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0.35s;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 4px 0;
    display: inline-block;
    width: max-content;
    margin-bottom: 8px;
  }

  .btn-enquire {
    display: inline-flex;
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-right: 4px;
    order: 1;
  }

  .hero-content {
    padding: 0 5% 96px;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-arrow {
    display: flex;
    width: 32px;
    height: 32px;
  }

  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stat {
    padding: 8px 4px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-label {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-main-img {
    height: 300px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .spec-card {
    padding: 10px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gi-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gi-tall {
    grid-row: span 1;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .space-card {
    aspect-ratio: 16/10;
  }

  .space-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .space-title {
    font-size: 1rem;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }





  .location-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 5% 160px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 50%;
    font-size: 0.75rem;
    padding: 10px 12px;
    justify-content: center;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gi-large,
  .gi-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .cta-bg-text {
    font-size: 30vw;
  }
}