/* =========================================================
   Cloud Solutions ZA — Design System
   Palette: White / Grey base, South African heritage accents
   Type: Space Grotesk (display) + Inter (body) + JetBrains Mono (utility)
   ========================================================= */

:root{
  /* -- Neutrals -- */
  --white:#ffffff;
  --grey-25:#fbfbfc;
  --grey-50:#f4f6f7;
  --grey-100:#eceef1;
  --grey-200:#dfe3e7;
  --grey-300:#c6ccd2;
  --grey-400:#9aa3ab;
  --grey-500:#6b747b;
  --grey-600:#4b5359;
  --ink:#14191b;
  --ink-soft:#232b2e;

  /* -- Brand accent: charcoal/black + gold -- */
  --gold:#ffb612;
  --gold-soft:#ffd479;
  --gold-text:#a8690a;
  --ink-1:#20262a;
  --ink-2:#0a0d0e;

  /* -- Heritage stripe only (South African flag colours) -- */
  --green:#00794d;
  --blue:#0c3f8f;
  --red:#de3831;

  /* -- Surfaces / gradients -- */
  --surface:var(--white);
  --surface-alt:var(--grey-50);
  --border:var(--grey-200);
  --shadow-sm:0 1px 2px rgba(20,25,27,.05), 0 1px 1px rgba(20,25,27,.04);
  --shadow-md:0 8px 24px -8px rgba(20,25,27,.14), 0 2px 8px -2px rgba(20,25,27,.06);
  --shadow-lg:0 24px 64px -20px rgba(20,25,27,.22), 0 8px 24px -8px rgba(20,25,27,.1);
  --shadow-gold:0 16px 40px -16px rgba(168,105,10,.35);

  /* -- Radii -- */
  --r-sm:10px;
  --r-md:18px;
  --r-lg:28px;
  --r-xl:40px;
  --r-pill:999px;

  /* -- Type -- */
  --font-display:'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:'Inter', 'Segoe UI', sans-serif;
  --font-mono:'JetBrains Mono', 'Courier New', monospace;

  /* -- Motion -- */
  --ease:cubic-bezier(.22,.9,.32,1);
  --ease-soft:cubic-bezier(.4,.14,.3,1);
}

/* =============== Reset =============== */
/* Generic safeguard: any bare icon svg (24x24 viewBox) defaults to 20px unless
   a more specific rule above overrides it within its own component context. */
svg{width:20px;height:20px;}

.check-item{display:flex;gap:12px;align-items:flex-start;margin-bottom:0;}
.check-item__icon{color:var(--gold-text);flex:none;display:flex;}
.check-item__icon svg{width:20px;height:20px;}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  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-family:inherit;cursor:pointer;}
input,textarea,select{font-family:inherit;}
h1,h2,h3,h4,p,figure{margin:0;}
svg{display:block;}

::selection{background:var(--gold);color:var(--ink-2);}

/* Focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
  border-radius:6px;
}

/* =============== Container / grid helpers =============== */
.wrap{
  width:100%;
  max-width:1220px;
  margin-inline:auto;
  padding-inline:24px;
}
.section{padding:100px 0;}
.section--tight{padding:64px 0;}
@media (max-width:900px){
  .section{padding:72px 0;}
  .section--tight{padding:48px 0;}
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold-text);
  background:rgba(168,105,10,.07);
  border:1px solid rgba(168,105,10,.18);
  padding:7px 14px 7px 12px;
  border-radius:var(--r-pill);
  font-weight:500;
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex:none;}

.h-display{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--ink);
}
.h-xl{font-size:clamp(2.4rem,5.4vw,4.1rem);}
.h-lg{font-size:clamp(2rem,3.6vw,2.9rem);}
.h-md{font-size:clamp(1.5rem,2.4vw,1.9rem);}

.lede{
  font-size:1.15rem;
  line-height:1.65;
  color:var(--grey-500);
  max-width:56ch;
}
.body-text{font-size:1.02rem;line-height:1.75;color:var(--grey-600);}

