/* ==========================================================================
   Grandvista Events — static site stylesheet
   Plain CSS, no build step. Organised by component, top to bottom.
   ========================================================================== */

:root {
  --ink: #0b1526;
  --ink-2: #101d33;
  --navy: #142544;
  --navy-light: #22375e;

  --gold: #c9a24a;
  --gold-light: #e4c983;
  --gold-dark: #a37f34;

  --ivory: #faf7f1;
  --cream: #f2ead9;
  --stone: #e9e1d0;

  --shadow-soft: 0 20px 60px -20px rgba(11, 21, 38, 0.35);
  --shadow-card: 0 12px 30px -12px rgba(11, 21, 38, 0.25);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: 0.01em; }
p { margin: 0; }
input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section--tight { padding: 4rem 0; }
.section--cream { background: rgba(242, 234, 217, 0.4); }
.section--ink { background: var(--ink); color: var(--ivory); }

.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.section--ink .eyebrow, .on-dark .eyebrow { color: var(--gold-light); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ---------- Section heading ---------- */
.section-heading { display: flex; flex-direction: column; gap: 1rem; max-width: 42rem; }
.section-heading--center { align-items: center; text-align: center; margin: 0 auto; }
.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-wrap: balance;
}
.section-heading p { color: rgba(11, 21, 38, 0.65); font-size: 1.05rem; line-height: 1.7; }
.on-dark .section-heading h2 { color: var(--ivory); }
.on-dark .section-heading p { color: rgba(250, 247, 241, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--navy); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 1px solid rgba(11, 21, 38, 0.25); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.btn-ghost { border: 1px solid rgba(250, 247, 241, 0.4); color: var(--ivory); }
.btn-ghost:hover { background: var(--ivory); color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.is-scrolled, .navbar.is-open {
  background: rgba(11, 21, 38, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease;
}
@media (min-width: 640px) { .navbar__inner { padding: 1.25rem 2rem; } }
.navbar.is-scrolled .navbar__inner { padding: 0.75rem 1.25rem; }
@media (min-width: 640px) { .navbar.is-scrolled .navbar__inner { padding: 0.75rem 2rem; } }

.navbar__brand { display: flex; align-items: center; gap: 0.75rem; }
.navbar__logo {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--ink); overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, 0.3);
}
.navbar__logo img { width: 36px; height: 36px; object-fit: contain; }
.navbar__name { font-family: var(--font-display); color: var(--ivory); line-height: 1.2; }
.navbar__name strong { display: block; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; }
.navbar__name span { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold-light); }

.navbar__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }
.navbar__links a { font-size: 0.9rem; font-weight: 500; color: rgba(250, 247, 241, 0.85); transition: color 0.2s ease; }
.navbar__links a:hover, .navbar__links a.is-active { color: var(--gold-light); }

.navbar__cta { display: none; }
@media (min-width: 1024px) { .navbar__cta { display: block; } }

.navbar__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; color: var(--ivory);
}
@media (min-width: 1024px) { .navbar__toggle { display: none; } }
.navbar__toggle svg { width: 24px; height: 24px; }
.navbar__toggle .icon-close { display: none; }
.navbar.is-open .navbar__toggle .icon-menu { display: none; }
.navbar.is-open .navbar__toggle .icon-close { display: block; }

.navbar__mobile {
  display: none;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  padding: 1rem 1.25rem 2rem;
}
.navbar.is-open .navbar__mobile { display: block; }
.navbar__mobile a {
  display: block; padding: 0.85rem 0.75rem; border-radius: 0.5rem;
  font-size: 1rem; font-weight: 500; color: rgba(250, 247, 241, 0.85);
}
.navbar__mobile a.is-active { background: rgba(250, 247, 241, 0.1); color: var(--gold-light); }
.navbar__mobile .btn { margin-top: 0.75rem; }

