/* =========================================================
   THE SPARKLING MATES — Design System
   ========================================================= */

:root {
  /* Colors — matched to official logo (navy / gold / pink / blue accents) */
  --foam-white: #FAF9F6;
  --ocean: #0F2A3D;
  --ocean-soft: #1C3E54;
  --aqua: #C9962F;
  --aqua-light: #E8C875;
  --aqua-dark: #A87B1F;
  --gold: #C9962F;
  --gold-light: #E8C875;
  --gold-pale: #F7EFDC;
  --sun: #C9962F;
  --pink-accent: #E0729A;
  --blue-accent: #3E7CB1;
  --mist: #F3F0EA;
  --mist-deep: #E8E1D3;
  --white: #FFFFFF;
  --ink-soft: #5C6670;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Misc */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -20px rgba(11, 61, 68, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(11, 61, 68, 0.18);
  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ocean);
  background: var(--foam-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 var(--space-sm); color: var(--ink-soft); }

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

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Eyebrow label === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-dark);
  margin-bottom: var(--space-xs);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--sun);
  display: inline-block;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--aqua-dark); transform: translateY(-2px); }
.btn-accent {
  background: var(--sun);
  color: var(--ocean);
}
.btn-accent:hover { background: #ffdb66; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}
.btn-outline:hover { background: var(--ocean); color: var(--white); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ocean); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 252, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,61,68,0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ocean);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--aqua);
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--aqua-dark); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ocean);
}
.nav-phone svg { width: 18px; height: 18px; stroke: var(--aqua-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ocean);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links { 
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-phone { display: none; }
  .menu-toggle { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-copy p.lead {
  font-size: 1.15rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.hero-trust .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ocean);
}
.hero-trust .stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .check {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--aqua);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge .check svg { width: 20px; height: 20px; stroke: white; }
.hero-badge strong { display: block; font-size: 0.95rem; }
.hero-badge span { font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-badge { left: 8px; bottom: -16px; padding: 0.8rem 1rem; }
}

/* =========================================================
   SECTIONS — generic
   ========================================================= */
.section { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }
.section-mist { background: var(--mist); }
.section-ocean { background: var(--ocean); color: var(--white); }
.section-ocean p { color: rgba(255,255,255,0.75); }
.section-ocean h2, .section-ocean h3 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card img { width: 64px; height: 64px; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { margin-bottom: 0; font-size: 0.95rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.gallery-grid-3 { grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.gallery-grid-4 { grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 900px) {
  .gallery-grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY US / FEATURES
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-item {
  text-align: center;
  padding: var(--space-md) 1rem;
}
.feature-item .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--aqua);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.feature-item .icon-circle svg { width: 28px; height: 28px; stroke: white; fill: none; }
.feature-item h3 { font-size: 1.05rem; }
.feature-item p { font-size: 0.9rem; margin: 0; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-strip .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--sun);
}
.stat-strip .lbl { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
.split-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.value-list { margin-top: var(--space-md); display: grid; gap: 0.9rem; }
.value-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.98rem;
}
.value-list .tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mist-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-list .tick svg { width: 13px; height: 13px; stroke: var(--aqua-dark); }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: -1; }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--aqua) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; text-align: center; }
.timeline-step .dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.timeline-step h3 { font-size: 1.02rem; }
.timeline-step p { font-size: 0.88rem; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.team-card .avatar {
  background: var(--mist);
  padding: 2rem 0 1rem;
}
.team-card .avatar img { width: 84px; height: 84px; margin: 0 auto; border-radius: 50%; background: var(--white); padding: 6px; }
.team-card-body { padding: 1.2rem; }
.team-card h3 { font-size: 1rem; margin-bottom: 2px; }
.team-card .role { color: var(--aqua-dark); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--sun); font-size: 1rem; margin-bottom: 0.7rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 10px; margin-top: 1rem; }
.testi-who .initial {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--mist-deep);
  color: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testi-who strong { font-size: 0.9rem; display: block; }
.testi-who span { font-size: 0.78rem; color: var(--ink-soft); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--aqua);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2, .cta-band p { color: var(--ocean); }
.cta-band .btn-primary { background: var(--ocean); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
}
.quick-quote-grid {
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}
.contact-info-card {
  background: var(--ocean);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: rgba(255,255,255,0.7); }
.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-info-row .icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-row .icon-circle svg { width: 19px; height: 19px; stroke: var(--aqua-light); fill: none; }
.contact-info-row strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.contact-social { display: flex; gap: 10px; margin-top: var(--space-md); }
.contact-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.contact-social a:hover { background: var(--aqua); }
.contact-social svg { width: 16px; height: 16px; stroke: white; fill: none; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ocean);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #DCEEEC;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--mist);
  color: var(--ocean);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  background: var(--white);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.6rem; }
.form-success {
  display: none;
  background: var(--mist);
  border: 1.5px solid var(--aqua);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #FFF1E8;
  border: 1.5px solid #FFB088;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #B5481B;
}
.form-error.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

.map-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.faq-item {
  border-bottom: 1px solid rgba(11,61,68,0.1);
  padding: 1.3rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}
.faq-q .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--aqua-dark);
  transition: transform 0.2s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 0.92rem;
}
.faq-item.open .faq-a { max-height: 220px; margin-top: 0.8rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ocean);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--aqua-light); }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--aqua); }
.footer-social svg { width: 15px; height: 15px; stroke: white; fill: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom a:hover { color: var(--aqua-light); }
.footer-legal { display: flex; gap: 1.4rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   PAGE HEADER (About / Contact)
   ========================================================= */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { justify-content: center; }
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}
.breadcrumb a { color: var(--aqua-dark); font-weight: 700; }

/* Sparkle divider */
.divider-sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: var(--space-lg) 0;
  color: var(--aqua);
}
.divider-sparkle::before, .divider-sparkle::after {
  content: "";
  height: 1px;
  width: 80px;
  background: repeating-linear-gradient(to right, var(--mist-deep) 0 6px, transparent 6px 12px);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
  border: none;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; stroke: white; }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
}
@media (max-width: 700px) {
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    background: var(--ocean);
    padding: 0.8rem 1rem;
    gap: 0.7rem;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.15);
  }
  .mobile-call-bar a { flex: 1; text-align: center; }
  body { padding-bottom: 64px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