.section-head{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{margin-inline:auto;text-align:center;align-items:center;}

/* Heritage thread — thin multi-colour bar, our recurring signature */
.thread{
  height:4px;
  width:100%;
  border-radius:var(--r-pill);
  background:linear-gradient(90deg,
    var(--green) 0 22%,
    var(--gold) 22% 44%,
    var(--blue) 44% 66%,
    var(--red) 66% 78%,
    var(--grey-200) 78% 100%);
  background-size:200% 100%;
}
.thread--sm{height:3px;}

/* =============== Buttons =============== */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 26px;
  border-radius:var(--r-pill);
  font-weight:600;
  font-size:.97rem;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.btn svg{width:16px;height:16px;transition:transform .35s var(--ease);}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}

.btn--primary{
  background:linear-gradient(135deg,var(--gold) 0%, #e29b00 100%);
  color:var(--ink-2);
  box-shadow:var(--shadow-gold);
}
.btn--primary:hover{box-shadow:0 20px 46px -14px rgba(168,105,10,.45);}
.btn--primary:hover svg{transform:translateX(3px);}

.btn--ghost{
  background:var(--white);
  color:var(--ink);
  border-color:var(--grey-200);
}
.btn--ghost:hover{border-color:var(--grey-400);background:var(--grey-50);}

.btn--dark{
  background:var(--ink);
  color:var(--white);
}
.btn--dark:hover{background:var(--ink-1);}

.btn--gold{
  background:var(--gold);
  color:var(--ink-2);
}
.btn--gold:hover{box-shadow:0 16px 36px -14px rgba(255,182,18,.55);}

.btn--sm{padding:11px 20px;font-size:.9rem;}
.btn--block{width:100%;}

/* =============== Navigation =============== */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:18px 0;
  transition:padding .4s var(--ease), background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom:1px solid transparent;
}
.nav.is-scrolled{
  padding:11px 0;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--grey-200);
  box-shadow:0 8px 30px -20px rgba(20,25,27,.25);
}
.nav__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1.06rem;
  color:var(--ink);
  flex:none;
}
.brand img{height:40px;width:auto;transition:transform .4s var(--ease);}
.brand:hover img{transform:rotate(-6deg) scale(1.05);}
.brand__name{display:flex;flex-direction:column;line-height:1.1;}
.brand__name b{font-size:1.02rem;}
.brand__name span{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.09em;
  color:var(--grey-500);
  text-transform:uppercase;
  font-weight:500;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav__links a{
  padding:9px 16px;
  border-radius:var(--r-pill);
  font-size:.94rem;
  font-weight:500;
  color:var(--grey-600);
  transition:color .25s ease, background .25s ease;
}
.nav__links a:hover{color:var(--ink);background:var(--grey-50);}
.nav__links a.is-active{color:var(--gold-text);background:var(--grey-100);}

.nav__actions{display:flex;align-items:center;gap:10px;flex:none;}
.nav__phone{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-mono);
  font-size:.86rem;
  color:var(--grey-600);
  padding:9px 14px;
  border-radius:var(--r-pill);
  border:1px solid var(--grey-200);
}
.nav__phone svg{width:15px;height:15px;color:var(--ink);}

.nav__burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:42px;height:42px;
  border-radius:var(--r-pill);
  border:1px solid var(--grey-200);
  background:var(--white);
  flex:none;
}
.nav__burger span{width:18px;height:2px;background:var(--ink);margin-inline:auto;transition:transform .3s ease, opacity .3s ease;}
.nav__burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav__burger.is-open span:nth-child(2){opacity:0;}
.nav__burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.nav__mobile{
  display:none;
  position:fixed;inset:0;
  z-index:99;
  background:var(--white);
  padding:100px 28px 40px;
  flex-direction:column;
  gap:6px;
  transform:translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
}
.nav__mobile.is-open{opacity:1;transform:translateY(0);pointer-events:auto;}
.nav__mobile a{
  font-family:var(--font-display);
  font-size:1.5rem;
  padding:14px 4px;
  border-bottom:1px solid var(--grey-100);
  color:var(--ink);
}
.nav__mobile .btn{margin-top:20px;}