/* ---------- Page header (inner-page banner) ---------- */
.page-header {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.page-header img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(11,21,38,0.7) 60%, rgba(11,21,38,0.4));
}
.page-header__content { position: relative; z-index: 2; max-width: 42rem; padding: 8rem 0 4rem; }
.page-header__content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--ivory); text-wrap: balance; }
.page-header__content p { margin-top: 1rem; color: rgba(250, 247, 241, 0.75); font-size: 1.05rem; line-height: 1.7; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(11,21,38,0.7) 55%, rgba(11,21,38,0.3));
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,21,38,0.6), transparent 55%, rgba(11,21,38,0.4));
}
.hero__content { position: relative; z-index: 2; padding: 10rem 0 5rem; max-width: 46rem; }
.hero__content h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); color: var(--ivory); text-wrap: balance; margin-top: 1.5rem; }
.hero__content p { margin-top: 1.5rem; max-width: 34rem; color: rgba(250, 247, 241, 0.8); font-size: 1.1rem; line-height: 1.7; }
.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(250, 247, 241, 0.7); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Two-column intro (About/Trust) ---------- */
.intro-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.intro-media { position: relative; }
.intro-media__main { aspect-ratio: 4 / 5; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-soft); }
.intro-media__main img { width: 100%; height: 100%; object-fit: cover; }
.intro-media__accent {
  position: absolute; bottom: -2rem; right: -1.5rem; width: 10rem; aspect-ratio: 1;
  border-radius: 1rem; overflow: hidden; border: 4px solid var(--ivory); box-shadow: var(--shadow-soft);
  display: none;
}
@media (min-width: 640px) { .intro-media__accent { display: block; } }
.intro-media__accent img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy { display: flex; flex-direction: column; gap: 2rem; }
.intro-copy > p { max-width: 36rem; color: rgba(11, 21, 38, 0.65); font-size: 1rem; line-height: 1.75; }

/* ---------- Stats section ---------- */
.stats-section {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  background: linear-gradient(to bottom, var(--ink), var(--navy), var(--ink));
}
.stats-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 162, 74, 0.22), transparent 70%);
}
.stats-section::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: radial-gradient(rgba(228, 201, 131, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; padding: 1.5rem 1rem; border-bottom: 1px solid rgba(250,247,241,0.1); }
.stat:nth-child(odd) { border-right: 1px solid rgba(250,247,241,0.1); }
@media (min-width: 640px) {
  .stat { border-bottom: none; border-right: 1px solid rgba(250,247,241,0.1); }
  .stat:last-child { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(250,247,241,0.1); }
}
.stat__icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: rgba(250, 247, 241, 0.06); color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(201,162,74,0.3);
}
.stat__icon svg { width: 1.5rem; height: 1.5rem; }
.stat__value { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; color: var(--ivory); }
.stat__label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250, 247, 241, 0.55); }

/* ---------- Feature banner (in Services section) ---------- */
.feature-banner { position: relative; margin-top: 3.5rem; aspect-ratio: 16 / 8; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .feature-banner { aspect-ratio: 21 / 9; } }
.feature-banner img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,21,38,0.8), rgba(11,21,38,0.1) 60%, transparent); }
.feature-banner__caption { position: absolute; left: 0; bottom: 0; z-index: 1; padding: 1.5rem; }
@media (min-width: 640px) { .feature-banner__caption { padding: 2.5rem; } }
.feature-banner__caption p { margin-top: 0.5rem; max-width: 26rem; color: var(--ivory); font-size: 1.25rem; font-weight: 600; font-family: var(--font-display); }

/* ---------- Grid header row (heading + CTA) ---------- */
.section-row {
  display: flex; flex-direction: column; gap: 2rem;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 640px) { .section-row { flex-direction: row; align-items: flex-end; } }
.section-row .btn { flex-shrink: 0; }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(11,21,38,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card__media { position: relative; height: 14rem; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-card__media img { transform: scale(1.1); }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,21,38,0.7), rgba(11,21,38,0.05) 60%, transparent); }
.service-card__icon {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: rgba(250, 247, 241, 0.9); color: var(--ink);
}
.service-card__icon svg { width: 1.25rem; height: 1.25rem; }
.service-card__body { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
.service-card__body h3 { font-size: 1.25rem; }
.service-card__body p { flex: 1; font-size: 0.9rem; color: rgba(11,21,38,0.6); line-height: 1.6; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); }
.service-card__link svg { width: 1rem; height: 1rem; transition: transform 0.3s ease; }
.service-card:hover .service-card__link svg { transform: translate(3px, -3px); }

