/* ==========================================================================
   OASIS STILL WATERS — DESIGN SYSTEM
   Deep navy + gold, coastal-calm, "still waters" ripple motif.
   ========================================================================== */

:root{
  /* --- Brand palette (from the Oasis logo) --- */
  --navy-950: #071433;
  --navy-900: #0B1E4B;
  --navy-800: #123068;
  --navy-700: #1B3B8C;
  --navy-600: #2A56B8;
  --gold-500: #D4A947;
  --gold-400: #E4C06C;
  --gold-100: #F7EBCC;
  --ice-50:  #F6FAFF;
  --ice-100: #EAF2FF;
  --ice-200: #D9E8FF;
  --ink-900: #0E1730;
  --ink-700: #3A4664;
  --ink-500: #6B7794;
  --white: #FFFFFF;
  --whatsapp: #25D366;

  /* --- Type --- */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* --- Layout --- */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* --- Shadow --- */
  --shadow-sm: 0 2px 10px rgba(11,30,75,0.08);
  --shadow-md: 0 10px 30px rgba(11,30,75,0.14);
  --shadow-lg: 0 20px 50px rgba(11,30,75,0.22);

  --nav-height: 76px;
}

/* --- Reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--ice-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--navy-900); margin:0 0 .5em; line-height:1.15; }
p{ margin:0 0 1em; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size:1rem; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

:focus-visible{
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.section{ padding: 72px 0; }
.section--tight{ padding: 48px 0; }
.section--navy{ background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: var(--ice-100); }
.section--navy h2, .section--navy h3{ color: var(--white); }
.section--ice{ background: var(--ice-100); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--ice-200);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  margin-bottom: 14px;
}
.section--navy .eyebrow{ background: rgba(255,255,255,0.1); color: var(--gold-400); }

.section-head{ max-width: 640px; margin-bottom: 40px; }
.section-head p{ color: var(--ink-500); font-size: 1.05rem; }
.section--navy .section-head p{ color: var(--ice-200); }
.section-head--center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-display);
  font-weight:600; font-size:0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

.btn--gold{ background: var(--gold-500); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn--gold:hover{ background: var(--gold-400); box-shadow: var(--shadow-md); }

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

.btn--outline-navy{ background: transparent; border-color: var(--navy-700); color: var(--navy-800); }
.btn--outline-navy:hover{ background: var(--navy-900); color:var(--white); }

.btn--whatsapp{ background: var(--whatsapp); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover{ background: #1fbd5a; box-shadow: var(--shadow-md); }

.btn--navy{ background: var(--navy-900); color: var(--white); }
.btn--navy:hover{ background: var(--navy-800); }

.btn--sm{ padding: 10px 18px; font-size: 0.85rem; }
.btn--block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 200;
  background: rgba(11,30,75,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--nav-height);
  display:flex; align-items:center;
  box-shadow: 0 2px 18px rgba(0,0,0,0.15);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap: 16px; }

.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ width:44px; height:44px; border-radius:50%; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{ font-family: var(--font-display); font-size:1.05rem; color:var(--white); letter-spacing:0.02em; }
.brand-text span{ font-size:0.68rem; color: var(--gold-400); letter-spacing:0.12em; text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap: 6px; }
.nav-links a{
  color: var(--ice-200); font-weight:500; font-size:0.94rem;
  padding: 10px 14px; border-radius: var(--radius-pill);
  transition: background .18s ease, color .18s ease;
  position:relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ background: rgba(255,255,255,0.1); color: var(--white); }
.nav-links a[aria-current="page"]{ color: var(--gold-400); }

.nav-cta{ display:flex; align-items:center; gap:10px; }

.nav-toggle{
  display:none;
  background:none; border:none; color:var(--white);
  width:44px; height:44px; border-radius:10px;
  align-items:center; justify-content:center;
}
.nav-toggle:hover{ background: rgba(255,255,255,0.1); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  display:block; width:22px; height:2px; background:var(--white); border-radius:2px;
  position:relative; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before, .nav-toggle span::after{ content:""; position:absolute; left:0; }
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{
    position: fixed; top: var(--nav-height); left:0; right:0;
    flex-direction:column; align-items:stretch; gap:2px;
    background: var(--navy-900);
    padding: 12px 20px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity:0; visibility:hidden; pointer-events:none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    max-height: calc(100vh - var(--nav-height));
    overflow-y:auto;
  }
  .nav-links.is-open{ opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
  .nav-links a{ padding:14px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius:8px; }
  .nav-cta .btn--outline{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (min-width: 901px){
  .nav-cta .btn-label-call{ display:inline; }
}

/* ==========================================================================
   HERO PHOTO BACKGROUND (Home page)
   Real Oasis customer + team photo, full-bleed with a navy scrim
   for text contrast.
   ========================================================================== */