@media (max-width:980px){
  .nav__links,.nav__phone{display:none;}
  .nav__burger{display:flex;}
  .nav__mobile{display:flex;}
}
@media (max-width:560px){
  .nav__actions .btn--primary{display:none;}
}

/* =============== Ambient background blobs (the "cloud" motif) =============== */
.blobfield{
  position:absolute;inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:.55;
  will-change:transform;
}
.blob--1{width:520px;height:520px;background:radial-gradient(circle at 30% 30%, rgba(20,25,27,.16), rgba(20,25,27,0) 70%);top:-160px;left:-120px;animation:drift1 26s ease-in-out infinite;}
.blob--2{width:460px;height:460px;background:radial-gradient(circle at 60% 40%, rgba(255,182,18,.3), rgba(255,182,18,0) 70%);top:120px;right:-160px;animation:drift2 32s ease-in-out infinite;}
.blob--3{width:420px;height:420px;background:radial-gradient(circle at 50% 50%, rgba(20,25,27,.14), rgba(20,25,27,0) 70%);bottom:-180px;left:30%;animation:drift3 30s ease-in-out infinite;}

@keyframes drift1{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(60px,50px) scale(1.08);}
}
@keyframes drift2{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(-50px,40px) scale(1.05);}
}
@keyframes drift3{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(40px,-30px) scale(1.1);}
}

/* =============== Hero =============== */
.hero{
  position:relative;
  padding:168px 0 96px;
  overflow:hidden;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(255,182,18,.10), transparent 60%),
    var(--white);
}
.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .8fr;
  gap:56px;
  align-items:center;
}
@media (max-width:980px){
  .hero__grid{grid-template-columns:1fr;}
}
.hero__eyebrow{margin-bottom:22px;}
.hero h1{margin-bottom:22px;}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(100deg,var(--ink) 0%, #6b5216 55%, var(--gold) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__lede{margin-bottom:34px;}
.hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px;}

.hero__trust{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
.rating{display:flex;align-items:center;gap:10px;}
.rating__stars{display:flex;gap:3px;}
.rating__stars svg{width:17px;height:17px;color:var(--gold);}
.rating__stars svg.is-half{color:var(--grey-300);position:relative;}
.rating__text{font-size:.88rem;color:var(--grey-500);}
.rating__text b{color:var(--ink);}
.hero__divider{width:1px;height:28px;background:var(--grey-200);}
.partner-badges{display:flex;gap:10px;flex-wrap:wrap;}
.partner-badge{
  display:flex;align-items:center;gap:7px;
  font-family:var(--font-mono);
  font-size:.76rem;
  letter-spacing:.03em;
  padding:7px 12px;
  border-radius:var(--r-pill);
  border:1px solid var(--grey-200);
  color:var(--grey-600);
  background:var(--white);
}
.partner-badge i{width:7px;height:7px;border-radius:50%;flex:none;}
.partner-badge.az i{background:var(--grey-400);}
.partner-badge.aws i{background:var(--gold);}

/* Hero visual: layered cloud/cabling illustration card */
.hero__visual{position:relative;z-index:1;}
.hero-card{
  position:relative;
  background:linear-gradient(165deg,var(--ink-1), var(--ink-2));
  border-radius:var(--r-xl);
  padding:34px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  min-height:420px;
}
.hero-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(420px 260px at 90% -10%, rgba(255,182,18,.22), transparent 60%),
    radial-gradient(300px 260px at -10% 110%, rgba(255,182,18,.10), transparent 60%);
}
.hero-card__top{position:relative;display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:26px;}
.hero-card__tag{
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.06em;
  color:rgba(255,255,255,.7);
  text-transform:uppercase;
  display:flex;align-items:center;gap:8px;
}
.pulse-dot{
  width:8px;height:8px;border-radius:50%;background:var(--gold);
  box-shadow:0 0 0 0 rgba(255,182,18,.6);
  animation:pulse 2.2s ease-out infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,182,18,.55);}
  70%{box-shadow:0 0 0 12px rgba(255,182,18,0);}
  100%{box-shadow:0 0 0 0 rgba(255,182,18,0);}
}

