/* ============================================================
   SHREE SAI MARBLE - Design System
   Editorial luxury. Brand purple #382898 on warm alabaster.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand:        #382898;
  --brand-600:    #2c2078;
  --brand-700:    #221965;
  --brand-400:    #5a49c9;
  --brand-300:    #8578dd;
  --brand-100:    #ece9f8;
  --brand-050:    #f4f2fb;

  /* Ink / neutrals (purple-tinted) */
  --ink:          #141026;
  --ink-2:        #2a2540;
  --stone:        #6d6883;
  --stone-2:      #9c98ac;
  --line:         rgba(20,16,38,0.12);
  --line-soft:    rgba(20,16,38,0.07);

  /* Surfaces */
  --alabaster:    #f4f1ea;   /* warm marble white */
  --paper:        #faf8f3;
  --white:        #ffffff;

  /* Accent */
  --gold:         #b0904f;
  --gold-soft:    #c9b184;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
  --step-0:  clamp(0.98rem, 0.94rem + 0.2vw, 1.06rem);
  --step-1:  clamp(1.18rem, 1.08rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2rem + 5.6vw, 6.4rem);

  /* Layout */
  --wrap:   1240px;
  --wrap-w: 1440px;
  --gutter: clamp(1.35rem, 5vw, 4rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background-color: var(--alabaster); }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Marble-effect page background ----------
   A seamless gold-veined Calacatta field that IS the page surface on every
   page. The tile (assets/img/marble-bg.jpg, built from gold-veined.jpg) is
   made seamless by roll-and-patch (no mirroring), so the veining stays
   natural - no kaleidoscope symmetry. Shown at native scale (736px tile →
   720px) so it never looks zoomed-in. It scrolls with the content, and it
   sits behind the landing hero too (the video layers on top, unchanged).
   A light alabaster wash keeps type readable while the gold shows through. */
body {
  background-color: var(--alabaster);
  background-image:
    linear-gradient(rgba(245,242,235,0.30), rgba(245,242,235,0.30)),
    url("../assets/img/marble-bg.jpg?v=gold1");
  background-repeat: no-repeat, repeat;
  background-size: auto, 720px auto;
  background-position: center, center top;
  background-attachment: scroll;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.display { font-size: var(--step-5); font-weight: 350; }
.h1 { font-size: var(--step-4); }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-2); font-weight: 420; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.center::before { display: none; }

.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); font-weight: 350; }
.muted { color: var(--stone); }
.serif { font-family: var(--font-display); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: var(--wrap-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5.5rem); }
.divider { height: 1px; background: var(--line); border: 0; }

.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.6rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

/* section header block */
.sec-head { max-width: 52ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1.4rem; }
.sec-head h2 { margin-bottom: 1.1rem; }
.index-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-300);
  font-size: var(--step-1);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: #fff;
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--bg); color: var(--fg);
  padding: 0.95em 1.7em;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(56,40,152,0.6); }