.frame-bg{
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
  background: var(--navy-950); /* shows instantly before the photo decodes */
}
.frame-bg .hero-photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(1.05) blur(0.6px);
}
.frame-bg .scrim--photo{
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,16,42,0.94) 0%, rgba(6,16,42,0.86) 26%, rgba(7,20,51,0.55) 55%, rgba(7,20,51,0.65) 100%),
    linear-gradient(0deg, rgba(7,20,51,0.8) 0%, rgba(7,20,51,0.2) 30%, rgba(7,20,51,0.12) 70%, rgba(7,20,51,0.6) 100%);
}
.frame-bg .grain{
  position:absolute; inset:0; opacity:0.05; mix-blend-mode:overlay; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow:hidden;
  padding: 64px 0 0;
}
.hero > .frame-bg{ position:absolute; }
.hero .hero-inner{ position:relative; z-index:2; }
.hero-inner{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items:center;
  padding-bottom: 90px;
}
.hero-copy .eyebrow{ background: rgba(255,255,255,0.1); color: var(--gold-400); }
.hero h1{
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight:700;
  letter-spacing: -0.01em;
}
.hero h1 em{ font-style:normal; color: var(--gold-400); }
.hero p.lede{ color: var(--ice-200); font-size:1.12rem; max-width: 46ch; }
.hero-stats{ display:flex; gap: 28px; margin-top: 34px; flex-wrap:wrap; }
.hero-stats div{ min-width: 110px; }
.hero-stats strong{ display:block; font-family: var(--font-display); font-size:1.7rem; color:var(--gold-400); }
.hero-stats span{ font-size:0.82rem; color: var(--ice-200); }

.hero-art{ position:relative; display:flex; justify-content:center; }
.hero-art .logo-halo{
  width: min(360px, 80vw); aspect-ratio:1/1; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, rgba(212,169,71,0.35), transparent 60%);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-art img{ width: 78%; border-radius:50%; box-shadow: 0 30px 70px rgba(0,0,0,0.45); animation: float 6s ease-in-out infinite; }