/* Node network graphic — represents cloud + cabling */
.node-graphic{position:relative;height:230px;margin-bottom:24px;}
.node-graphic svg{width:100%;height:100%;}
.node-line{
  stroke:rgba(255,255,255,.28);
  stroke-width:1.4;
  fill:none;
  stroke-dasharray:6 7;
  animation:dashflow 3.4s linear infinite;
}
.node-line.gold{stroke:rgba(255,182,18,.55);}
@keyframes dashflow{to{stroke-dashoffset:-130;}}
.node-dot{fill:var(--white);}
.node-dot.core{fill:var(--gold);}
.node-pulse{
  fill:none;stroke:var(--gold);stroke-width:1.5;opacity:0;
  animation:nodepulse 3.4s ease-out infinite;
  transform-origin:center;
}
@keyframes nodepulse{
  0%{opacity:.9;transform:scale(.4);}
  80%{opacity:0;transform:scale(2.6);}
  100%{opacity:0;}
}

.hero-card__stats{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.hc-stat{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-md);
  padding:14px 12px;
  text-align:left;
}
.hc-stat b{
  display:block;font-family:var(--font-display);font-size:1.4rem;color:var(--white);
}
.hc-stat span{font-size:.72rem;color:rgba(255,255,255,.6);}

/* =============== Partner marquee strip =============== */
.marquee-strip{
  border-top:1px solid var(--grey-200);
  border-bottom:1px solid var(--grey-200);
  padding:22px 0;
  background:var(--grey-50);
  overflow:hidden;
}
.marquee-strip .label{
  font-family:var(--font-mono);
  font-size:.75rem;
  color:var(--grey-500);
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:0 24px 14px;
  max-width:1220px;
  margin-inline:auto;
}
.marquee{
  display:flex;
  width:max-content;
  animation:marquee 26s linear infinite;
  gap:64px;
  align-items:center;
}
.marquee:hover{animation-play-state:paused;}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.marquee__item{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1.05rem;
  color:var(--grey-600);
  white-space:nowrap;
}
.marquee__item svg{width:20px;height:20px;color:var(--gold-text);}

/* =============== Cards: services =============== */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
@media (max-width:900px){.grid-3{grid-template-columns:1fr;}.grid-2{grid-template-columns:1fr;}}

.card{
  position:relative;
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--r-lg);
  padding:34px 30px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--grey-300);}
.card__icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  border-radius:16px;
  background:linear-gradient(150deg, rgba(10,13,14,.06), rgba(255,182,18,.16));
  margin-bottom:22px;
  color:var(--gold-text);
  transition:transform .4s var(--ease);
}
.card:hover .card__icon{transform:scale(1.08) rotate(-4deg);}
.card__icon svg{width:26px;height:26px;}
.card h3{font-family:var(--font-display);font-size:1.22rem;margin-bottom:12px;font-weight:600;}
.card p{font-size:.96rem;line-height:1.65;color:var(--grey-500);margin-bottom:16px;}
.card__link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.87rem;font-weight:600;color:var(--gold-text);
}
.card__link svg{width:14px;height:14px;transition:transform .3s var(--ease);}
.card:hover .card__link svg{transform:translateX(3px);}

.card--feature{grid-column:span 1;}
.card--dark{
  background:linear-gradient(165deg,var(--ink-1),var(--ink-2));
  border-color:transparent;
  color:var(--white);
}
.card--dark h3, .card--dark p{color:var(--white);}
.card--dark p{color:rgba(255,255,255,.72);}
.card--dark .card__icon{background:rgba(255,255,255,.1);color:var(--gold);}

/* pill tag list — related expertise */
.expertise-row{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.expertise-item{
  flex:1 1 260px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:var(--grey-50);
  border:1px solid var(--grey-200);
  border-radius:var(--r-md);
  padding:22px;
  transition:background .35s ease, border-color .35s ease, transform .35s var(--ease);
}
.expertise-item:hover{background:var(--white);border-color:var(--grey-300);transform:translateY(-4px);box-shadow:var(--shadow-sm);}
.expertise-item__icon{
  width:40px;height:40px;flex:none;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--white);
  border:1px solid var(--grey-200);
  color:var(--gold-text);
}
.expertise-item__icon svg{width:20px;height:20px;}
.expertise-item h4{font-family:var(--font-display);font-size:1.02rem;margin-bottom:6px;}
.expertise-item p{font-size:.88rem;color:var(--grey-500);line-height:1.55;}