.btn:hover svg { transform: translateX(3px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
.btn.light { background: #fff; color: var(--brand); }
.btn.wa { --bg: #1faf54; }
.btn.wa:hover { box-shadow: 0 14px 30px -12px rgba(31,175,84,0.6); }
.btn.on-dark.ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.btn.on-dark.ghost:hover { background: #fff; color: var(--ink); border-color:#fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size 0.4s var(--ease);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.4s var(--ease); }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s, backdrop-filter 0.5s;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: height 0.4s var(--ease);
}
.brand-lockup { display: flex; align-items: center; gap: 0.7rem; }
.brand-lockup img { height: 38px; width: auto; transition: opacity 0.3s; }
.brand-lockup .logo-light { display: none; }
.brand-wordmark {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em;
  line-height: 1; font-weight: 450;
}
.brand-wordmark small { display:block; font-family: var(--font-body); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--stone); margin-top: 3px; font-weight: 600;}

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav a.navlink {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  position: relative; padding: 0.3em 0; color: var(--ink);
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a.navlink[aria-current="page"] { color: var(--brand); }

/* transparent hero header (light text over dark image) */
.site-header.at-top.over-hero { color: #fff; }
.site-header.at-top.over-hero .brand-wordmark,
.site-header.at-top.over-hero .brand-wordmark small,
.site-header.at-top.over-hero .nav a.navlink { color: #fff; }
.site-header.at-top.over-hero .brand-wordmark small { color: rgba(255,255,255,0.7); }
.site-header.at-top.over-hero .logo-dark { display: none; }
.site-header.at-top.over-hero .logo-light { display: block; }
.site-header.at-top.over-hero .btn.header-cta { background:#fff; color: var(--brand); }

/* scrolled */
.site-header.scrolled {
  background: rgba(250,248,243,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.site-header.scrolled .bar { height: 66px; }

.header-cta { padding: 0.7em 1.3em; }

.burger { display: none; width: 26px; height: 18px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger span:nth-child(1){ top: 0; } .burger span:nth-child(2){ top: 8px; } .burger span:nth-child(3){ top: 16px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--brand-700);
  color: #fff;
  padding: 6rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: center;
  transform: translateY(-100%); transition: transform 0.6s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.4rem); font-weight: 350;
  padding: 0.28em 0; border-bottom: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(20px);
}
body.menu-open .mobile-menu a.m-link { animation: mIn 0.6s var(--ease) forwards; }
.mobile-menu a.m-link:nth-child(1){ animation-delay: .12s; }
.mobile-menu a.m-link:nth-child(2){ animation-delay: .18s; }
.mobile-menu a.m-link:nth-child(3){ animation-delay: .24s; }
.mobile-menu a.m-link:nth-child(4){ animation-delay: .30s; }
.mobile-menu a.m-link:nth-child(5){ animation-delay: .36s; }
.mobile-menu a.m-link:nth-child(6){ animation-delay: .42s; }
.mobile-menu a.m-link span { font-family: var(--font-body); font-size: 0.8rem; color: var(--brand-300); }
.mobile-menu .m-foot { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
@keyframes mIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img,
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,26,0.52) 0%, rgba(12,9,26,0.18) 34%, rgba(12,9,26,0.42) 62%, rgba(12,9,26,0.9) 100%),
    linear-gradient(90deg, rgba(12,9,26,0.6) 0%, rgba(12,9,26,0.12) 52%, rgba(12,9,26,0) 75%);
}
.hero-inner { padding-bottom: clamp(7rem, 11vw, 9rem); padding-top: 8rem; width: 100%; }
.hero .eyebrow { color: #fff; }
.hero h1 { font-size: clamp(2.9rem, 1.6rem + 6vw, 6.6rem); font-weight: 340; max-width: 16ch; margin-block: 1.3rem 1.6rem; }
.hero h1 em { color: var(--brand-300); font-style: italic; }
.hero .lead { color: rgba(255,255,255,0.86); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  text-decoration: none; cursor: pointer;
  transition: opacity 0.55s var(--ease), color 0.3s var(--ease);
  animation: scrollbob 3.4s ease-in-out infinite, scrollbreathe 3.4s ease-in-out infinite;
}
.hero-scroll-label { white-space: nowrap; }
.hero-scroll:hover { color: #fff; }
.hero-scroll:hover .line { border-color: rgba(255,255,255,0.85); }
.hero-scroll:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 8px; border-radius: 4px; }
/* Fades out once the visitor starts scrolling; restored at the very top (js toggles .is-hidden). */
.hero-scroll.is-hidden { opacity: 0; pointer-events: none; }
/* Land the click-scroll target below the fixed header. */
#explore { scroll-margin-top: 84px; }
/* mouse-shaped capsule with a falling glow dot */
.hero-scroll .line {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.55); border-radius: 14px;
  background: rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ""; position: absolute; top: 6px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 8px; border-radius: 3px;
  background: linear-gradient(#fff, var(--gold-soft));
  box-shadow: 0 0 8px rgba(201,177,132,0.85);
  animation: scrolldot 2.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
@keyframes scrolldot {
  0% { top: 5px; opacity: 0; }
  22% { opacity: 1; }
  70% { top: 23px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}
@keyframes scrollbob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}
@keyframes scrollbreathe {
  0%, 100% { letter-spacing: 0.25em; }
  50% { letter-spacing: 0.36em; }
}
/* on short windows the hero content needs the room - drop the indicator */
@media (max-height: 640px) { .hero-scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.4rem; background: var(--paper); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: var(--step-2); color: var(--ink); opacity: 0.55; white-space: nowrap; display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee span::after { content: "✦"; font-size: 0.5em; color: var(--brand); opacity: 0.8; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem,3vw,2rem); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); font-weight: 340; line-height: 1; color: var(--brand); letter-spacing: -0.02em; }
.stat .num sup { font-size: 0.5em; vertical-align: super; }
.stat .label { margin-top: 0.7rem; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--stone); max-width: 22ch; }

/* ---------- Media frames ---------- */
.frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--brand-050); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.frame.tall { aspect-ratio: 4/5; }
.frame.wide { aspect-ratio: 16/10; }
.frame.square { aspect-ratio: 1/1; }
.frame.portrait { aspect-ratio: 3/4; }
a.frame:hover img, .hover-zoom:hover .frame img { transform: scale(1.05); }
.figtag { position: absolute; left: 1rem; bottom: 1rem; background: rgba(20,16,38,0.55); color:#fff; backdrop-filter: blur(6px); padding: 0.4em 0.9em; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Collection feature panel ----------
   Full-bleed deep-indigo band behind the landing collection so the light
   marble slabs stop camouflaging against the warm marble page background
   and read cleanly. On-brand indigo with soft gold accents. */
.collection-feature {
  position: relative;
  background: var(--brand);
  color: var(--alabaster);
}
.collection-feature .h2 { color: var(--alabaster); }
.collection-feature .sec-head .eyebrow { color: var(--gold-soft); }
.collection-feature .link-arrow { color: var(--gold-soft); }
.collection-feature .link-arrow:hover { color: #e6d3ad; }
/* filter chips adapted for the dark panel */
.collection-feature .chip {
  border-color: rgba(255,255,255,0.2);
  color: rgba(244,241,234,0.72);
}
.collection-feature .chip:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.collection-feature .chip.active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}
/* marble names below each slab, light on the dark panel */
.collection-feature .marbles-grid .stone-name,
.collection-feature .collection-grid .stone-card h3 { color: #ece9f8; }
/* products-page card text (origin + description) adapted for the dark panel */
.collection-feature .collection-grid .stone-card .origin { color: var(--gold-soft); }
.collection-feature .collection-grid .stone-card .desc { color: rgba(244,241,234,0.66); }
/* sub-category labels + supporting notes on the dark panel */
.collection-feature .subcat-head { color: var(--alabaster); }
.collection-feature .muted { color: rgba(244,241,234,0.6); }

/* Lift each marble slab off the indigo panel: deep float shadow + a faint
   light rim so the white edges of the slab stay crisp against the dark. */
.collection-feature .stone-card .frame {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.1),
    0 26px 50px -18px rgba(6,4,26,0.72),
    0 8px 18px -8px rgba(6,4,26,0.55);
}
.collection-feature .stone-card:hover .frame {
  box-shadow:
    inset 0 0 0 1px rgba(201,177,132,0.55),
    0 40px 70px -20px rgba(6,4,26,0.78),
    0 0 34px -6px rgba(201,177,132,0.4);
}
/* slow ken-burns zoom on the image while hovering */
.collection-feature .stone-card:hover .frame img {
  transform: scale(1.06);
}
/* subtle darken on hover for depth */
.collection-feature .stone-card .frame::after {
  background: linear-gradient(180deg, rgba(14,10,36,0.04) 0%, rgba(14,10,36,0.32) 100%);
}
/* marble name shifts to gold on hover */
.collection-feature .marbles-grid .stone-card:hover .stone-name,
.collection-feature .collection-grid .stone-card:hover h3 {
  color: var(--gold-soft);
}

/* Products-page collection cards adopt the landing marble-grid look exactly:
   landscape image + a single centered marble name. Origin, description and the
   plus badge are hidden so both pages' collection cards read identically. */
.collection-feature .collection-grid .stone-card .origin,
.collection-feature .collection-grid .stone-card .desc,
.collection-feature .collection-grid .stone-card .plus { display: none; }
.collection-feature .collection-grid .stone-card .meta {
  display: block;
  text-align: center;
}
.collection-feature .collection-grid .stone-card h3 {
  margin-top: 1rem;
  font-size: var(--step-1);
  font-weight: 440;
  letter-spacing: -0.01em;
}

/* ---------- Collection cards ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,2rem); }

/* Slab tiles (product range gallery) */
.slab-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(0.9rem,2vw,1.5rem); }
.slab-card { display: block; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.slab-card:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -28px rgba(34,25,101,0.3); }
.slab-card img { width: 100%; height: auto; display: block; }

.stone-card { display: block; }
.stone-card .frame { aspect-ratio: 3/3.6; margin-bottom: 1rem; }
/* Marble type sub-category filter above the collection grid. */
.marble-filters { margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }

/* Marble-slab collection on the landing page: uniform landscape image tiles,
   cleanly aligned, each lifted with a soft shadow. */
.marbles-grid { align-items: start; }
.marbles-grid .stone-card .frame {
  aspect-ratio: 3/2;
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 18px 38px -20px rgba(20,16,38,0.45), 0 4px 12px -7px rgba(20,16,38,0.22);
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.marbles-grid .stone-card:hover .frame {
  transform: translateY(-5px);
  box-shadow: 0 32px 58px -22px rgba(20,16,38,0.5), 0 8px 18px -8px rgba(20,16,38,0.26);
}
/* marble name shown below each photo */
.marbles-grid .stone-card { text-align: center; }
.marbles-grid .stone-name {
  margin-top: 1rem;
  font-size: var(--step-1);
  font-weight: 440;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stone-card .frame::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(20,16,38,0.5)); opacity: 0; transition: opacity 0.5s; }
.stone-card:hover .frame::after { opacity: 1; }
.stone-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.stone-card h3 { font-size: var(--step-1); font-weight: 440; letter-spacing: -0.01em; }
.stone-card .origin { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.stone-card .desc { color: var(--stone); font-size: 0.9rem; margin-top: 0.35rem; }
.stone-card .plus { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--brand); display: grid; place-items: center; opacity: 0; transform: scale(0.7); transition: all 0.4s var(--ease); z-index: 2; }
.stone-card:hover .plus { opacity: 1; transform: scale(1); }

/* ---------- Feature cards (capabilities) ---------- */
.feature { padding: clamp(1.8rem,3vw,2.6rem); background: rgba(255,255,255,0.5); backdrop-filter: blur(10px) saturate(1.05); -webkit-backdrop-filter: blur(10px) saturate(1.05); border: 1px solid rgba(255,255,255,0.55); border-radius: var(--radius); position: relative; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(34,25,101,0.35); }
.feature .fnum { font-family: var(--font-display); font-style: italic; color: var(--brand-300); font-size: 1.1rem; }
.feature h3 { margin-block: 1.3rem 0.7rem; font-size: var(--step-1); font-weight: 440; }
.feature p { color: var(--stone); font-size: 0.94rem; }
.feature .ficon { width: 42px; height: 42px; color: var(--brand); }
.feature::before { content:""; position:absolute; left:0; top:0; height: 3px; width: 0; background: var(--brand); transition: width 0.6s var(--ease); }
.feature:hover::before { width: 100%; }

/* ---------- Team / leadership cards ---------- */
.team-grid { margin-top: clamp(2rem,4vw,3rem); }
.team-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin: clamp(2.6rem,5vw,3.6rem) 0 1.4rem; display: flex; align-items: center; gap: 0.9rem; }
.team-label::after { content:""; flex: 1; height: 1px; background: var(--line); }
.team-card { display: flex; flex-direction: column; }
.team-card .frame { margin-bottom: 1.1rem; }
.team-card .frame img { object-position: center 16%; }
.team-cap { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); }
.team-card .role { font-size: 0.7rem; letter-spacing: 0.15em; line-height: 1.4; text-transform: uppercase; color: var(--brand); margin-bottom: 0.5rem; display: block; min-height: 2.8em; }
.team-card h3 { font-size: var(--step-1); font-weight: 440; letter-spacing: -0.01em; }
.team-card p { color: var(--stone); font-size: 0.9rem; line-height: 1.6; margin-top: 0.55rem; }

/* ---------- Split feature band (dark) ---------- */
.band-dark { background: var(--brand-700); color: #fff; position: relative; overflow: hidden; }
.band-dark .eyebrow { color: var(--brand-300); }
.band-dark .muted { color: rgba(255,255,255,0.66); }
/* Cards inside dark bands stay solid & readable (the frosted-glass look is
   only for cards sitting on the light marble). */
.band-dark .feature, .band-dark .contact-tile {
  background: rgba(250,248,243,0.94);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-color: var(--line-soft);
}
.band-vein { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.14; pointer-events: none; mix-blend-mode: screen; }

/* ---------- Locations ---------- */
.loc-card { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); color: #fff; min-height: 420px; display: flex; align-items: flex-end; padding: 1.8rem; }
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.loc-card::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,16,38,0.1), rgba(20,16,38,0.8)); }
.loc-card:hover img { transform: scale(1.06); }
.loc-card .loc-body h3 { font-size: var(--step-2); font-weight: 400; }
.loc-card .loc-role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-300); margin-bottom: 0.8rem; display:block; }
.loc-card .loc-addr { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-top: 0.5rem; }

