/* ==========================================================================
   Royal Bloom Events LLC — Design System
   ========================================================================== */

:root {
  --navy-950: #05091a;
  --navy-900: #080f28;
  --navy-800: #0c1a3d;
  --navy-700: #12244f;
  --navy-600: #1a3268;
  --navy-500: #24417f;

  --gold-600: #a97f1f;
  --gold-500: #c99b34;
  --gold-400: #d4af37;
  --gold-300: #e6c765;
  --gold-200: #f0daa0;

  --cream: #f8f2e4;
  --white: #ffffff;
  --ink-muted: rgba(248, 242, 228, 0.72);
  --ink-faint: rgba(248, 242, 228, 0.5);
  --hairline: rgba(212, 175, 55, 0.25);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Lato", "Segoe UI", sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 34px rgba(3, 8, 22, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; color: var(--ink-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.italic { font-style: italic; color: var(--gold-300); }

/* ---------- Section rhythm ---------- */
.section { padding: 64px 0; position: relative; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--navy-800); }
.section--panel {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p { max-width: 560px; margin-inline: auto; }

.ornament {
  display: block;
  text-align: center;
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin: 0 0 26px;
  opacity: 0.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(212, 175, 55, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 242, 228, 0.4);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  background: rgba(5, 9, 26, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 9, 26, 0.92);
  border-bottom-color: var(--hairline);
  padding: 12px 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { width: 62px; height: 62px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1.15;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 3px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-400);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--gold-300); }
.nav-links a.is-active::after { width: 100%; }

.nav-cta { display: none; align-items: center; gap: 18px; }
.header-social { display: none; align-items: center; gap: 8px; }
.header-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  border: 1px solid var(--hairline);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.header-social a:hover { border-color: var(--gold-400); color: var(--white); }
.header-social a svg { width: 17px; height: 17px; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-300); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(12, 26, 61, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(5,9,26,0.55) 0%, rgba(5,9,26,0.78) 55%, var(--navy-900) 100%);
}

/* Video hero (home page) */
.hero-media { position: absolute; inset: 0; overflow: hidden; background: var(--navy-900); }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(12, 26, 61, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(5,9,26,0.6) 0%, rgba(5,9,26,0.8) 55%, var(--navy-900) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content .eyebrow { color: var(--gold-300); margin-bottom: 12px; }
.hero-content h1 { margin-bottom: 0.28em; font-size: clamp(2rem, 7vw, 4rem); }
.hero-content .lede { font-size: clamp(0.95rem, 2.4vw, 1.15rem); max-width: 540px; color: var(--ink-muted); margin-bottom: 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ink-faint);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 26px;
  background: linear-gradient(var(--gold-400), transparent);
}
@media (max-height: 700px) {
  .hero-scroll { display: none; }
  .hero-actions { margin-top: 18px; }
}

/* Smaller page-header hero (used on inner pages) */
.page-hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(5,9,26,0.62) 0%, rgba(5,9,26,0.85) 70%, var(--navy-900) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.breadcrumb {
  position: relative; z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-top: 14px;
}
.breadcrumb a { color: var(--gold-300); }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-500); box-shadow: var(--shadow-card); }

.icon-badge {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  border: 1px solid var(--hairline);
  color: var(--gold-300);
  margin-bottom: 22px;
  font-size: 1.5rem;
}

/* ---------- Grids (mobile-first: single column by default) ---------- */
.grid { display: grid; gap: 24px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

/* ---------- Split layout (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media .frame-accent {
  position: absolute;
  top: -18px; right: -18px;
  width: 70%; height: 70%;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split.reverse { direction: ltr; }
.split.reverse > * { direction: ltr; }

/* ---------- Stats ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-300);
  display: block;
}
.stat .label {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.stat-bar-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
}
@media (min-width: 640px) {
  .stat-bar-3 { grid-template-columns: repeat(3, 1fr); }
}
.stat-bar-3 .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold-300);
  display: block;
}
.stat-bar-3 .label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 36px 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-400);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Before / After ---------- */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.ba-panel { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 18px;
  background: rgba(5,9,26,0.7);
  border: 1px solid var(--gold-400);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.video-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--hairline);
}
.video-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.play-btn {
  position: relative; z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(5,9,26,0.55);
  border: 1px solid var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  font-size: 1.6rem;
}
.video-note {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  background: rgba(5,9,26,0.55);
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 56px 22px;
  text-align: center;
}
.cta-banner .hero-bg::after {
  background: linear-gradient(180deg, rgba(5,9,26,0.75), rgba(5,9,26,0.9));
}
.cta-banner-content { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-actions { display: flex; gap: 18px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
}
input, select, textarea {
  font-family: var(--font-body);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, select:focus, textarea:focus { border-color: var(--gold-400); background: rgba(255,255,255,0.07); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23d4af37' stroke-width='1.6' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  border-left: 2px solid var(--gold-500);
  padding-left: 14px;
  margin-top: 6px;
}

/* ---------- Contact info blocks ---------- */
.info-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.info-row:last-child { border-bottom: none; }
.info-row .icon-badge { flex-shrink: 0; margin-bottom: 0; width: 48px; height: 48px; font-size: 1.1rem; }
.info-row h4 { margin-bottom: 4px; font-size: 1rem; }
.info-row p { margin: 0; font-size: 0.92rem; }
.placeholder-text { color: var(--gold-300); font-style: italic; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
  width: 100%;
  height: 340px;
}

.social-row { display: flex; gap: 14px; margin-top: 26px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  font-size: 1rem;
}
.social-row a:hover { border-color: var(--gold-400); color: var(--white); transform: translateY(-3px); }
.social-row a svg { width: 18px; height: 18px; }

/* ---------- Gallery ---------- */
.filter-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--white); border-color: var(--gold-500); }
.filter-btn.is-active { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-950); font-weight: 700; }