/* =============== Stats band =============== */
.stats-band{
  position:relative;
  border-radius:var(--r-xl);
  background:linear-gradient(160deg,var(--ink-1),var(--ink-2));
  padding:60px 40px;
  overflow:hidden;
  color:var(--white);
}
.stats-band::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(500px 260px at 90% 0%, rgba(255,182,18,.16), transparent 60%);
}
.stats-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
@media (max-width:900px){.stats-grid{grid-template-columns:repeat(2,1fr);}}
.stat{text-align:left;}
.stat b{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(2.2rem,4vw,3rem);
  font-weight:600;
  background:linear-gradient(120deg,var(--white),var(--gold-soft));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.stat span{font-size:.86rem;color:rgba(255,255,255,.65);}

/* =============== Process steps =============== */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;counter-reset:step;}
@media (max-width:900px){.process{grid-template-columns:1fr;}}
.process__item{position:relative;padding-top:8px;}
.process__num{
  font-family:var(--font-mono);
  font-size:.85rem;
  color:var(--gold-text);
  margin-bottom:14px;
  display:block;
}
.process__item h4{font-family:var(--font-display);font-size:1.1rem;margin-bottom:10px;}
.process__item p{font-size:.92rem;color:var(--grey-500);line-height:1.6;}
.process__bar{height:2px;background:var(--grey-200);border-radius:2px;margin-bottom:20px;position:relative;overflow:hidden;}
.process__bar i{position:absolute;inset:0;width:100%;background:linear-gradient(90deg,var(--ink),var(--gold));transform-origin:left;transform:scaleX(0);transition:transform 1s var(--ease);}
.process__item.in-view .process__bar i{transform:scaleX(1);}

/* =============== Testimonial / rating block =============== */
.rating-block{
  display:flex;align-items:center;gap:26px;
  background:var(--grey-50);
  border:1px solid var(--grey-200);
  border-radius:var(--r-lg);
  padding:30px 32px;
  flex-wrap:wrap;
}
.rating-block__score{
  font-family:var(--font-display);
  font-size:3rem;
  font-weight:600;
  color:var(--ink);
  line-height:1;
}
.rating-block__meta{display:flex;flex-direction:column;gap:6px;}
.rating-block__meta .rating__stars svg{width:19px;height:19px;}

/* =============== CTA banner =============== */
.cta-banner{
  position:relative;
  border-radius:var(--r-xl);
  padding:70px 48px;
  text-align:center;
  overflow:hidden;
  background:var(--ink);
  isolation:isolate;
}
.cta-banner::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
   radial-gradient(600px 300px at 15% 0%, rgba(255,182,18,.16), transparent 60%),
   radial-gradient(500px 300px at 85% 100%, rgba(255,182,18,.28), transparent 60%);
}
.cta-banner h2{color:var(--white);margin-bottom:16px;}
.cta-banner p{color:rgba(255,255,255,.68);max-width:52ch;margin-inline:auto 24px auto;margin-bottom:32px;}
.cta-banner__actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* =============== Founder / About =============== */
.founder{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:56px;
  align-items:center;
}
@media (max-width:900px){.founder{grid-template-columns:1fr;}}
.founder__photo{
  position:relative;
  background:var(--white);
  border-radius:var(--r-xl);
  padding:14px;
  border:1px solid var(--grey-200);
  max-width:380px;
  margin-inline:auto;
}
@media (max-width:900px){
  .founder__photo{max-width:240px;}
}
.founder__photo img{
  width:100%;
  border-radius:calc(var(--r-xl) - 10px);
  display:block;
}
.founder__badge{
  position:absolute;
  bottom:-18px;right:-18px;
  background:var(--white);
  border:1px solid var(--grey-200);
  box-shadow:var(--shadow-md);
  border-radius:var(--r-md);
  padding:14px 18px;
  display:flex;align-items:center;gap:10px;
}
.founder__badge svg{width:22px;height:22px;color:var(--gold);}
.founder__badge b{display:block;font-family:var(--font-display);font-size:1rem;}
.founder__badge span{font-size:.74rem;color:var(--grey-500);}
.founder__quote{
  font-family:var(--font-display);
  font-size:clamp(1.3rem,2.3vw,1.7rem);
  line-height:1.45;
  color:var(--ink);
  margin-bottom:24px;
}
.founder__signature{display:flex;align-items:center;gap:14px;margin-top:28px;}
.founder__sigline{width:44px;height:2px;background:var(--gold);}
.founder__signature b{display:block;font-family:var(--font-display);font-size:1.02rem;}
.founder__signature span{font-size:.84rem;color:var(--grey-500);}