/* ---------- Package cards ---------- */
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
.package-card {
  position: relative; display: flex; flex-direction: column; gap: 1.5rem;
  padding: 2rem; border-radius: 1rem; background: #fff; box-shadow: var(--shadow-card);
  border: 1px solid rgba(11,21,38,0.05); transition: transform 0.5s ease;
}
.package-card:hover { transform: translateY(-6px); }
.package-card--featured { background: var(--ink); color: var(--ivory); border-color: rgba(201,162,74,0.4); }
@media (min-width: 640px) { .package-card--featured { transform: scale(1.05); } }
.package-card__badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 0.3rem 1rem; border-radius: 999px;
}
.package-card__tier { font-size: 1.4rem; }
.package-card--featured .package-card__tier { color: var(--gold-light); }
.package-card__budget { margin-top: 0.5rem; font-size: 1.4rem; font-weight: 600; }
.package-card__desc { font-size: 0.9rem; color: rgba(11,21,38,0.6); line-height: 1.6; }
.package-card--featured .package-card__desc { color: rgba(250,247,241,0.75); }
.package-card__emi {
  display: inline-flex; align-items: center; gap: 0.4rem; width: fit-content;
  padding: 0.35rem 1rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; background: rgba(201,162,74,0.1); color: var(--gold-dark);
}
.package-card--featured .package-card__emi { background: rgba(250,247,241,0.1); color: var(--gold-light); }
.package-card__emi svg { width: 0.9rem; height: 0.9rem; }
.package-card__list { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.package-card__list li { display: flex; align-items: center; gap: 0.5rem; }
.package-card__list svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--gold-dark); }
.packages-note { margin-top: 2rem; text-align: center; font-size: 0.75rem; color: rgba(11,21,38,0.45); }

/* ---------- EMI eligibility ---------- */
.emi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .emi-grid { grid-template-columns: repeat(2, 1fr); } }
.emi-card { display: flex; flex-direction: column; gap: 1.5rem; padding: 2rem; border-radius: 1rem; background: #fff; box-shadow: var(--shadow-card); border: 1px solid rgba(11,21,38,0.05); }
.emi-card__head { display: flex; align-items: center; gap: 1rem; }
.emi-card__head span { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 999px; background: rgba(11,21,38,0.05); color: var(--gold-dark); }
.emi-card__head svg { width: 1.5rem; height: 1.5rem; }
.emi-card__head h3 { font-size: 1.2rem; }
.emi-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.emi-stat { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem; border-radius: 0.75rem; background: rgba(242,234,217,0.5); }
.emi-stat__label { display: flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(11,21,38,0.45); }
.emi-stat__label svg { width: 0.85rem; height: 0.85rem; }
.emi-stat__value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.emi-stat__hint { font-size: 0.7rem; color: rgba(11,21,38,0.5); }
.emi-note { max-width: 40rem; margin: 2rem auto 0; text-align: center; font-size: 0.75rem; color: rgba(11,21,38,0.45); }

/* ---------- Event cards ---------- */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(6, 1fr); } }
.event-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 22rem; border-radius: 1rem; overflow: hidden; isolation: isolate;
}
.event-card--large { grid-column: span 1; }
@media (min-width: 1024px) { .event-card--large { grid-column: span 4; grid-row: span 2; } .event-card--small { grid-column: span 2; } }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.event-card:hover img { transform: scale(1.1); }
.event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,21,38,0.9), rgba(11,21,38,0.3) 55%, transparent); }
.event-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.5rem; padding: 1.75rem; }
.event-card__body h3 { font-size: 1.5rem; color: var(--ivory); }
.event-card__body p { max-width: 22rem; font-size: 0.9rem; color: rgba(250,247,241,0.8); line-height: 1.6; }
.event-card__body a { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--ivory); text-decoration: underline; text-decoration-color: rgba(201,162,74,0.6); text-underline-offset: 4px; }

/* ---------- Why Grandvista ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem 3rem; margin-top: 4rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(11,21,38,0.1); }
.why-item__number { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold-dark); }
.why-item h3 { font-size: 1.2rem; }
.why-item p { font-size: 0.9rem; color: rgba(11,21,38,0.6); line-height: 1.6; }

/* ---------- Process timeline ---------- */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(6, 1fr); } }
.process-step { padding: 1.5rem; border-radius: 0.75rem; background: rgba(250,247,241,0.05); box-shadow: inset 0 0 0 1px rgba(250,247,241,0.1); }
.process-step__number { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-light); }
.process-step h3 { margin-top: 0.5rem; font-size: 1.05rem; color: var(--ivory); }
.process-step p { margin-top: 0.5rem; font-size: 0.85rem; color: rgba(250,247,241,0.65); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonial { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; max-width: 48rem; margin: 0 auto; }
.testimonial svg { width: 2.5rem; height: 2.5rem; color: var(--gold); }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1.6; text-wrap: balance; }
.testimonial__author strong { display: block; }
.testimonial__author span { font-size: 0.85rem; color: rgba(11,21,38,0.5); }