/* ---------- Testimonials ---------- */
.tcard {
  padding: clamp(1.8rem,3vw,2.6rem);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(34,25,101,0.35); }
.tcard::before { content:""; position:absolute; left:0; top:0; height: 3px; width: 0; background: var(--brand); transition: width 0.6s var(--ease); }
.tcard:hover::before { width: 100%; }
.tcard .tstars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1.1rem; }
.tcard .tstars svg { width: 15px; height: 15px; }
.tcard blockquote {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: 1.06rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin-bottom: 1.7rem;
  flex: 1;
}
.tcard .tperson { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); }
.tcard .tavatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-100);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.tcard .tname { display: block; font-weight: 500; color: var(--ink); font-size: 0.95rem; line-height: 1.35; }
.tcard .trole { display: block; font-size: 0.8rem; color: var(--stone); line-height: 1.3; }

/* ---------- Testimonials slider: 3 across, click arrows to shift ---------- */
.tslider { position: relative; }
.tslider-track {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 1rem;
  margin: -0.4rem -0.2rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tslider-track::-webkit-scrollbar { display: none; }
.tslider-track .tcard {
  flex: 0 0 calc((100% - 2 * clamp(1.4rem, 3vw, 2.6rem)) / 3);
  scroll-snap-align: start;
}
.tslider-track .tcard blockquote { font-size: 1.14rem; }
.tslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -14px rgba(34,25,101,0.65);
  z-index: 5;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.tslider-arrow:hover { background: var(--brand-700); transform: translateY(-50%) scale(1.08); }
.tslider-arrow svg { width: 22px; height: 22px; }
.tslider-arrow.prev { left: clamp(-14px, -1vw, 0px); }
.tslider-arrow.next { right: clamp(-14px, -1vw, 0px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(2.6rem,6vw,5rem); text-align: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--step-4); max-width: 18ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem,7vw,6rem); }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand img { height: 40px; margin-bottom: 1.3rem; }
.footer-brand p { max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-2); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-col a { display: inline-flex; align-items: center; gap: 0.5em; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: var(--stone-2); }
.footer-bottom .socials { display: flex; gap: 0.9rem; }
.footer-bottom .socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: grid; place-items: center; transition: all 0.4s var(--ease); }
.footer-bottom .socials a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-credit { text-align: center; padding-block: 1.1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; letter-spacing: 0.02em; color: var(--stone-2); }
.footer-credit a { color: var(--stone-2); text-decoration: underline; text-underline-offset: 2px; transition: color 0.3s var(--ease); }
.footer-credit a:hover { color: #fff; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: clamp(8rem, 12vw, 12rem); padding-bottom: clamp(2.5rem,5vw,4rem); position: relative; }
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 { font-size: var(--step-5); font-weight: 340; max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; max-width: 54ch; }
.breadcrumb { font-size: 0.76rem; letter-spacing: 0.06em; color: var(--stone); margin-bottom: 2rem; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.contact-tile { padding: clamp(1.6rem,3vw,2.4rem); border: 1px solid rgba(255,255,255,0.55); border-radius: var(--radius); background: rgba(255,255,255,0.5); backdrop-filter: blur(10px) saturate(1.05); -webkit-backdrop-filter: blur(10px) saturate(1.05); transition: all 0.5s var(--ease); display: flex; flex-direction: column; gap: 0.8rem; }
.contact-tile:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(34,25,101,0.3); }
.contact-tile .cicon { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; }
.contact-tile h3 { font-size: var(--step-1); font-weight: 440; }
.contact-tile .big { font-size: 1.05rem; font-weight: 500; color: var(--ink); }

.info-list li { display: flex; gap: 1rem; padding-block: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); min-width: 8rem; padding-top: 3px; }
.info-list .v { color: var(--ink-2); }

