/* =========================================================================
   Solitaire Jewels — Dubai  ·  Design System
   Champagne + Platinum + Diamond-white, keyed to the gradient SJ logo.
   ========================================================================= */

:root{
  /* Palette — drawn from logo.webp + product backdrops */
  --bg:#FAF6F0;          /* warm diamond-white page */
  --surface:#FFFFFF;     /* cards / surfaces */
  --surface-2:#F3ECE2;   /* warm tinted surface */
  --text:#1C1A19;        /* near-black charcoal ink */
  --muted:#6B6661;       /* secondary text, warm charcoal-taupe */
  --primary:#B7945C;     /* champagne / rose-gold accent */
  --primary-deep:#9C7A45;/* darker champagne for text-on-light contrast */
  --secondary:#A2A7AA;   /* platinum / cool grey */
  --accent:#CBA86E;      /* lighter champagne highlight */
  --border:#ECE4D8;      /* warm hairline */
  --border-strong:#DED3C2;
  --focus:#9C7A45;
  --ink-soft:#3A3633;

  /* Champagne→platinum gradient (echoes the logo S→J) */
  --grad-metal:linear-gradient(105deg,#C8A063 0%,#CBA86E 28%,#B7945C 50%,#9DA1A4 78%,#8C9094 100%);
  --grad-metal-text:linear-gradient(100deg,#A77F45 0%,#C19A5E 40%,#8B9094 100%);

  --maxw:1240px;
  --gutter:clamp(20px,5vw,64px);

  --r-sm:6px;
  --r-md:10px;
  --r-lg:18px;

  --shadow-sm:0 1px 2px rgba(28,26,25,.04), 0 4px 14px rgba(28,26,25,.05);
  --shadow-md:0 10px 30px -12px rgba(28,26,25,.18), 0 4px 12px rgba(28,26,25,.06);
  --shadow-lg:0 30px 70px -28px rgba(28,26,25,.30);

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

  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  font-weight:300;
  font-size:clamp(15px,1vw + 12px,17px);
  line-height:1.7;
  letter-spacing:.005em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

/* ---- Type ---------------------------------------------------------------- */
h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.05;
  letter-spacing:.005em;
  margin:0;
  color:var(--text);
  text-wrap:balance;
}
h1{ font-size:clamp(2.6rem,6vw,5rem); font-weight:400; }
h2{ font-size:clamp(2rem,4vw,3.4rem); font-weight:400; }
h3{ font-size:clamp(1.5rem,2.4vw,2.2rem); }
p{ margin:0 0 1.1em; color:var(--ink-soft); }
p.lead{ font-size:clamp(1.1rem,1.6vw,1.35rem); color:var(--muted); line-height:1.65; font-weight:300; }

.eyebrow{
  font-family:var(--sans);
  font-weight:500;
  font-size:.72rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--primary-deep);
  display:inline-flex;
  align-items:center;
  gap:.7em;
  margin:0 0 1.1rem;
}
.eyebrow::before{
  content:"";
  width:7px;height:7px;
  background:var(--grad-metal);
  transform:rotate(45deg);
  display:inline-block;
  flex:none;
}
.eyebrow.center{ justify-content:center; }

.metal-text{
  background:var(--grad-metal-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
em.serif-it{ font-style:italic; }

/* ---- Layout -------------------------------------------------------------- */
.wrap{ max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(64px,9vw,128px); }
.section.tight{ padding-block:clamp(48px,6vw,80px); }
.bg-surface{ background:var(--surface); }
.bg-tint{ background:var(--surface-2); }
.bg-ink{ background:#17151400; }

.center{ text-align:center; }
.measure{ max-width:62ch; }
.measure-sm{ max-width:48ch; }
.mx-auto{ margin-inline:auto; }

/* Section heading block */
.shead{ max-width:64ch; }
.shead.center{ margin-inline:auto; }

/* Divider with diamond */
.rule{
  display:flex; align-items:center; gap:18px;
  color:var(--border-strong);
}
.rule::before,.rule::after{ content:""; height:1px; background:var(--border-strong); flex:1; }
.rule .dia{ width:8px;height:8px;background:var(--grad-metal);transform:rotate(45deg);flex:none; }
.rule.short{ max-width:120px; }

/* ---- Buttons ------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family:var(--sans); font-weight:500;
  font-size:.8rem; letter-spacing:.16em; text-transform:uppercase;
  padding:1rem 1.8rem;
  border:1px solid transparent;
  border-radius:var(--r-sm);
  transition:all .4s var(--ease);
  min-height:48px;
  white-space:nowrap;
}
.btn svg{ width:1.05em;height:1.05em; }
.btn-primary{
  background:var(--text); color:#fff; border-color:var(--text);
  position:relative; overflow:hidden;
}
.btn-primary::after{
  content:""; position:absolute; inset:0;
  background:var(--grad-metal); opacity:0; transition:opacity .4s var(--ease);
}
.btn-primary span{ position:relative; z-index:1; display:inline-flex; align-items:center; gap:.6em; }
.btn-primary:hover{ color:#241d12; }
.btn-primary:hover::after{ opacity:1; }
.btn-gold{
  background:var(--grad-metal); color:#2a2114; border:none;
  background-size:160% 160%; background-position:0% 50%;
  transition:background-position .6s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.btn-gold:hover{ background-position:100% 50%; box-shadow:var(--shadow-md); }
.btn-ghost{
  background:transparent; color:var(--text); border-color:var(--border-strong);
}
.btn-ghost:hover{ border-color:var(--text); background:var(--text); color:#fff; }
.btn-light{
  background:rgba(255,255,255,.12); color:#fff;
  border-color:rgba(255,255,255,.55); backdrop-filter:blur(6px);
}
.btn-light:hover{ background:#fff; color:var(--text); border-color:#fff; }
.btn-wa{ background:#1fa855; color:#fff; border-color:#1fa855; }
.btn-wa:hover{ background:#178a45; border-color:#178a45; }
.btn-block{ width:100%; }
.btn-sm{ padding:.7rem 1.2rem; font-size:.72rem; min-height:42px; }

.btn-link{
  display:inline-flex; align-items:center; gap:.6em;
  font-weight:500; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--primary-deep); padding-bottom:4px;
  border-bottom:1px solid var(--border-strong);
  transition:.35s var(--ease);
}
.btn-link:hover{ color:var(--text); border-color:var(--text); gap:1em; }

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

/* =========================================================================
   NAV
   ========================================================================= */
.nav{
  position:sticky; top:0; z-index:80;
  background:rgba(250,246,240,.78);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid var(--border);
  transition:background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled{ background:rgba(255,255,255,.92); box-shadow:0 1px 0 var(--border), var(--shadow-sm); }
.nav-inner{
  max-width:var(--maxw); margin-inline:auto;
  padding:.55rem var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:1.2rem;
}
.nav-logo{ display:flex; align-items:center; flex:none; }
.nav-logo img{ height:108px; width:auto; transition:height .4s var(--ease); }
.nav.scrolled .nav-logo img{ height:92px; }
.nav-links{
  display:flex; align-items:center; gap:2.1rem;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; font-weight:400;
  color:var(--ink-soft); position:relative; padding-block:.4rem;
  transition:color .3s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0;
  background:var(--grad-metal); transition:width .35s var(--ease);
}
.nav-links a:hover,.nav-links a[aria-current="page"]{ color:var(--text); }
.nav-links a:hover::after,.nav-links a[aria-current="page"]::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:.6rem; flex:none; }
.nav-burger{
  display:none; width:46px;height:46px;border:1px solid var(--border-strong);
  background:transparent;border-radius:var(--r-sm);
  align-items:center;justify-content:center;
}
.nav-burger span{ display:block; width:20px;height:1.5px;background:var(--text);position:relative; }
.nav-burger span::before,.nav-burger span::after{
  content:"";position:absolute;left:0;width:20px;height:1.5px;background:var(--text);transition:.3s var(--ease);
}
.nav-burger span::before{ top:-6px; }
.nav-burger span::after{ top:6px; }

/* Mobile menu panel */
.mobile-menu{
  position:fixed; inset:0; z-index:90;
  background:var(--bg);
  display:flex; flex-direction:column;
  padding:1.2rem var(--gutter) 2rem;
  transform:translateY(-100%); opacity:0; pointer-events:none;
  transition:transform .5s var(--ease), opacity .4s var(--ease);
  overflow-y:auto;
}
.mobile-menu.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.mm-top{ display:flex; align-items:center; justify-content:space-between; }
.mm-top img{ height:54px; }
.mm-close{ width:46px;height:46px;border:1px solid var(--border-strong);background:transparent;border-radius:var(--r-sm);font-size:1.4rem;line-height:1;color:var(--text); }
.mm-links{ list-style:none; margin:2.2rem 0 0; padding:0; display:flex; flex-direction:column; }
.mm-links a{
  font-family:var(--serif); font-size:2rem; font-weight:500; color:var(--text);
  padding:.7rem 0; border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
}
.mm-links a .ar{ color:var(--primary); font-size:1.1rem; font-family:var(--sans); }
.mm-cta{ margin-top:auto; padding-top:2rem; display:grid; gap:.7rem; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{ position:relative; isolation:isolate; }
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(to top, rgba(20,16,12,.74) 0%, rgba(20,16,12,.30) 38%, rgba(20,16,12,.10) 64%, rgba(20,16,12,.30) 100%),
    linear-gradient(105deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.06) 52%, rgba(20,16,12,0) 75%);
}
.hero-home{ min-height:min(92vh,860px); display:flex; align-items:flex-end; }
.hero-home .wrap{ width:100%; padding-bottom:clamp(48px,8vw,96px); padding-top:clamp(60px,12vw,120px); }
.hero-home h1{ color:#fff; max-width:16ch; }
.hero-home .eyebrow{ color:#e9d3ac; }
.hero-home .eyebrow::before{ background:linear-gradient(105deg,#e9d3ac,#fff); }
.hero-home .hero-sub{ color:rgba(255,255,255,.86); font-size:clamp(1.05rem,1.5vw,1.3rem); max-width:46ch; margin:1.4rem 0 2.2rem; font-weight:300; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.9rem; }

/* Inner-page page header (image banner) */
.pagehead{ position:relative; isolation:isolate; min-height:clamp(360px,52vh,560px); display:flex; align-items:flex-end; }
.pagehead .hero-media img{ object-position:center 32%; }
.pagehead .wrap{ width:100%; padding-block:clamp(40px,7vw,80px); }
.pagehead h1{ color:#fff; }
.pagehead .eyebrow{ color:#e9d3ac; }
.pagehead .eyebrow::before{ background:linear-gradient(105deg,#e9d3ac,#fff); }
.pagehead .ph-sub{ color:rgba(255,255,255,.88); max-width:54ch; font-size:clamp(1.02rem,1.4vw,1.2rem); margin-top:1.1rem; font-weight:300; }

/* breadcrumb */
.crumbs{ font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:1rem; display:flex; gap:.6em; align-items:center; flex-wrap:wrap; }
.crumbs a:hover{ color:#fff; }
.crumbs .sep{ color:rgba(255,255,255,.45); }

/* =========================================================================
   TRUST STRIP
   ========================================================================= */
.trust{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--surface); }
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  max-width:var(--maxw); margin-inline:auto;
}
.trust-item{
  padding:clamp(24px,3vw,40px) clamp(16px,2.4vw,34px);
  display:flex; flex-direction:column; gap:.5rem;
  border-left:1px solid var(--border);
}
.trust-item:first-child{ border-left:none; }
.trust-ico{ width:30px;height:30px;color:var(--primary); }
.trust-item h4{ font-family:var(--sans); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; font-weight:500; color:var(--text); }
.trust-item p{ margin:0; font-size:.92rem; color:var(--muted); line-height:1.5; }

/* =========================================================================
   COLLECTION CARDS
   ========================================================================= */
.col-grid{
  display:grid; gap:clamp(14px,1.6vw,22px);
  grid-template-columns:repeat(12,1fr);
}
.col-card{
  position:relative; overflow:hidden; border-radius:var(--r-md);
  background:var(--surface-2); isolation:isolate;
  grid-column:span 4; aspect-ratio:4/5;
  display:flex; align-items:flex-end;
  text-decoration:none; color:#fff;
}
.col-card.wide{ grid-column:span 6; aspect-ratio:16/12; }
.col-card.tall{ grid-column:span 4; aspect-ratio:3/4; }
.col-card.span6{ grid-column:span 6; }
.col-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2;
  transition:transform .9s var(--ease);
}
.col-card::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(to top, rgba(18,14,10,.78) 2%, rgba(18,14,10,.28) 42%, rgba(18,14,10,.04) 75%);
  transition:background .5s var(--ease);
}
.col-card:hover img{ transform:scale(1.06); }
.col-card:hover::after{ background:linear-gradient(to top, rgba(18,14,10,.84) 2%, rgba(18,14,10,.42) 50%, rgba(18,14,10,.12) 90%); }
.col-card .cc-body{ padding:clamp(20px,2.4vw,32px); position:relative; width:100%; }
.col-card .cc-kicker{ font-size:.68rem; letter-spacing:.26em; text-transform:uppercase; color:#e9d3ac; margin-bottom:.5rem; }
.col-card h3{ color:#fff; font-size:clamp(1.5rem,2.2vw,2rem); }
.col-card .cc-desc{ color:rgba(255,255,255,.82); font-size:.92rem; margin:.5rem 0 0; max-width:34ch; line-height:1.5;
  max-height:0; opacity:0; overflow:hidden; transition:max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.col-card:hover .cc-desc{ max-height:6em; opacity:1; }
.col-card .cc-arrow{ display:inline-flex; align-items:center; gap:.5em; margin-top:.9rem; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:#fff; opacity:.9; }
.col-card .cc-arrow svg{ width:1.1em;height:1.1em; transition:transform .4s var(--ease); }
.col-card:hover .cc-arrow svg{ transform:translateX(5px); }

/* =========================================================================
   PIECE CARDS (products — NO price)
   ========================================================================= */
.piece-grid{
  display:grid; gap:clamp(16px,2vw,30px);
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
}
.piece{ display:flex; flex-direction:column; }
.piece-media{
  position:relative; overflow:hidden; border-radius:var(--r-md);
  background:var(--surface); border:1px solid var(--border);
  aspect-ratio:1/1;
}
.piece-media img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.piece:hover .piece-media img{ transform:scale(1.05); }
.piece-media .enq{
  position:absolute; left:12px; right:12px; bottom:12px;
  transform:translateY(130%); opacity:0; transition:.45s var(--ease);
}
.piece:hover .piece-media .enq{ transform:translateY(0); opacity:1; }
.piece-body{ padding:1rem .1rem 0; }
.piece-body .pc-cat{ font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; color:var(--primary-deep); }
.piece-body h4{ font-family:var(--serif); font-size:1.3rem; font-weight:500; margin:.25rem 0 .2rem; }
.piece-body p{ margin:0; font-size:.88rem; color:var(--muted); line-height:1.45; }

/* Horizontal featured rail */
.rail{ display:flex; gap:clamp(14px,1.6vw,22px); overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:1rem; margin-inline:calc(var(--gutter) * -1); padding-inline:var(--gutter); scrollbar-width:thin; }
.rail::-webkit-scrollbar{ height:6px; }
.rail::-webkit-scrollbar-thumb{ background:var(--border-strong); border-radius:99px; }
.rail .piece{ flex:0 0 clamp(220px,40vw,300px); scroll-snap-align:start; }

/* =========================================================================
   SPLIT / EDITORIAL
   ========================================================================= */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,80px); align-items:center; }
.split.rev .split-media{ order:2; }
.split-media{ position:relative; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-md); }
.split-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.split-media.tall img{ aspect-ratio:3/4; }
.split-body{ max-width:52ch; }
.split-body .btn{ margin-top:.8rem; }

/* stat / pillar row */
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,3vw,48px); }
.pillar{ }
.pillar .pnum{ font-family:var(--serif); font-size:clamp(2.2rem,3vw,3rem); color:var(--primary); line-height:1; }
.pillar h4{ font-family:var(--sans); font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; margin:.9rem 0 .5rem; }
.pillar p{ margin:0; font-size:.94rem; color:var(--muted); }

/* =========================================================================
   VISIT BAND
   ========================================================================= */
.visit-band{ position:relative; overflow:hidden; }
.visit-grid{ display:grid; grid-template-columns:1.1fr .9fr; min-height:460px; }
.visit-media{ position:relative; }
.visit-media img{ position:absolute; inset:0; width:100%;height:100%; object-fit:cover; }
.visit-body{ background:var(--text); color:#fff; padding:clamp(36px,5vw,72px); display:flex; flex-direction:column; justify-content:center; }
.visit-body h2{ color:#fff; }
.visit-body .eyebrow{ color:#e2c79c; }
.visit-body .vb-meta{ display:grid; gap:1.1rem; margin:1.8rem 0 2rem; }
.visit-body .vb-meta .vm{ display:flex; gap:.9rem; align-items:flex-start; }
.visit-body .vb-meta svg{ width:20px;height:20px;color:var(--accent);flex:none;margin-top:3px; }
.visit-body .vb-meta .vm strong{ display:block; font-weight:500; letter-spacing:.04em; }
.visit-body .vb-meta .vm span{ color:rgba(255,255,255,.66); font-size:.92rem; }
.visit-actions{ display:flex; flex-wrap:wrap; gap:.7rem; }

/* =========================================================================
   APPOINTMENT FORM
   ========================================================================= */
.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:clamp(26px,3.4vw,48px); box-shadow:var(--shadow-md); }
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:.5rem; font-weight:500; }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--sans); font-size:1rem; font-weight:300; color:var(--text);
  background:var(--bg); border:1px solid var(--border-strong); border-radius:var(--r-sm);
  padding:.85rem 1rem; transition:.3s var(--ease); min-height:48px;
}
.field textarea{ min-height:110px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(183,148,92,.16); background:#fff; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.form-note{ font-size:.82rem; color:var(--muted); margin:.6rem 0 0; }
.form-success{ display:none; text-align:center; padding:1rem 0; }
.form-success.show{ display:block; }
.form-success .fs-ico{ width:54px;height:54px;margin:0 auto 1rem;color:var(--primary); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq{ border-top:1px solid var(--border); }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-q{ width:100%; background:none; border:none; text-align:left; display:flex; justify-content:space-between; gap:1.5rem; align-items:center; padding:1.4rem 0; font-family:var(--serif); font-size:clamp(1.15rem,1.8vw,1.45rem); font-weight:500; color:var(--text); }
.faq-q .pm{ flex:none; width:26px;height:26px; position:relative; }
.faq-q .pm::before,.faq-q .pm::after{ content:""; position:absolute; background:var(--primary); transition:.35s var(--ease); }
.faq-q .pm::before{ top:50%; left:0; width:100%; height:1.5px; transform:translateY(-50%); }
.faq-q .pm::after{ left:50%; top:0; height:100%; width:1.5px; transform:translateX(-50%); }
.faq-item.open .faq-q .pm::after{ transform:translateX(-50%) scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a p{ padding-bottom:1.4rem; margin:0; color:var(--muted); max-width:70ch; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer{ background:var(--text); color:rgba(255,255,255,.7); padding-block:clamp(48px,6vw,80px) 0; }
.footer a{ color:rgba(255,255,255,.7); transition:color .3s var(--ease); }
.footer a:hover{ color:#fff; }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:clamp(28px,4vw,56px); }
.foot-brand img{ height:176px; width:auto; margin-bottom:1.2rem; filter:brightness(0) invert(1); opacity:.95; }
.foot-brand p{ color:rgba(255,255,255,.6); max-width:34ch; font-size:.92rem; }
.foot-col h5{ font-family:var(--sans); font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:#fff; font-weight:500; margin:0 0 1.2rem; }
.foot-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.foot-col a{ font-size:.92rem; }
.foot-contact .fc{ display:flex; gap:.7rem; align-items:flex-start; margin-bottom:.9rem; font-size:.92rem; }
.foot-contact svg{ width:17px;height:17px;color:var(--accent);flex:none;margin-top:3px; }
.foot-social{ display:flex; gap:.7rem; margin-top:1.2rem; }
.foot-social a{ width:42px;height:42px;border:1px solid rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.foot-social a:hover{ border-color:var(--accent); background:rgba(255,255,255,.06); }
.foot-social svg{ width:18px;height:18px; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:clamp(40px,5vw,64px); padding-block:1.6rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; font-size:.8rem; color:rgba(255,255,255,.5); }
.foot-bottom .fb-note{ max-width:60ch; }

/* =========================================================================
   FLOATING + STICKY ACTIONS
   ========================================================================= */
.wa-fab{
  position:fixed; right:18px; bottom:18px; z-index:70;
  width:58px;height:58px;border-radius:50%; background:#1fa855; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -8px rgba(31,168,85,.6);
  transition:transform .3s var(--ease);
}
.wa-fab:hover{ transform:scale(1.08); }
.wa-fab svg{ width:28px;height:28px; }

.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:75;
  display:none; grid-template-columns:1fr 1fr 1.3fr; gap:1px;
  background:var(--border); border-top:1px solid var(--border);
  box-shadow:0 -6px 24px rgba(28,26,25,.10);
}
.mobile-bar a{
  background:var(--surface); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  padding:.55rem .4rem; font-size:.64rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text); font-weight:500;
  min-height:60px;
}
.mobile-bar a svg{ width:20px;height:20px; }
.mobile-bar a.mb-appt{ background:var(--text); color:#fff; }
.mobile-bar a.mb-wa{ color:#178a45; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in{ opacity:1; transform:none; }
  .reveal.d1{ transition-delay:.08s; }
  .reveal.d2{ transition-delay:.16s; }
  .reveal.d3{ transition-delay:.24s; }
  .reveal.d4{ transition-delay:.32s; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:1080px){
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .foot-brand{ grid-column:1 / -1; }
}
@media (max-width:900px){
  .nav-links,.nav .nav-cta .btn{ display:none; }
  .nav-burger{ display:flex; }
  .nav-cta{ gap:.4rem; }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2){ border-left:1px solid var(--border); }
  .trust-item:nth-child(3),.trust-item:nth-child(4){ border-top:1px solid var(--border); }
  .trust-item:nth-child(3){ border-left:none; }
  .split{ grid-template-columns:1fr; gap:clamp(24px,5vw,40px); }
  .split.rev .split-media{ order:0; }
  .visit-grid{ grid-template-columns:1fr; }
  .visit-media{ min-height:300px; }
  .pillars{ grid-template-columns:1fr; gap:1.6rem; }
  .col-card,.col-card.wide,.col-card.tall,.col-card.span6{ grid-column:span 6; }
  .col-card .cc-desc{ max-height:6em; opacity:1; }  /* show on touch */
  .piece-media .enq{ transform:none; opacity:1; position:static; padding:0; }
  .piece-media .enq{ display:none; }
}
@media (max-width:600px){
  body{ padding-bottom:62px; }   /* room for mobile bar */
  .mobile-bar{ display:grid; }
  .wa-fab{ display:none; }
  .trust-grid{ grid-template-columns:1fr; }
  .trust-item{ border-left:none !important; border-top:1px solid var(--border); }
  .trust-item:first-child{ border-top:none; }
  .col-card,.col-card.wide,.col-card.tall,.col-card.span6{ grid-column:1 / -1; aspect-ratio:5/4; }
  .field-row{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  .hero-actions .btn{ flex:1 1 100%; }
  .hero-home{ min-height:88vh; }
}
@media (max-width:380px){
  .mobile-bar a{ font-size:.58rem; }
}