.gallery-grid {
  columns: 1;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--hairline);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(5,9,26,0.9), transparent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-300); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--ink-muted); }

/* ---------- Blog post content ---------- */
.post-content { font-size: 1.02rem; }
.post-content h2 { margin-top: 1.6em; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.post-content h3 { margin-top: 1.4em; }
.post-content p { margin-bottom: 1.3em; }
.post-content ul, .post-content ol { color: var(--ink-muted); margin: 0 0 1.3em; padding-left: 1.4em; }
.post-content li { margin-bottom: 0.5em; }
.post-content img { border-radius: var(--radius-md); margin: 1.6em 0; }
.post-content a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }
.post-content blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 22px;
  margin: 1.8em 0;
  font-style: italic;
  color: var(--gold-200);
}

/* ---------- Testimonials ---------- */
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card .icon-badge { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--gold-300); }
.testimonial-quote { font-style: italic; color: var(--ink-muted); flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author h4 { margin: 0 0 2px; font-size: 0.98rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gold-300); }

/* ---------- Rentals ---------- */
.rental-card { display: flex; flex-direction: column; height: 100%; }
.rental-card img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 22px;
}
.rental-list { list-style: none; padding: 0; margin: 16px 0 0; }
.rental-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-muted);
  border-bottom: 1px dashed var(--hairline);
}
.rental-list li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
}
.rental-list li:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--hairline);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.footer-brand img { width: 52px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 0.92rem; color: var(--ink-muted); }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive — mobile-first: base rules above are for small screens,
   these min-width tiers progressively add columns / desktop nav as the
   viewport grows.
   ========================================================================== */

/* ~ Small tablets and up: forms and process steps gain columns */
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { columns: 2 220px; }
}

/* ~ Tablets and up: two-column split layouts, desktop nav unlocks */
@media (min-width: 860px) {
  .nav-links, .nav-cta, .header-social { display: flex; }
  .nav-toggle { display: none; }

  .section { padding: 110px 0; }
  .section--tight { padding: 70px 0; }
  .page-hero { padding: 190px 0 110px; }
  .cta-banner { padding: 90px 40px; }
  .site-footer { padding: 90px 0 30px; }

  .split { grid-template-columns: 1fr 1fr; gap: 70px; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }

  .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ba-wrap { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 0; }
}

/* ~ Desktop: full multi-column grids */
@media (min-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4, .process-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
  .gallery-grid { columns: 3 260px; column-gap: 22px; }
}

/* ---------- Quote page layout ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .quote-grid { grid-template-columns: 1.4fr 1fr; gap: 60px; }
}

/* ---------- Quick action buttons (Contact Us / Request Quote) ---------- */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}
.fab-btn:hover { transform: scale(1.06); background: var(--navy-700); }
.fab-btn svg { width: 24px; height: 24px; }
.fab-btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  border-color: transparent;
}
.fab-btn-gold:hover { background: linear-gradient(135deg, var(--gold-200), var(--gold-500)); }

/* ---------- WhatsApp enquiry widget ---------- */
.wa-widget {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.wa-fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-icon { width: 24px; height: 24px; }
.wa-fab .wa-icon-close { display: none; }
.wa-fab.is-active .wa-icon-chat { display: none; }
.wa-fab.is-active .wa-icon-close { display: block; }

.wa-panel {
  width: min(320px, calc(100vw - 36px));
  max-height: min(440px, calc(100vh - 120px));
  background: var(--navy-800);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.wa-panel.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.wa-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-bottom: 1px solid var(--hairline);
  flex-shrink: 0;
}
.wa-panel-header img { width: 38px; height: 38px; flex-shrink: 0; }
.wa-panel-header strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}
.wa-panel-header .wa-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--ink-faint);
}
.wa-panel-header .wa-status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25d366;
}
.wa-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.wa-close:hover { color: var(--gold-300); }

.wa-panel-body { padding: 18px; overflow-y: auto; }
.wa-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 16px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.wa-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.wa-chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-size: 0.76rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
}
.wa-chip:hover, .wa-chip.is-selected {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.08);
}
.wa-start { font-size: 0.78rem; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: flex-end; }
.mobile-nav-close { background: none; border: none; color: var(--gold-300); font-size: 1.8rem; cursor: pointer; }
.mobile-nav-links { list-style: none; padding: 0; margin: 40px 0; display: flex; flex-direction: column; gap: 26px; }
.mobile-nav-links a { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.mobile-nav-links a.is-active { color: var(--gold-300); }