/* ---------- Location panels (name + location, two per row) ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); align-items: stretch; }
.loc-panel {
  display: flex; flex-direction: column;
  color: var(--ink);
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.loc-panel:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(34,25,101,0.3); }
.loc-name { font-family: var(--font-display); font-size: var(--step-2); font-weight: 380; margin-block: 0.95rem 0.6rem; }
.loc-panel .loc-addr { color: var(--stone); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Value / list rows ---------- */
.value-row { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,3vw,2.5rem); align-items: baseline; padding-block: clamp(1.6rem,3vw,2.4rem); border-top: 1px solid var(--line); }
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row .vnum { font-family: var(--font-display); font-style: italic; color: var(--brand-300); font-size: var(--step-1); }
.value-row h3 { font-size: var(--step-2); font-weight: 380; }
.value-row p { color: var(--stone); max-width: 46ch; }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { padding: 0.55em 1.2em; border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.04em; font-weight: 500; color: var(--stone); transition: all 0.3s var(--ease); }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Enquiry form ---------- */
.form-split { align-items: start; }
.enquiry-form {
  display: grid; gap: 1.05rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px) saturate(1.05); -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.form-field { display: grid; gap: 0.45rem; }
.form-field > label, .form-field legend {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2); padding: 0;
}
.enquiry-form .req { color: var(--brand-400); }
.enquiry-form input[type="text"], .enquiry-form input[type="tel"],
.enquiry-form select, .enquiry-form textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink); width: 100%;
  padding: 0.72rem 0.85rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.enquiry-form textarea { resize: vertical; min-height: 90px; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: var(--stone-2); }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(90,73,201,0.15);
}
.enquiry-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d6883' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 18px;
  padding-right: 2.4rem;
}
.enquiry-form fieldset { border: 0; padding: 0; margin: 0; }
.enquiry-form legend { margin-bottom: 0.55rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  padding: 0.6rem 1.05rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.9rem; color: var(--ink-2);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.radio input { accent-color: var(--brand); margin: 0; }
.radio:has(input:checked) { border-color: var(--brand); background: var(--brand-050); color: var(--brand); }
.enquiry-form .btn { justify-content: center; margin-top: 0.35rem; }
.form-note { font-size: 0.78rem; text-align: center; margin-top: -0.15rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.2rem); align-items: stretch; }
.blog-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px) saturate(1.05); -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.55); border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -30px rgba(34,25,101,0.35); }
.blog-card .frame { aspect-ratio: 16/10; border-radius: 0; }
.blog-card .body { padding: clamp(1.3rem, 2.5vw, 1.8rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-card .post-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); display: flex; gap: 0.9rem; align-items: baseline; }
.blog-card .post-tag .date { color: var(--stone); font-weight: 500; letter-spacing: 0.08em; }
.blog-card h3 { font-size: var(--step-1); font-weight: 430; letter-spacing: -0.01em; line-height: 1.2; }
.blog-card .excerpt { color: var(--stone); font-size: 0.92rem; flex: 1; }
.blog-card .read { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-top: 0.3rem; }
.blog-card .read svg { width: 1em; height: 1em; transition: transform 0.4s var(--ease); }
.blog-card:hover .read svg { transform: translateX(4px); }