.hero-art .ring{
  position:absolute; inset:0; border-radius:50%;
  border: 1.5px dashed rgba(228,192,108,0.4);
  animation: spin 40s linear infinite;
}
@keyframes float{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
@keyframes spin{ to{ transform: rotate(360deg); } }

/* Still-waters ripple divider — signature structural device */
.ripple-divider{
  display:block; width:100%; height: 70px; margin-top:-2px;
}
.ripple-divider path{ fill: var(--ice-50); }
.ripple-divider.to-navy path{ fill: var(--navy-900); }
.ripple-divider.to-ice path{ fill: var(--ice-100); }
.ripple-divider.flip{ transform: rotate(180deg); }

@media (max-width: 940px){
  .hero-inner{ grid-template-columns: 1fr; text-align:left; padding-bottom: 60px; }
  .hero-art{ order:-1; margin-bottom: 8px; }
  .hero-art .logo-halo{ width: min(220px, 60vw); }
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.grid{ display:grid; gap: 26px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid--3, .grid--4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid--3, .grid--4, .grid--2{ grid-template-columns: 1fr; } }

.card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid rgba(11,30,75,0.05);
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon-badge{
  width:52px; height:52px; border-radius:14px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.card .icon-badge svg{ width:26px; height:26px; }
.card h3{ font-size:1.12rem; margin-bottom:8px; }
.card p{ color: var(--ink-500); font-size:0.95rem; margin-bottom:0; }

/* Product card */
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid rgba(11,30,75,0.06);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .thumb{
  background: linear-gradient(160deg, var(--ice-100), var(--ice-200));
  padding: 18px 18px 0;
  display:flex; align-items:flex-end; justify-content:center;
  aspect-ratio: 4/3.4;
}
.product-card .thumb img{ height:100%; width:auto; object-fit:contain; }
.product-card .body{ padding: 20px 20px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card .tag{
  align-self:flex-start;
  font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--navy-700); background: var(--ice-200); padding:4px 10px; border-radius: var(--radius-pill);
}
.product-card h3{ font-size:1.15rem; margin-bottom:2px; }
.product-card p{ color: var(--ink-500); font-size:0.92rem; flex:1; }
.product-card .card-actions{ display:flex; gap:10px; margin-top:6px; flex-wrap:wrap; }

/* ==========================================================================
   SCROLL-LINKED PRODUCT SHOWCASE (Products page)
   One product at a time slides in from the right as the page scrolls,
   driven directly by scroll position (not a one-shot reveal).
   ========================================================================== */
.showcase{
  position: relative;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 12%, var(--navy-900) 88%, var(--navy-950));
}
.showcase-sticky{
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
}
.showcase-bg{
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.showcase-bg-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
  filter: saturate(1.05);
}
.showcase-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,16,42,0.88) 0%, rgba(6,16,42,0.72) 40%, rgba(6,16,42,0.9) 100%),
    linear-gradient(90deg, rgba(6,16,42,0.55) 0%, rgba(6,16,42,0.25) 50%, rgba(6,16,42,0.55) 100%);
}
.showcase-head{
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 28px clamp(20px, 5vw, 64px) 0;
  color: var(--white);
}
.showcase-head .eyebrow{ background: rgba(255,255,255,0.1); color: var(--gold-400); margin:0; }
.showcase-count{
  font-family: var(--font-display); font-weight:600; font-size:0.9rem;
  color: var(--ice-200); letter-spacing:0.04em;
}
.showcase-count strong{ color: var(--gold-400); font-size:1.05rem; }