/* Values grid */
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
@media (max-width:900px){.values-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.values-grid{grid-template-columns:1fr;}}
.value{padding:6px 0;}
.value__num{font-family:var(--font-mono);font-size:.8rem;color:var(--gold-soft);}
.value b{display:block;font-family:var(--font-display);font-size:1.05rem;margin:10px 0 8px;}
.value p{font-size:.88rem;color:var(--grey-500);line-height:1.6;}

/* =============== Contact page =============== */
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:flex-start;
}
@media (max-width:980px){.contact-grid{grid-template-columns:1fr;}}

.contact-info-card{
  background:linear-gradient(165deg,var(--ink-1),var(--ink-2));
  border-radius:var(--r-xl);
  padding:40px 34px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.contact-info-card::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(420px 240px at 100% 0%, rgba(255,182,18,.2), transparent 60%);
}
.contact-info-card h3{position:relative;font-family:var(--font-display);font-size:1.4rem;margin-bottom:10px;}
.contact-info-card>p{position:relative;color:rgba(255,255,255,.68);margin-bottom:30px;font-size:.95rem;line-height:1.6;}
.contact-row{
  position:relative;
  display:flex;align-items:center;gap:16px;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.14);
}
.contact-row:first-of-type{border-top:none;}
.contact-row__icon{
  width:42px;height:42px;flex:none;
  border-radius:12px;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.contact-row__icon svg{width:20px;height:20px;}
.contact-row a, .contact-row span.val{font-weight:600;font-size:1rem;}
.contact-row .lbl{display:block;font-size:.75rem;color:rgba(255,255,255,.55);margin-bottom:2px;}
.contact-social{position:relative;display:flex;gap:10px;margin-top:26px;}
.social-btn{
  width:40px;height:40px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.1);
  color:var(--white);
  transition:background .3s ease, transform .3s var(--ease);
}
.social-btn:hover{background:var(--gold);color:var(--ink-2);transform:translateY(-3px);}
.social-btn svg{width:17px;height:17px;}

.form-card{
  background:var(--white);
  border:1px solid var(--grey-200);
  border-radius:var(--r-xl);
  padding:40px;
  box-shadow:var(--shadow-sm);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:560px){.form-row{grid-template-columns:1fr;}}
.field{margin-bottom:20px;}
.field label{
  display:block;font-size:.83rem;font-weight:600;color:var(--ink-soft);margin-bottom:8px;
}
.field input,.field textarea,.field select{
  width:100%;
  padding:13px 16px;
  border-radius:var(--r-sm);
  border:1.5px solid var(--grey-200);
  background:var(--grey-25);
  font-size:.96rem;
  color:var(--ink);
  transition:border-color .3s ease, background .3s ease;
}
.field input:focus,.field textarea:focus,.field select:focus{
  border-color:var(--ink);
  background:var(--white);
  outline:none;
}
.field textarea{resize:vertical;min-height:130px;}
.form-note{font-size:.8rem;color:var(--grey-400);margin-top:14px;text-align:center;}
.form-success{
  display:none;
  text-align:center;
  padding:50px 20px;
}
.form-success.is-visible{display:block;}
.form-success svg{width:52px;height:52px;color:var(--gold-text);margin-inline:auto;margin-bottom:18px;}
.form-success h3{font-family:var(--font-display);font-size:1.3rem;margin-bottom:10px;}
.form-success p{color:var(--grey-500);}