/* article page */
.post-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-top: 1.6rem; }
.post-meta .cat { color: var(--brand); font-weight: 600; }
.post-figure { margin-block: clamp(2rem, 4vw, 3.2rem) 0; }
.post-figure .frame { aspect-ratio: 21/9; }
.post-body { max-width: 72ch; }
.post-body > p { margin-bottom: 1.15em; color: var(--ink-2); }
.post-body .lead { margin-bottom: 1.4em; color: var(--ink-2); }
.post-body h2 { font-size: var(--step-2); font-weight: 400; margin: 1.9em 0 0.6em; }
.post-body h3 { font-size: var(--step-1); font-weight: 440; margin: 1.6em 0 0.45em; }
.post-body ul { margin: 0 0 1.3em; }
.post-body li { position: relative; padding-left: 1.5em; margin-bottom: 0.6em; color: var(--ink-2); }
.post-body li::before { content: "-"; position: absolute; left: 0; color: var(--gold); }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body .callout {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px) saturate(1.05); -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.55); border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  margin: 1.8em 0;
  color: var(--ink-2);
}
.post-body .callout p { margin: 0; }
.post-footer { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }

/* pill / tag */
.pill { display: inline-flex; align-items: center; gap: 0.5em; padding: 0.4em 0.95em; border-radius: 999px; background: var(--brand-050); color: var(--brand); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* quote */
.pullquote { font-family: var(--font-display); font-weight: 320; font-size: var(--step-3); line-height: 1.22; letter-spacing: -0.015em; max-width: 22ch; }
.pullquote .accent { color: var(--brand); }

/* ---------- Reveal animation (progressive enhancement) ---------- */
/* Content is visible by default; JS adds .anim-on to <html> to enable reveals. */
[data-reveal] { transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
html.anim-on [data-reveal] { opacity: 0; transform: translateY(26px); }
html.anim-on [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: 0.08s; }
[data-reveal-delay="2"]{ transition-delay: 0.16s; }
[data-reveal-delay="3"]{ transition-delay: 0.24s; }
[data-reveal-delay="4"]{ transition-delay: 0.32s; }
.reveal-clip { transition: clip-path 1.1s var(--ease); }
html.anim-on .reveal-clip { clip-path: inset(0 0 100% 0); }
html.anim-on .reveal-clip.in { clip-path: inset(0 0 0 0); }

/* Word-by-word rise (JS wraps each word; used on the hero headline).
   The block keeps only an opacity fade so it doesn't slide against the words. */
html.anim-on [data-reveal].reveal-words { transform: none; }
.reveal-words .rw { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .rw > i {
  display: inline-block; font-style: inherit; will-change: transform;
  transform: translateY(115%);
  transition: transform 0.85s var(--ease); transition-delay: var(--wd, 0s);
}
.reveal-words.in .rw > i { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-reveal] { transition-delay: 0s !important; }
  .reveal-clip { clip-path: none !important; }
  .reveal-words .rw { overflow: visible; }
  .reveal-words .rw > i { transform: none !important; }
}

/* scroll progress bar (created by main.js; scaleX driven by scroll) */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--brand), var(--brand-300), var(--gold));
  transform-origin: left center; transform: scaleX(0);
  will-change: transform; pointer-events: none;
}