/* ---------- CTA ---------- */
.cta-section { position: relative; overflow: hidden; background: var(--ink); padding: 7rem 0 8rem; }
.cta-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.cta-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink), rgba(11,21,38,0.8) 60%, rgba(11,21,38,0.5)); }
.cta-content { position: relative; z-index: 1; max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.cta-content h2 { font-size: clamp(1.9rem, 5vw, 3rem); color: var(--ivory); text-wrap: balance; }
.cta-content p { max-width: 34rem; color: rgba(250,247,241,0.75); font-size: 1.05rem; line-height: 1.7; }
.cta-content .actions { margin-top: 0.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.gallery-filters button {
  padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  background: rgba(11,21,38,0.05); color: rgba(11,21,38,0.6); transition: all 0.25s ease;
}
.on-dark .gallery-filters button { background: rgba(250,247,241,0.08); color: rgba(250,247,241,0.6); }
.gallery-filters button.is-active { background: var(--ink); color: var(--ivory); }
.on-dark .gallery-filters button.is-active { background: var(--gold); color: var(--ink); }

.gallery-grid { column-count: 1; column-gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }
.gallery-item {
  position: relative; display: block; width: 100%; margin: 0 0 1rem; border-radius: 0.75rem;
  overflow: hidden; break-inside: avoid; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem;
  background: linear-gradient(to top, rgba(11,21,38,0.6), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }
.gallery-item__caption span { color: var(--ivory); font-size: 0.85rem; font-weight: 500; text-align: left; }
.gallery-item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 1rem;
  background: rgba(11,21,38,0.95); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox figure { max-width: 56rem; max-height: 85vh; margin: 0; }
.lightbox img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: 0.5rem; box-shadow: var(--shadow-soft); }
.lightbox figcaption { margin-top: 0.75rem; text-align: center; font-size: 0.85rem; color: rgba(250,247,241,0.7); }
.lightbox__btn {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgba(250,247,241,0.1); color: var(--ivory);
}
.lightbox__btn:hover { background: rgba(250,247,241,0.2); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 640px) { .lightbox__prev { left: 1.5rem; } .lightbox__next { right: 1.5rem; } }
.lightbox__btn svg { width: 1.5rem; height: 1.5rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-list li span.ico { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgba(11,21,38,0.05); color: var(--gold-dark); }
.contact-list li span.ico svg { width: 1.25rem; height: 1.25rem; }
.contact-list li .label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(11,21,38,0.45); }
.contact-list li a, .contact-list li p { color: rgba(11,21,38,0.8); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact-actions .whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 999px; background: #25d366; color: #fff; font-weight: 600; font-size: 0.9rem; }
.contact-actions .whatsapp svg, .contact-actions .call svg { width: 1rem; height: 1rem; }
.contact-actions .call { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 999px; border: 1px solid rgba(11,21,38,0.2); font-weight: 600; font-size: 0.9rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 1.25rem; padding: 2.5rem; border-radius: 1rem; background: #fff; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(11,21,38,0.5); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid rgba(11,21,38,0.15);
  background: #fff; font-size: 0.9rem; color: var(--ink); transition: border-color 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(11,21,38,0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-dark); }
.form-success { display: none; flex-direction: column; align-items: center; gap: 1rem; text-align: center; padding: 3rem 1.5rem; }
.form-success svg { width: 3rem; height: 3rem; color: var(--gold-dark); }
.form-success.is-visible { display: flex; }
.enquiry-form.is-hidden { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--ivory); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand p { max-width: 20rem; font-size: 0.9rem; color: rgba(250,247,241,0.6); line-height: 1.6; }
.footer h4 { margin-bottom: 1.25rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-light); }
.footer ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; color: rgba(250,247,241,0.65); }
.footer ul a:hover { color: var(--gold-light); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer__contact svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--gold-light); }
.footer__bottom { border-top: 1px solid rgba(250,247,241,0.1); }
.footer__bottom .container { display: flex; flex-direction: column-reverse; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.5rem 1.25rem; font-size: 0.75rem; color: rgba(250,247,241,0.5); }
@media (min-width: 640px) { .footer__bottom .container { flex-direction: row; padding: 1.5rem 2rem; } }
.footer__bottom .links { display: flex; gap: 1.5rem; }

/* ---------- Floating buttons ---------- */
.floating-actions { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-actions .call {
  display: none; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 999px; background: var(--ink); color: var(--ivory); box-shadow: var(--shadow-soft);
}
@media (max-width: 639px) { .floating-actions .call { display: flex; } }
.floating-actions .whatsapp {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 999px; background: #25d366; color: #fff; box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.floating-actions .whatsapp:hover { transform: scale(1.05); }
.floating-actions svg { width: 22px; height: 22px; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.legal-content { max-width: 48rem; margin: 0 auto; padding: 5rem 1.25rem; color: rgba(11,21,38,0.7); line-height: 1.75; }
.not-found { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; text-align: center; padding: 2rem 1.25rem; }
.not-found__code { font-family: var(--font-display); font-size: 4rem; font-weight: 600; color: var(--gold-dark); }

.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