/* =============== Footer =============== */
.footer{
  background:var(--ink);
  color:rgba(255,255,255,.7);
  padding-top:0;
  position:relative;
}
.footer__top-thread{height:5px;background:linear-gradient(90deg,var(--green) 0 22%,var(--gold) 22% 44%,var(--blue) 44% 66%,var(--red) 66% 78%, var(--ink) 78% 100%);}
.footer__main{padding:76px 0 44px;display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:40px;}
@media (max-width:900px){.footer__main{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer__main{grid-template-columns:1fr;}}
.footer__brand{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
.footer__brand img{height:38px;}
.footer__brand b{font-family:var(--font-display);font-size:1.05rem;color:var(--white);}
.footer p.footer__blurb{font-size:.9rem;line-height:1.65;max-width:32ch;margin-bottom:22px;}
.footer h5{
  font-family:var(--font-mono);
  font-size:.74rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
  margin-bottom:18px;
}
.footer ul li{margin-bottom:12px;}
.footer ul a{font-size:.92rem;transition:color .25s ease;}
.footer ul a:hover{color:var(--gold);}
.footer__social{display:flex;gap:10px;margin-top:6px;}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:26px 0 40px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
}
.footer__bottom p{font-size:.82rem;color:rgba(255,255,255,.45);}
.footer__legal{display:flex;gap:22px;flex-wrap:wrap;}
.footer__legal a{font-size:.82rem;color:rgba(255,255,255,.55);}
.footer__legal a:hover{color:var(--white);}

/* =============== Utility: scroll reveal =============== */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in-view{opacity:1;transform:translateY(0);}
.reveal-stagger > *{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-stagger.in-view > *{opacity:1;transform:translateY(0);}
.reveal-stagger.in-view > *:nth-child(1){transition-delay:.02s;}
.reveal-stagger.in-view > *:nth-child(2){transition-delay:.1s;}
.reveal-stagger.in-view > *:nth-child(3){transition-delay:.18s;}
.reveal-stagger.in-view > *:nth-child(4){transition-delay:.26s;}
.reveal-stagger.in-view > *:nth-child(5){transition-delay:.34s;}
.reveal-stagger.in-view > *:nth-child(6){transition-delay:.42s;}

/* =============== Page hero (interior pages) =============== */
.page-hero{
  position:relative;
  padding:160px 0 80px;
  overflow:hidden;
  background:var(--grey-50);
  border-bottom:1px solid var(--grey-200);
}
.page-hero__inner{position:relative;z-index:1;max-width:760px;}
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-mono);
  font-size:.78rem;
  color:var(--grey-400);
  margin-bottom:20px;
}
.breadcrumb svg{width:13px;height:13px;flex:none;}
.breadcrumb a{color:var(--grey-500);}
.breadcrumb a:hover{color:var(--gold-text);}