/* floating WhatsApp */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #1faf54; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(31,175,84,0.6); transition: transform 0.4s var(--ease); }
.wa-float:hover { transform: scale(1.08) rotate(4deg); }
.wa-float svg { width: 28px; height: 28px; }

/* QA capture mode: fixed-height hero so full-page screenshots aren't inflated by 100svh */
html.qa-mode .hero { min-height: 0; height: 780px; }
html.qa-mode .wa-float { display: none; }

/* ---------- Before / after comparison slider ---------- */
.ba-slider { position: relative; max-width: 1000px; margin-inline: auto; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; box-shadow: 0 30px 60px -30px rgba(20,16,38,0.45); background: var(--brand-050); }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-tag { position: absolute; bottom: 1rem; z-index: 3; padding: 0.4em 0.95em; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(20,16,38,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 999px; pointer-events: none; }
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: rgba(255,255,255,0.92); z-index: 4; }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--brand); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(20,16,38,0.35); }
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-knob { box-shadow: 0 0 0 4px rgba(90,73,201,0.55); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .collection-grid { grid-template-columns: repeat(2,1fr); }
  .slab-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .tslider-track .tcard { flex-basis: calc((100% - clamp(1.4rem,3vw,2.6rem)) / 2); }
  .value-row { grid-template-columns: auto 1fr; }
  .value-row .link-arrow { grid-column: 2; }
}
@media (max-width: 820px) {
  .nav .navlink, .nav .header-cta { display: none; }
  .burger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 2; }
  .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .cols-3.keep-2, .cols-4.keep-2 { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; }
  .tslider-track .tcard { flex-basis: 86%; }
  .tslider-arrow { width: 44px; height: 44px; }
  .slab-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Collection subcategory heading (Italian / Coloured / Exotic sections) */