.showcase-track{
  display:flex;
  height:100%;
  position: relative; z-index: 2;
  will-change: transform;
}
.showcase-panel{
  flex: 0 0 100vw;
  max-width: 100vw;
  height: 100%;
  display:flex; align-items:center;
  padding: 0 clamp(20px, 6vw, 90px);
  transition: opacity .35s ease;
}
.showcase-panel-inner{
  display:grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items:center;
  width:100%; max-width: 1180px; margin: 0 auto;
}
.showcase-copy{ position:relative; z-index:2; }
.showcase-num{
  position:absolute; left:-10px; top:-90px;
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(90px, 14vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(228,192,108,0.28);
  line-height:1; z-index:1; pointer-events:none; user-select:none;
}
.showcase-copy .tag{
  display:inline-block; font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color: var(--navy-950); background: var(--gold-500); padding:5px 12px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.showcase-copy h3{
  color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom:10px; letter-spacing:-0.01em;
}
.showcase-copy .size-label{ color: var(--gold-400); font-family: var(--font-display); font-weight:600; font-size:1.05rem; margin-bottom:16px; display:block; }
.showcase-copy p.blurb{ color: var(--ice-200); font-size:1.05rem; max-width: 46ch; margin-bottom: 26px; }

.showcase-art{
  position:relative; display:flex; align-items:center; justify-content:center; height:100%;
}
.showcase-art .glow{
  position:absolute; width:70%; aspect-ratio:1/1; border-radius:50%;
  background: radial-gradient(circle, rgba(212,169,71,0.22), rgba(42,86,184,0.16) 55%, transparent 75%);
  filter: blur(6px);
}
.showcase-art img{
  position:relative; z-index:2;
  height: min(52vh, 420px); width:auto; object-fit:contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}

.showcase-dots{
  position:absolute; right: clamp(20px, 5vw, 64px); top:50%; transform:translateY(-50%); z-index:3;
  display:flex; flex-direction:column; gap:10px;
}
.showcase-dots button{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,0.25); border: none; padding:0;
  transition: background .2s ease, transform .2s ease;
}
.showcase-dots button:hover{ background: rgba(255,255,255,0.5); }
.showcase-dots button[aria-current="true"]{ background: var(--gold-500); transform: scale(1.3); }

.showcase-scrollhint{
  position:absolute; bottom: 26px; left:0; right:0; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color: var(--ice-200); font-size:0.78rem; letter-spacing:0.06em; text-transform:uppercase;
  font-family: var(--font-display); font-weight:600;
  opacity: 0.85;
  animation: bob 2.2s ease-in-out infinite;
}
.showcase-scrollhint svg{ width:18px; height:18px; }
@keyframes bob{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

@media (max-width: 860px){
  .showcase-panel-inner{ grid-template-columns: 1fr; gap: 14px; text-align:center; }
  .showcase-copy{ order:2; }
  .showcase-art{ order:1; height: 34vh; }
  .showcase-art img{ height: min(30vh, 220px); }
  .showcase-num{ display:none; }
  .showcase-copy p.blurb{ margin-left:auto; margin-right:auto; font-size:0.95rem; }
  .showcase-copy h3{ font-size: clamp(1.5rem, 6vw, 2rem); }
  .showcase-copy .btn-row{ justify-content:center; }
  .showcase-panel{ padding-top: 8px; padding-bottom: 70px; }
  .showcase-dots{ right: 10px; }
  .showcase-dots button{ width:8px; height:8px; }
  .showcase-scrollhint{ display:none; }
  .showcase-head{ padding-top: 18px; }
}

/* Reduced-motion / no-JS fallback: plain vertical stack, no pinning */
.showcase.showcase--static .showcase-sticky{
  position: static; height: auto; display:block;
}
.showcase.showcase--static{ height:auto !important; }
.showcase.showcase--static .showcase-head{ position: static; padding: 48px clamp(20px, 5vw, 64px) 24px; }
.showcase.showcase--static .showcase-track{
  flex-direction: column; height:auto;
  transform:none !important;
}
.showcase.showcase--static .showcase-panel{
  flex: 0 0 auto; height:auto; padding: 48px clamp(20px, 6vw, 90px);
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity:1 !important;
}
.showcase.showcase--static .showcase-num{ position:static; margin-bottom:-40px; display:block; }
.showcase.showcase--static .showcase-dots,
.showcase.showcase--static .showcase-scrollhint{ display:none; }
.showcase.showcase--static .showcase-bg{ display:none; }
.showcase.showcase--static .showcase-art{ height:auto; padding: 20px 0; }
.showcase.showcase--static .showcase-art img{ height: min(300px, 40vh); }

/* JS not loaded at all: same static fallback by default */
.showcase{ height: auto; }
.showcase:not(.showcase--js) .showcase-sticky{ position: static; height:auto; display:block; }
.showcase:not(.showcase--js) .showcase-head{ position: static; padding: 48px clamp(20px, 5vw, 64px) 24px; }
.showcase:not(.showcase--js) .showcase-track{ flex-direction:column; height:auto; }
.showcase:not(.showcase--js) .showcase-panel{ flex:0 0 auto; height:auto; padding: 48px clamp(20px, 6vw, 90px); border-top:1px solid rgba(255,255,255,0.08); }
.showcase:not(.showcase--js) .showcase-num{ position:static; margin-bottom:-40px; display:block; }
.showcase:not(.showcase--js) .showcase-dots,
.showcase:not(.showcase--js) .showcase-scrollhint{ display:none; }
.showcase:not(.showcase--js) .showcase-bg{ display:none; }
.showcase:not(.showcase--js) .showcase-art{ height:auto; padding: 20px 0; }
.showcase:not(.showcase--js) .showcase-art img{ height: min(300px, 40vh); }

/* ==========================================================================
   PROCESS / TIMELINE (About page)
   ========================================================================== */
.process{ position:relative; }
.process-steps{
  display:grid; grid-template-columns: repeat(4,1fr); gap:22px;
  counter-reset: step;
}
@media (max-width: 900px){ .process-steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .process-steps{ grid-template-columns: 1fr; } }
.process-step{
  background: var(--white); border-radius: var(--radius-md); padding: 26px 22px;
  box-shadow: var(--shadow-sm); position:relative; border: 1px solid rgba(11,30,75,0.06);
}
.process-step .step-num{
  font-family: var(--font-display); font-weight:700; font-size:0.85rem;
  color: var(--navy-950); background: var(--gold-500);
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.process-step h3{ font-size:1.02rem; margin-bottom:6px; }
.process-step p{ font-size:0.9rem; color: var(--ink-500); margin:0; }

/* ==========================================================================
   TESTIMONIAL / TRUST STRIP
   ========================================================================== */
.trust-strip{
  display:flex; flex-wrap:wrap; gap: 28px 44px; align-items:center; justify-content:center;
  padding: 26px 0; color: var(--ink-500); font-family: var(--font-display); font-weight:600; font-size:0.92rem;
}
.trust-strip span{ display:flex; align-items:center; gap:8px; }
.trust-strip svg{ width:20px; height:20px; color: var(--gold-500); flex-shrink:0; }

/* ==========================================================================
   FLOATING WHATSAPP + CALL BAR
   ========================================================================== */
.float-whatsapp{
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  width: 60px; height:60px; border-radius:50%;
  background: var(--whatsapp); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  animation: pulse 2.6s ease-in-out infinite;
}
.float-whatsapp svg{ width:30px; height:30px; }
.float-whatsapp:hover{ transform: scale(1.06); }
@keyframes pulse{
  0%,100%{ box-shadow: 0 10px 26px rgba(37,211,102,0.45); }
  50%{ box-shadow: 0 10px 34px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

.mobile-cta-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 290;
  display:none; gap:0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(11,30,75,0.14);
}
.mobile-cta-bar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 8px; font-family: var(--font-display); font-weight:600; font-size:0.92rem;
}
.mobile-cta-bar a.call{ background: var(--navy-900); color:#fff; }
.mobile-cta-bar a.whatsapp{ background: var(--whatsapp); color:#fff; }
.mobile-cta-bar svg{ width:18px; height:18px; }

@media (max-width: 720px){
  .mobile-cta-bar{ display:flex; }
  body{ padding-bottom: 58px; }
  .float-whatsapp{ bottom: 74px; width:54px; height:54px; }
  .float-whatsapp svg{ width:26px; height:26px; }
}

/* ==========================================================================
   ORDER CART (nav button + slide-out drawer)
   ========================================================================== */
.cart-toggle{
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s ease, transform .18s ease;
}
.cart-toggle:hover{ background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.cart-toggle svg{ width: 19px; height: 19px; }
.cart-badge{
  position: absolute; top: -5px; right: -5px;
  min-width: 19px; height: 19px; padding: 0 4px;
  border-radius: 999px;
  background: var(--gold-500); color: var(--navy-950);
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px var(--navy-900);
}
.cart-badge[hidden]{ display: none; }
@keyframes cartPulse{ 0%{ transform: scale(1); } 45%{ transform: scale(1.4); } 100%{ transform: scale(1); } }
.cart-badge.pulse{ animation: cartPulse .38s ease; }

.cart-overlay{
  position: fixed; inset: 0; z-index: 400;
  background: rgba(7,20,51,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.cart-overlay.is-open{ opacity: 1; visibility: visible; }

.cart-drawer{
  position: fixed; top: 0; right: 0; z-index: 401;
  height: 100vh; width: min(420px, 100vw);
  background: var(--white);
  box-shadow: -14px 0 40px rgba(7,20,51,0.25);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.is-open{ transform: translateX(0); }

.cart-drawer-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 22px 18px; border-bottom: 1px solid var(--ice-200); flex-shrink: 0;
}
.cart-drawer-head h3{ margin: 0; font-size: 1.15rem; }
.cart-close{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ice-100); border: none; color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.cart-close:hover{ background: var(--ice-200); }
.cart-close svg{ width: 18px; height: 18px; }

.cart-items{ flex: 1; overflow-y: auto; padding: 6px 22px; }
.cart-item{
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--ice-200);
}
.cart-item-thumb{
  width: 54px; height: 54px; object-fit: contain;
  background: var(--ice-100); border-radius: 12px; padding: 6px; flex-shrink: 0;
}
.cart-item-info{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cart-item-info strong{ font-size: 0.92rem; color: var(--navy-900); font-family: var(--font-display); }
.cart-item-info span{ font-size: 0.8rem; color: var(--ink-500); }
.cart-item-qty{ display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn{
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--ice-200); background: var(--white); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover{ background: var(--ice-100); border-color: var(--navy-600); }
.qty-btn svg{ width: 13px; height: 13px; }
.cart-item-qty span{ min-width: 16px; text-align: center; font-weight: 700; font-size: 0.9rem; color: var(--navy-900); }
.cart-item-remove{
  width: 30px; height: 30px; border-radius: 50%; background: none; border: none;
  color: var(--ink-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cart-item-remove:hover{ background: #FDEAEA; color: #C0392B; }
.cart-item-remove svg{ width: 16px; height: 16px; }

.cart-empty{
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 70px 30px; color: var(--ink-500);
}
.cart-empty svg{ width: 44px; height: 44px; color: var(--ice-200); }
.cart-empty p{ margin: 0; font-weight: 700; color: var(--navy-800); font-family: var(--font-display); }
.cart-empty span{ font-size: 0.88rem; max-width: 26ch; }

.cart-footer{ display: none; padding: 16px 22px 22px; border-top: 1px solid var(--ice-200); flex-shrink: 0; }
.cart-checkout-fields{ display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.cart-checkout-fields .field label{ font-size: 0.8rem; }
.cart-checkout-error{
  color: #C0392B; background: #FDEAEA; border-radius: 8px;
  padding: 9px 12px; font-size: 0.82rem; font-weight: 600; margin: 0 0 12px;
}
.cart-note{ font-size: 0.78rem; color: var(--ink-500); margin: 0 0 12px; }
.cart-clear{
  display: block; margin: 12px auto 0; background: none; border: none;
  color: var(--ink-500); font-size: 0.82rem; text-decoration: underline; text-underline-offset: 2px;
}
.cart-clear:hover{ color: #C0392B; }

html.cart-open{ overflow: hidden; }

@media (max-width: 480px){
  .cart-drawer{ width: 100vw; }
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card{
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 34px; border: 1px solid rgba(11,30,75,0.06);
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:640px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:0.86rem; font-weight:600; color: var(--navy-800); }
.field input, .field select, .field textarea{
  padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid #DEE7F5; background: var(--ice-50);
  color: var(--ink-900); transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(42,86,184,0.12);
}
.field textarea{ resize:vertical; min-height:110px; }
.field .hint{ font-size:0.78rem; color: var(--ink-500); }
.form-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:22px; flex-wrap:wrap; }
.form-note{ font-size:0.82rem; color: var(--ink-500); }
.form-status{ font-size:0.9rem; font-weight:600; margin-top:14px; }
.form-status.success{ color:#1a9d4c; }
.form-status.error{ color:#c0392b; }
/* honeypot spam trap — hidden from real users */
.hp-field{ position:absolute; left:-9999px; top:-9999px; opacity:0; height:0; width:0; overflow:hidden; }

/* ==========================================================================
   LOCATIONS
   ========================================================================== */
.branch-card{
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  overflow:hidden; border: 1px solid rgba(11,30,75,0.06);
}
.branch-card .map-embed{ width:100%; aspect-ratio: 16/9; border:0; filter: saturate(0.9); }
.branch-card .info{ padding: 22px 24px; }
.branch-card h3{ font-size:1.1rem; margin-bottom:6px; }
.branch-card .meta{ display:flex; gap:10px; align-items:flex-start; font-size:0.92rem; color: var(--ink-700); margin-bottom:8px; }
.branch-card .meta svg{ width:18px; height:18px; color: var(--gold-500); flex-shrink:0; margin-top:2px; }

.area-pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.area-pill{
  background: var(--white); border:1.5px solid var(--ice-200); color: var(--navy-800);
  padding: 8px 16px; border-radius: var(--radius-pill); font-size:0.9rem; font-weight:600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--navy-950); color: var(--ice-200); padding-top: 60px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.footer-brand img{ width:48px; height:48px; border-radius:50%; }
.footer-brand strong{ font-family: var(--font-display); color:#fff; font-size:1.1rem; }
.site-footer h4{ color:#fff; font-family: var(--font-display); font-size:0.95rem; letter-spacing:0.04em; margin-bottom:16px; }
.site-footer p{ color: var(--ice-200); font-size:0.92rem; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color: var(--ice-200); font-size:0.92rem; transition: color .15s ease; }
.footer-links a:hover{ color: var(--gold-400); }
.footer-contact li{ display:flex; gap:10px; margin-bottom:12px; font-size:0.92rem; align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; color: var(--gold-400); flex-shrink:0; margin-top:2px; }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; transition: background .15s ease, transform .15s ease;
}
.social-row a:hover{ background: var(--gold-500); color: var(--navy-950); transform: translateY(-2px); }
.social-row svg{ width:18px; height:18px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 26px; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  font-size: 0.82rem; color: var(--ice-200); opacity:0.8;
}

/* ==========================================================================
   MISC PAGE BITS
   ========================================================================== */
.page-hero{
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white); padding: 54px 0 90px; text-align:left;
}
.page-hero h1{ color:#fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.page-hero p{ color: var(--ice-200); max-width: 56ch; font-size:1.05rem; }
.breadcrumb{ font-size:0.85rem; color: var(--ice-200); margin-bottom:14px; }
.breadcrumb a{ color: var(--gold-400); }

/* Scoped video variant — used only on the About page hero.
   Other page-heroes are untouched. */
.page-hero--video{
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}
.page-hero--video .container{ position: relative; z-index: 2; }
.hero-video-bg{
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-video-poster{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  display: block;
}
.hero-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  display: block;
}
.hero-video-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,16,42,0.88) 0%, rgba(6,16,42,0.62) 42%, rgba(6,16,42,0.5) 68%, rgba(6,16,42,0.82) 100%),
    linear-gradient(0deg, rgba(6,16,42,0.72) 0%, rgba(6,16,42,0.18) 35%, rgba(6,16,42,0.12) 65%, rgba(6,16,42,0.6) 100%);
}
/* Respect reduce-motion: hide the moving video, keep the static poster
   frame (already sitting behind it) as the background — no JS required. */
@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
}

/* Scoped static-photo variant — reusable for any page-hero that should
   show a real photo instead of the plain gradient. Currently used on
   Business & Events. Other page-heroes are untouched. */
.page-hero--photo{
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}
.page-hero--photo .container{ position: relative; z-index: 2; }
.hero-photo-bg{
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-photo-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  display: block;
}
.hero-photo-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,16,42,0.9) 0%, rgba(6,16,42,0.68) 42%, rgba(6,16,42,0.5) 68%, rgba(6,16,42,0.82) 100%),
    linear-gradient(0deg, rgba(6,16,42,0.72) 0%, rgba(6,16,42,0.18) 35%, rgba(6,16,42,0.12) 65%, rgba(6,16,42,0.6) 100%);
}

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } }
.split img, .split .art{ border-radius: var(--radius-lg); }

.checklist li{ display:flex; gap:12px; margin-bottom:14px; align-items:flex-start; font-size:0.98rem; color: var(--ink-700); }
.checklist svg{ width:22px; height:22px; color: var(--navy-700); background: var(--ice-200); border-radius:50%; padding:4px; flex-shrink:0; }

.cta-band{
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  color: #fff; border-radius: var(--radius-lg);
  padding: 48px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.cta-band h2{ color:#fff; margin-bottom:6px; }
.cta-band p{ color: var(--ice-200); max-width: 50ch; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.visually-hidden{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left:12px; top:-60px; background:var(--gold-500); color:var(--navy-950);
  padding:10px 16px; border-radius:8px; z-index:1000; font-weight:700; transition: top .2s ease;
}
.skip-link:focus{ top:12px; }