/* =============== Legal pages =============== */
.legal-content{max-width:760px;}
.legal-content h2{
  font-family:var(--font-display);
  font-size:1.35rem;
  margin:40px 0 14px;
  font-weight:600;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{font-size:.98rem;line-height:1.8;color:var(--grey-600);margin-bottom:14px;}
.legal-content ul{margin:0 0 14px;padding-left:0;}
.legal-content ul li{
  font-size:.98rem;line-height:1.8;color:var(--grey-600);
  padding-left:24px;position:relative;margin-bottom:8px;
}
.legal-content ul li::before{
  content:"";position:absolute;left:0;top:11px;width:7px;height:7px;border-radius:2px;background:var(--gold-text);
}
.legal-content .updated{
  font-family:var(--font-mono);font-size:.8rem;color:var(--grey-400);margin-bottom:34px;display:block;
}

/* =============== Misc =============== */
.divider-space{height:1px;background:var(--grey-200);margin:0;}
.center-cta{text-align:center;margin-top:48px;}
.text-link{
  display:inline-flex;align-items:center;gap:6px;color:var(--gold-text);font-weight:600;font-size:.92rem;
}
.text-link svg{width:14px;height:14px;}

/* =============== Contact tabs =============== */
.tabs{display:flex;gap:6px;background:var(--grey-100);border-radius:var(--r-pill);padding:5px;margin-bottom:28px;}
.tab{
  flex:1;text-align:center;padding:11px 14px;border-radius:var(--r-pill);
  font-size:.9rem;font-weight:600;color:var(--grey-500);
  transition:background .3s ease, color .3s ease;
}
.tab.is-active{background:var(--white);color:var(--ink);box-shadow:var(--shadow-sm);}
.tab-panel{display:none;}
.tab-panel.is-active{display:block;}

/* =============== Booking calendar =============== */
.book-cal{
  background:linear-gradient(165deg,var(--ink-1),var(--ink-2));
  border-radius:var(--r-lg);
  padding:28px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.book-cal::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(360px 220px at 100% 0%, rgba(255,182,18,.14), transparent 60%);
}
.book-cal__inner{position:relative;}
.book-cal__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;}
.book-cal__month{font-family:var(--font-display);font-weight:600;font-size:1.05rem;letter-spacing:.02em;}
.book-cal__nav{display:flex;gap:8px;}
.book-cal__nav button{
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);
  color:var(--white);display:flex;align-items:center;justify-content:center;
  transition:background .25s ease;
}
.book-cal__nav button:hover:not(:disabled){background:rgba(255,255,255,.16);}
.book-cal__nav button:disabled{opacity:.25;cursor:default;}
.book-cal__nav button svg{width:14px;height:14px;}

.book-cal__weekdays{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:8px;}
.book-cal__weekdays span{text-align:center;font-family:var(--font-mono);font-size:.68rem;color:rgba(255,255,255,.4);text-transform:uppercase;}
.book-cal__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;}
.book-day{
  aspect-ratio:1;display:flex;align-items:center;justify-content:center;
  border-radius:10px;font-size:.84rem;color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.045);
  transition:background .25s ease, color .25s ease;
}
.book-day.is-filller{visibility:hidden;}
.book-day.is-disabled{opacity:.22;pointer-events:none;}
.book-day:not(.is-disabled):not(.is-filller):hover{background:rgba(255,255,255,.12);cursor:pointer;}
.book-day.is-today{box-shadow:inset 0 0 0 1px rgba(255,255,255,.3);}
.book-day.is-selected{background:var(--gold);color:var(--ink-2);font-weight:700;}

.book-times{position:relative;margin-top:24px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);}
.book-times__label{font-family:var(--font-mono);font-size:.72rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.06em;margin-bottom:12px;display:block;}
.book-times__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.book-time{
  padding:10px 8px;border-radius:10px;text-align:center;
  border:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.85);
  font-size:.83rem;transition:background .25s ease, border-color .25s ease, color .25s ease;
}
.book-time:hover{background:rgba(255,255,255,.08);cursor:pointer;}
.book-time.is-selected{background:var(--gold);border-color:var(--gold);color:var(--ink-2);font-weight:700;}
.book-times__empty{font-size:.85rem;color:rgba(255,255,255,.5);}

.book-confirm{position:relative;margin-top:24px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);display:none;}
.book-confirm.is-visible{display:block;}
.book-confirm__summary{font-size:.9rem;color:rgba(255,255,255,.75);margin-bottom:16px;}
.book-confirm__summary b{color:var(--gold);}
.field--dark label{color:rgba(255,255,255,.7);}
.field--dark input{
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.16);
  color:var(--white);
}
.field--dark input::placeholder{color:rgba(255,255,255,.35);}
.field--dark input:focus{border-color:var(--gold);background:rgba(255,255,255,.1);}
.book-success{display:none;text-align:center;padding:20px 0 4px;position:relative;}
.book-success.is-visible{display:block;}
.book-success svg{width:38px;height:38px;color:var(--gold);margin-inline:auto;margin-bottom:12px;}
.book-success h4{font-family:var(--font-display);font-size:1.1rem;margin-bottom:6px;}
.book-success p{font-size:.86rem;color:rgba(255,255,255,.65);}

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