.subcat-head{
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(56,40,152,0.16);
}

/* ---------- Instagram "Follow us" feed (bottom of page) ---------- */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.ig-head .h2 { margin-block: 1rem 0.7rem; }
.ig-head .muted { max-width: 48ch; }
.ig-btn { color: #fff; background: var(--brand); }
.ig-btn:hover { box-shadow: 0 14px 30px -12px rgba(56,40,152,0.6); }

/* Live-feed mount: replace the placeholder tiles inside #ig-live-feed with a
   widget embed (Behold / SnapWidget / LightWidget) to auto-update with reels. */
.ig-feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.6vw, 1.2rem); }
.ig-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; display: grid; place-items: center; text-align: center;
  color: #fff; padding: 1rem;
  background: linear-gradient(160deg, rgba(56,40,152,0.92), rgba(214,41,118,0.85) 55%, rgba(250,126,30,0.85));
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ig-tile:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -26px rgba(20,16,38,0.5); }
.ig-tile .ig-play { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.22); display: grid; place-items: center; margin-bottom: 0.8rem; }
.ig-tile .ig-play svg { width: 20px; height: 20px; }
.ig-tile .ig-cap { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; }
.ig-tile .ig-sub { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-top: 0.3rem; }

/* Real Instagram reel embeds inside the feed grid - each iframe is the
   official /reel/CODE/embed/ endpoint, playable in place. The iframe is
   taller than its tile and shifted up so Instagram's own chrome (avatar,
   username and Follow at the top; icons and View-more at the bottom) is
   cropped out - only the reel itself shows. */
.ig-reel {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; background: #000; border: 1px solid var(--line-soft);
}
.ig-reel iframe {
  position: absolute; top: -54px; left: 0;
  width: 100%; height: calc(100% + 354px);
  border: 0;
}

.ig-follow-bar {
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  flex-wrap: wrap; text-align: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
.ig-follow-bar p { color: var(--stone); font-size: 0.95rem; }

@media (max-width: 820px) {
  .ig-feed { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Esteemed Clients ===== */
.clients-band{
  margin-top: clamp(2rem,4vw,3rem);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(31,26,15,0.5);
  aspect-ratio: 5 / 2;
}
.clients-band img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width: 600px){ .clients-band{ aspect-ratio: 3 / 2; } }
.client-list{
  list-style: none; margin: clamp(1.8rem,3vw,2.6rem) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
}
.client-list li{
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(56,40,152,0.12);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.02rem; line-height: 1.3; color: var(--ink);
  display: flex; align-items: center; gap: 0.7rem;
  transition: border-color .25s ease, transform .25s ease;
}
.client-list li::before{
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); opacity: 0.85;
}
.client-list li:hover{ border-color: rgba(56,40,152,0.4); transform: translateY(-2px); }
@media (max-width: 900px){ .client-list{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .client-list{ grid-template-columns: 1fr; } }

/* ===== Client testimonial videos ===== */
.client-videos{
  margin-top: clamp(1.8rem,3.5vw,2.8rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.4rem);
}
.client-video{
  width: 100%; aspect-ratio: 9 / 16;
  background: #0d0b16; border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 24px 55px -30px rgba(31,26,15,0.55);
}
@media (max-width: 760px){
  .client-videos{ grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* ===== Mobile text-spacing polish (small screens) ===== */
@media (max-width: 600px) {
  /* Large headings wrap to several lines on a phone - give them room to breathe */
  h1, .h1, .display { line-height: 1.12; letter-spacing: -0.008em; }
  h2, .h2 { line-height: 1.14; }
  h3, .h3 { line-height: 1.2; }
  /* Slightly airier body copy for comfortable reading on small screens */
  p { line-height: 1.72; }
  .lead { line-height: 1.6; }
  /* A touch more separation between an eyebrow/label and its heading */
  .sec-head .eyebrow { margin-bottom: 1rem; }
  .sec-head h2 { margin-bottom: 0.9rem; }
  /* Stat labels: keep from crowding the big number */
  .stat .label { margin-top: 0.55rem; line-height: 1.45; }
  /* Client name cards and subcategory headings sit a little roomier */
  .client-list { gap: 0.8rem; }
}
