/* ============================================================
   Divya Stones — index stylesheet
   Type: Cormorant Garamond (display) + DM Sans (UI/body)
   Palette: warm ivory, deep charcoal, bronze accent
   ============================================================ */

:root{
  --ink:        #0d0d0d;       /* near black */
  --ink-2:      #1f1f1f;
  --muted:      #6b6b6b;
  --line:       #e7e7e5;
  --bg:         #f6f6f5;       /* near-white grey */
  --bg-2:       #ececea;
  --surface:    #ffffff;
  --dark:       #111112;       /* graphite */
  --dark-2:     #1c1c1d;
  --accent:     #4a4a4a;       /* deep graphite */
  --accent-2:   #2d2d2d;
  --silver:     #c8c8c6;       /* italic accent on dark */
  --light:      #f1f1ef;

  --radius:     2px;
  --radius-lg:  6px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md:  0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:  0 30px 80px rgba(0,0,0,.22);

  --serif:      "Inria Serif", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:       "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap:       1320px;
  --pad-x:      28px;

  --header-h:   86px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }
input,select,textarea{ font:inherit; color:inherit; }

.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- Type system ---------- */
.display{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.display em{ font-style: italic; font-weight: 300; color: var(--muted); }
.display--light{ color: #fafafa; }
.display--light em{ color: var(--silver); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.eyebrow::before{
  content:""; width: 28px; height: 1px; background: currentColor; display:inline-block;
}
.eyebrow--light{ color:#d8d8d6; }

.lede{
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 20px;
}
.lede--light{ color: #b8b8b6; }

p{ margin: 0 0 14px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn{
  --pad-y: 16px;
  --pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary{
  background: var(--ink);
  color: #fafafa;
}
.btn--primary:hover{ background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover{ background: var(--ink); color:#fafafa; }
/* Ghost button placed on the dark hero info card must be light, not dark-on-dark. */
.m-hero__info-actions .btn--ghost{ color:#fafafa; border-color: rgba(255,255,255,.45); }
.m-hero__info-actions .btn--ghost:hover{ background:#fafafa; color: var(--ink); border-color:#fafafa; }
.btn--outline-light{
  background: transparent;
  color: #fafafa;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-light:hover{ background: #fafafa; color: var(--ink); border-color: #fafafa; }
.btn--block{ width: 100%; }

.link-arrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .25s ease, color .25s ease;
}
.link-arrow:hover{ gap: 16px; color: var(--ink); }

/* ---------- Announce bar ---------- */
.announce{
  background: var(--dark);
  color: #c8c8c6;
  font-size: 12.5px;
  letter-spacing: .05em;
}
.announce__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px var(--pad-x);
  flex-wrap: wrap;
}
.announce__item{
  display:inline-flex; align-items:center; gap:8px;
  color: inherit;
}
.announce__item:hover{ color: #fafafa; }
.announce__sep{ width: 4px; height:4px; background: #4a4a4a; border-radius:50%; }
.dot{ width: 6px; height:6px; border-radius:50%; background: #b0c8b0; box-shadow: 0 0 0 4px rgba(176,200,176,.15); }

/* ---------- Topbar (announce + header, floats over hero) ---------- */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.topbar.is-stuck{
  background: rgba(246,246,245,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px rgba(0,0,0,.05);
}

/* ---------- Announce bar (collapses on scroll) ---------- */
.announce{
  background: rgba(0,0,0,.42);
  color: #f1f1ef;
  font-size: 12.5px;
  letter-spacing: .05em;
  max-height: 44px;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, background .35s ease;
}
.topbar.is-stuck .announce{
  max-height: 0;
  opacity: 0;
}

/* ---------- Header ---------- */
.site-header{
  position: relative;
  background: transparent;
  transition: background .35s ease;
}
.site-header .brand__img--dark{ display: none; }
.site-header .brand__img--light{ display: block; }
.site-header .nav__link{ color: rgba(255,255,255,.92); }
.site-header .nav__link:hover{ color: #fff; }
.site-header .caret{ color: rgba(255,255,255,.7); }
.site-header .btn--ghost{
  color: #fafafa;
  border-color: rgba(255,255,255,.55);
}
.site-header .btn--ghost:hover{ background: #fafafa; color: var(--ink); border-color: #fafafa; }
.site-header .hamburger{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}
.site-header .hamburger span{ background: #fafafa; }

.topbar.is-stuck .brand__img--dark{ display: block; }
.topbar.is-stuck .brand__img--light{ display: none; }
.topbar.is-stuck .nav__link{ color: var(--ink-2); }
.topbar.is-stuck .nav__link:hover{ color: var(--ink); }
.topbar.is-stuck .caret{ color: var(--muted); }
.topbar.is-stuck .btn--ghost{
  color: var(--ink);
  border-color: var(--ink);
}
.topbar.is-stuck .btn--ghost:hover{ background: var(--ink); color: #fafafa; }
.topbar.is-stuck .hamburger{
  background: var(--surface);
  border-color: var(--line);
}
.topbar.is-stuck .hamburger span{ background: var(--ink); }
.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.brand{
  display:flex; align-items:center; height: 100%;
}
.brand__img{ height: 46px; width: auto; display:block; }
.brand__img--light{ display:none; }

.nav__list{
  display:flex;
  justify-content:center;
  gap: 4px;
}
.nav__link{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover{ color: var(--ink); }
.caret{ font-size: 14px; opacity:.6; }
.nav__has-sub{ position: relative; }
.nav__has-sub::after{
  /* Invisible hover bridge — fills the gap between trigger and submenu
     so the cursor doesn't lose hover state while moving down. */
  content: "";
  position: absolute;
  left: -10px; right: -10px;
  top: 100%;
  height: 14px;
  display: block;
}
.nav__sub{
  position:absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease .08s, transform .18s ease .08s;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.nav__sub a{
  display:block;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: var(--radius);
  color: var(--ink-2);
}
.nav__sub a:hover{ background: var(--bg-2); color: var(--ink); }

/* ---- Nested submenu (e.g. Granite → S. Indian / N. Indian) ---- */
.nav__sub-has-children{ position: relative; }
.nav__sub-has-children > a{
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.nav__sub-has-children > a .caret-sm{
  font-size: 14px;
  opacity: .5;
  margin-left: 8px;
  transition: opacity .15s ease, transform .15s ease;
}
.nav__sub-has-children:hover > a .caret-sm{
  opacity: .9;
  transform: translateX(2px);
}
.nav__sub-children{
  position: absolute;
  top: -10px;
  left: calc(100% + 8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity .18s ease .05s, transform .18s ease .05s;
  list-style: none;
  margin: 0;
}
.nav__sub-has-children:hover > .nav__sub-children,
.nav__sub-has-children:focus-within > .nav__sub-children{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}
/* Bridge so cursor can travel from parent item to child menu without gap */
.nav__sub-has-children::before{
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 12px;
  height: 100%;
  pointer-events: auto;
}
@media (max-width: 980px){
  /* Mobile: stack inline, no flyout */
  .nav__sub-children{
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .nav__sub-children a{
    font-size: 12px;
    color: var(--muted);
  }
}

.header__cta{ display:flex; align-items:center; gap: 12px; justify-self:end; }
.header__cta .btn{ --pad-y: 12px; --pad-x: 20px; }

.hamburger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  position:relative;
}
.hamburger span{
  position:absolute;
  left: 12px; right: 12px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1){ top: 16px; }
.hamburger span:nth-child(2){ top: 21px; }
.hamburger span:nth-child(3){ top: 26px; }
.hamburger.is-open span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
.section{
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
}
.section--dark{
  background: var(--dark);
  color: #d4d4d2;
}
.section--dark p{ color: #a8a8a6; }
.section--cream{ background: var(--bg-2); }
.section-head{ max-width: 760px; margin: 0 0 60px; }
.section-head--center{ margin: 0 auto 60px; text-align:center; }
.section-head--center .eyebrow,
.section-head--center .lede{ margin-inline:auto; }
.section-head--row{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 40px;
  max-width: none; margin-bottom: 50px;
  flex-wrap: wrap;
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
  overflow: hidden;
  color: #fafafa;
  display: flex;
  align-items: flex-end;
}
.hero__slides{ position:absolute; inset:0; }
.hero__slide{
  position:absolute; inset:0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .9s ease, transform 8s ease;
  overflow: hidden;
}
.hero__slide.is-active{ opacity:1; transform: scale(1); }
.hero__slide-img,
.hero__slide-video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit: cover;
  display:block;
}
.hero__slide-img{ z-index: 0; }
.hero__slide-video{ z-index: 1; opacity: 0; transition: opacity .8s ease; }
.hero__slide.has-video .hero__slide-video{ opacity: 1; }
.hero__veil{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.78) 100%),
    rgba(0,0,0,.25);
}
.hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 7vw, 110px);
  padding-top: clamp(140px, 18vw, 220px);
}
.hero__title{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 28px;
  max-width: 14ch;
  color: #fafafa;
}
.hero__title em{ font-style: italic; font-weight: 300; color: #e8e6e2; }
.hero__sub{
  max-width: 56ch;
  font-size: clamp(16px, 1.2vw, 19px);
  color: #d4d4d2;
  margin: 0 0 36px;
  line-height: 1.65;
}
.hero__actions{ display:flex; gap: 14px; flex-wrap: wrap; }
.hero__meta{
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 24px;
  display:flex; align-items:center; justify-content: space-between;
}
.dots{ display:flex; gap: 10px; }
.dots__item{
  width: 28px; height: 2px; background: rgba(255,255,255,.35);
  cursor: pointer; transition: background .25s ease, width .25s ease;
}
.dots__item.is-active{ background: #ffffff; width: 48px; }
.scroll-cue{
  display:inline-flex; align-items:center; gap: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: #d4d4d2;
}
.scroll-cue__line{
  position:relative;
  width: 1px; height: 56px; background: rgba(255,255,255,.35); overflow:hidden;
}
.scroll-cue__line::after{
  content:""; position:absolute; top:-30%; left:0; right:0;
  height: 30%; background: #fafafa;
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue{
  0%{ transform: translateY(-30%); } 100%{ transform: translateY(330%); }
}

/* ---------- Marquee ---------- */
.marquee{
  background: var(--ink);
  color: #d6ccb8;
  border-block: 1px solid #2c2620;
  overflow: hidden;
}
.marquee__track{
  display: inline-flex;
  align-items:center;
  gap: 40px;
  white-space: nowrap;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  animation: marquee 38s linear infinite;
}
.marquee__track span:not(.marquee__dot){ color: #f1d9b6; }
.marquee__dot{ color: var(--accent); font-style: normal; font-size: 14px; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.about__media{
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__media-frame{
  position: absolute;
  inset: 0 30% 22% 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about__media-frame img,
.about__media-frame video{ width:100%; height:100%; object-fit: cover; display:block; }
.about__media-frame--offset{
  inset: 35% 0 0 38%;
  border: 8px solid var(--bg);
}
.about__badge{
  position:absolute;
  left: 0; bottom: 14%;
  background: var(--ink);
  color: #fafafa;
  padding: 22px 26px;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.about__badge-num{
  display:block;
  font-family: var(--serif);
  font-size: 56px; line-height: .9;
  font-weight: 300;
  letter-spacing: -.02em;
}
.about__badge-num sup{ font-size:.5em; color: var(--silver); }
.about__badge-lbl{
  display:block;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
}

.about__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 32px;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}
.about__stats li{ display:flex; flex-wrap:wrap; align-items: baseline; gap: 2px; }
.stat__num{
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.stat__plus{
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}
.stat__lbl{
  flex-basis: 100%;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Specimen (floating slab composition) ----------
   The image sits across the seam between the cream About section and
   the dark Collections section. The split background is what gives
   the image its weight — slabs in light, boulder in shadow. */
.specimen{
  position: relative;
  z-index: 6;
  padding: 0;
  margin: 0;
  isolation: isolate;
}
.specimen__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      var(--bg)      0%,
      var(--bg)     48%,
      var(--dark)   48%,
      var(--dark)  100%);
}
.specimen__bg::before{
  content: "";
  position: absolute;
  left: 50%; top: 48%;
  width: clamp(420px, 56vw, 820px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(0,0,0,.08) 20%, rgba(0,0,0,.16) 50%, rgba(0,0,0,.08) 80%, transparent 100%);
  transform: translate(-50%, -.5px);
}
.specimen__mark{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(220px, 32vw, 460px);
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(120,120,118,.18);
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}
.specimen__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(440px, 720px) minmax(220px, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(60px, 8vw, 110px);
}
.specimen__stage{
  position: relative;
  margin: 0;
  aspect-ratio: 845 / 756;
  animation: specimenDrift 11s ease-in-out infinite;
}
.specimen__img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0  6px  6px rgba(20,18,16,.10))
    drop-shadow(0 24px 28px rgba(20,18,16,.18))
    drop-shadow(0 60px 80px rgba(0,0,0,.30));
}
.specimen__ground{
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -2%;
  height: 56px;
  z-index: 1;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.22) 35%,
    rgba(0,0,0,0)   72%);
  filter: blur(10px);
  animation: specimenGround 11s ease-in-out infinite;
}
@keyframes specimenDrift{
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -8px, 0); }
}
@keyframes specimenGround{
  0%, 100% { opacity: .95; transform: scaleX(1); }
  50%      { opacity: .72; transform: scaleX(.93); }
}

/* Editorial rails flanking the image */
.specimen__rail{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.specimen__rail--left{
  align-items: flex-start;
  padding-top: 8%;
  color: var(--muted);
}
.specimen__rail--right{
  align-items: flex-start;
  padding-top: 6%;
  color: #e8e6e2;
}
.specimen__eyebrow{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.specimen__line{
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--ink-2), transparent);
  margin-left: 2px;
}
.specimen__caption{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 22ch;
}
.specimen__title{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: #fafafa;
}
.specimen__title em{
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
}
.specimen__specs{
  display: grid;
  gap: 14px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #2a2a2c;
  width: 100%;
  max-width: 280px;
}
.specimen__specs > div{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: baseline;
}
.specimen__specs dt{
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7a7a78;
  margin: 0;
}
.specimen__specs dd{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -.005em;
  color: #e8e6e2;
  margin: 0;
}

@media (max-width: 1100px){
  .specimen__inner{
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .specimen__bg{
    background: linear-gradient(180deg,
      var(--bg)    0%,
      var(--bg)   38%,
      var(--dark) 38%,
      var(--dark) 100%);
  }
  .specimen__mark{ font-size: clamp(180px, 44vw, 320px); top: 38%; }
  .specimen__rail--left{ order: -1; padding-top: 0; }
  .specimen__rail--left{ flex-direction: row; align-items: center; gap: 16px; }
  .specimen__rail--left .specimen__line{
    width: 40px; height: 1px;
    background: linear-gradient(90deg, var(--ink-2), transparent);
    margin: 0;
  }
  .specimen__rail--right{ padding-top: 0; align-items: center; text-align: center; }
  .specimen__title{ text-align: center; }
  .specimen__specs{ margin-inline: auto; max-width: 360px; }
  .specimen__stage{ max-width: 560px; margin-inline: auto; width: 100%; }
}
@media (prefers-reduced-motion: reduce){
  .specimen__stage, .specimen__ground{ animation: none; }
}

/* ---------- Showreel ---------- */
.showreel{
  position: relative;
  height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  color: #faf7f1;
  display:flex;
  align-items: center;
}
.showreel__media{ position:absolute; inset:0; z-index: 0; }
.showreel__video{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.showreel__veil{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.25) 100%);
}
.showreel__content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
}
.showreel__content .display{ max-width: 18ch; }
.showreel__content .lede{ max-width: 50ch; margin-bottom: 28px; }
@media (max-width: 720px){
  .showreel{ height: auto; min-height: 480px; padding: 80px 0; }
  .showreel__veil{
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 100%);
  }
}

/* ---------- Collections ---------- */
.coll-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.coll-card{
  position: relative;
  display: block;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  color: #faf7f1;
}
.coll-card::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .9s ease;
  z-index: 0;
}
/* Video layer sits ON TOP of the ::before image (which is the poster/fallback).
   The image still acts as poster while the video buffers and as a fallback if
   video is disabled. */
.coll-card__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  transition: transform .9s ease;
}
.coll-card:hover .coll-card__video{ transform: scale(1.04); }
.coll-card::after{
  content:"";
  position:absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.75) 100%);
  z-index: 1;
  transition: background .4s ease;
}
.coll-card:hover::before{ transform: scale(1.06); }
.coll-card:hover::after{ background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.85) 100%); }

.coll-card__num{
  position:absolute;
  top: 22px; left: 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  z-index: 2;
  letter-spacing: .15em;
}
.coll-card__body{
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
}
.coll-card__title{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 6px;
  color: #fafafa;
}
.coll-card__meta{
  font-size: 12.5px; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  margin: 0 0 14px;
}
.coll-card__cta{
  display:inline-block;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: #fafafa;
  transform: translateY(8px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.coll-card:hover .coll-card__cta{ transform: translateY(0); opacity: 1; }

/* ---------- Products ---------- */
.filters{
  display:flex; flex-wrap:wrap; gap: 6px;
  background: var(--bg-2);
  padding: 6px;
  border-radius: 999px;
}
.filter{
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.filter:hover{ color: var(--ink); }
.filter.is-active{ background: var(--ink); color: #fafafa; }

.prod-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
.prod{
  display: block;
  transition: opacity .3s ease, transform .3s ease;
}
.prod.is-hidden{ display:none; }
.prod__img{
  aspect-ratio: 1 / 1.15;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform .6s ease;
}
.prod__img::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(22,19,16,.0);
  transition: background .35s ease;
}
.prod:hover .prod__img::after{ background: rgba(22,19,16,.15); }

/* Hover-mockup overlay — shows an installed room shot when the user hovers
   the variant card, so they can visualise the slab in situ. */
.prod__img-hover{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .55s ease, transform 1.6s ease;
  pointer-events: none;
}
.prod--motion:hover .prod__img-hover,
.prod--motion:focus-within .prod__img-hover{
  opacity: 1;
  transform: scale(1.08);
}
/* Tiny "installed" badge in the corner when hovering, so the user knows
   why the image just changed */
.prod--motion .prod__img::before{
  content: "INSTALLED";
  position: absolute;
  z-index: 3;
  bottom: 12px; right: 14px;
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.0);
  background: rgba(0,0,0,.55);
  padding: 5px 9px;
  border-radius: 999px;
  pointer-events: none;
  transition: color .35s ease, background .35s ease;
}
.prod--motion:hover .prod__img::before,
.prod--motion:focus-within .prod__img::before{
  color: rgba(255,255,255,.9);
}
.prod__tag{
  position:absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: #fafafa;
  color: var(--ink);
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.prod__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 4px;
  color: var(--ink);
}
.prod__meta{
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
  margin: 0;
}
.products__foot{ text-align:center; margin-top: 60px; }

/* ---------- Process ---------- */
.process__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: flex-start;
}
.process__intro{ position: sticky; top: 110px; }
.process__steps{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 36px;
}
.step{
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
}
.step__num{
  display:block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px; color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: .15em;
}
.step__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step p{ margin: 0; }

/* ---------- Projects gallery ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item{
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
.gallery__img,
.gallery__video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit: cover;
  transition: transform .9s ease, opacity .6s ease;
}
.gallery__img{ z-index: 1; }
.gallery__video{ z-index: 2; opacity: 0; pointer-events: none; }
.gallery__item:hover .gallery__video,
.gallery__item:focus-within .gallery__video{ opacity: 1; }
.gallery__item:hover .gallery__img,
.gallery__item:hover .gallery__video,
.gallery__item:focus-within .gallery__img,
.gallery__item:focus-within .gallery__video{ transform: scale(1.04); }
.gallery__item figcaption{
  position:absolute;
  left: 18px; bottom: 16px; right: 18px;
  color: #fafafa;
  z-index: 2;
}
.gallery__item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.gallery__cat{
  display:inline-block;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.gallery__item figcaption h3{
  font-family: var(--serif); font-weight: 400;
  font-size: 20px;
  letter-spacing: -.01em;
  margin: 0;
  line-height: 1.2;
  color: #fafafa;
}
.gallery__item figcaption{
  z-index: 3;
}

/* ---------- Testimonials ---------- */
.testimonials__grid{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.quotes{ position: relative; }
.quote{
  display: none;
  margin: 0;
  animation: fade .5s ease;
}
.quote.is-active{ display:block; }
@keyframes fade{ from{ opacity: 0; transform: translateY(6px);} to{opacity:1; transform: none;} }
.quote p{
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  letter-spacing: -.015em;
  color: #fafafa;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.quote footer{
  font-style: normal;
  color: #a8a8a6;
  font-size: 14px;
  line-height: 1.5;
}
.quote footer strong{ color: #fafafa; font-weight: 500; }
.quotes__nav{
  margin-top: 36px;
  display:inline-flex; align-items:center; gap: 18px;
  padding-top: 22px;
  border-top: 1px solid #2a2a2c;
  width: 100%;
}
.quote-btn{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #333335;
  color: #d4d4d2;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.quote-btn:hover{ background: #fafafa; color: var(--ink); border-color: #fafafa; }
.quote-count{
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  color: #a8a8a6;
  margin-left: auto;
  letter-spacing: .15em;
}

/* ---------- CTA / Contact ---------- */
.cta__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}
.contact-list{
  margin-top: 36px;
  display:grid; gap: 22px;
}
.contact-list li{ display:grid; gap: 4px; }
.contact-list__lbl{
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.contact-list__val{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.5;
}
.contact-list__val a:hover{ color: var(--muted); }

.cta__form{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.field label{
  display:block;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field textarea{ resize: vertical; min-height: 100px; }
.form-note{
  margin: 0; text-align:center; padding: 10px 0;
  color: var(--ink); font-size: 13px;
}

/* ---------- Footer ---------- */
.footer{
  background: var(--dark);
  color: #a8a8a6;
  padding: 90px 0 24px;
}
.footer__top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid #2a2a2c;
}
.footer__logo{ height: 56px; width: auto; margin-bottom: 22px; }
.footer__brand p{ color: #7a7a78; max-width: 36ch; }
.footer__col h4{
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fafafa;
  margin: 0 0 22px;
}
.footer__col li{ margin-bottom: 12px; font-size: 14.5px; }
.footer__col a:hover{ color: #fafafa; }
.socials{
  display:flex; gap: 10px; margin-top: 18px;
}
.socials a{
  width: 40px; height: 40px;
  display:inline-flex; align-items:center; justify-content:center;
  border: 1px solid #333335; border-radius: 50%;
  font-size: 12px; letter-spacing: .04em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.socials a:hover{ background: #fafafa; color: var(--ink); border-color: #fafafa; }
.footer__bot{
  display:flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
  color: #5a5a58;
}
.footer__bot a:hover{ color: #fafafa; }

/* ---------- To-top ---------- */
.to-top{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 40;
  width: 48px; height: 48px;
  background: var(--ink); color: #fafafa;
  border-radius: 50%;
  display:inline-flex; align-items:center; justify-content:center;
  opacity: 0; pointer-events:none;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  box-shadow: var(--shadow-md);
}
.to-top.is-visible{ opacity:1; pointer-events:auto; transform: translateY(0); }
.to-top:hover{ background: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in{ opacity:1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px){
  .header__inner{ grid-template-columns: auto 1fr auto; }
  .nav{
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .35s ease;
    padding: 18px 0 28px;
  }
  .nav.is-open{ transform: translateY(0); }
  .nav__list{ flex-direction: column; gap: 0; }
  .nav__link{ padding: 16px var(--pad-x); border-radius: 0; width: 100%; }
  .nav__sub{
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; padding: 0 var(--pad-x) 8px;
    background: transparent; min-width: 0;
  }
  .hamburger{ display: inline-flex; align-items:center; justify-content:center; }
  .header__cta .btn{ display:none; }

  .coll-grid{ grid-template-columns: repeat(2, 1fr); }
  .prod-grid{ grid-template-columns: repeat(3, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .about__grid,
  .process__grid,
  .testimonials__grid,
  .cta__grid{ grid-template-columns: 1fr; gap: 60px; }
  .process__intro{ position: static; }
  .footer__top{ grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 720px){
  :root{ --header-h: 72px; --pad-x: 20px; }
  .brand__img{ height: 38px; }
  .announce__inner{ font-size: 11.5px; gap: 12px; }
  .hero{ height: auto; min-height: 580px; }
  .hero__content{ padding-top: 100px; padding-bottom: 120px; }
  .hero__meta{ left: var(--pad-x); right: var(--pad-x); bottom: 18px; }
  .section{ padding: 70px 0; }
  .section-head{ margin-bottom: 38px; }
  .section-head--row{ flex-direction: column; align-items: flex-start; }
  .filters{ overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .filter{ flex: 0 0 auto; }

  .coll-grid,
  .prod-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery__item{ aspect-ratio: 4 / 3; }
  .about__stats{ grid-template-columns: 1fr 1fr; gap: 18px; }
  .field-row{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; gap: 38px; padding-bottom: 40px; }
  .footer{ padding-top: 60px; }
}

@media (max-width: 480px){
  .prod-grid{ grid-template-columns: 1fr; }
  .coll-grid{ grid-template-columns: 1fr; }
  .about__stats{ grid-template-columns: 1fr; }
}


/* ============================================================
   Divya Stones — About page styles
   Loaded on top of style.css. Adds inner-page hero variant,
   stats strip, values grid, timeline, certs, industries, CTA band.
   ============================================================ */

/* ---------- Inner-page hero (shorter than home) ---------- */
.hero--inner{
  height: clamp(440px, 62vh, 600px);
  min-height: 440px;
  max-height: 640px;
  align-items: center;
}
.hero__content--inner{
  padding-top: clamp(150px, 16vw, 200px);
  padding-bottom: clamp(40px, 5vw, 70px);
}
.hero__title--inner{
  font-size: clamp(36px, 5vw, 68px);
  max-width: 20ch;
  margin-bottom: 16px;
}
.hero__sub--inner{
  max-width: 56ch;
  margin-bottom: 22px;
  font-size: clamp(15px, 1.1vw, 17px);
}

.crumbs{
  display:flex; align-items:center; gap: 10px;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.crumbs a{
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.crumbs a:hover{ color: #fff; border-color: #fff; }
.crumbs__current{ color: #fff; }

.nav__link.is-active{ color: var(--ink); }
.site-header .nav__link.is-active{ color: #fff; position: relative; }
/* When the bar sticks (solid light background) the active page name must
   switch to dark ink — otherwise white-on-white makes it invisible. */
.topbar.is-stuck .site-header .nav__link.is-active{ color: var(--ink); }
.topbar.is-stuck .site-header .nav__link.is-active::after{ background: var(--ink); }
.site-header .nav__link.is-active::after{
  content: ""; position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: rgba(255,255,255,.6);
}
.topbar.is-stuck .nav__link.is-active::after{ background: var(--ink); }

/* ---------- INTRO (split: copy + media frames + seal) ---------- */
.intro__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro__copy .display{ margin-bottom: 22px; }
.intro__actions{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}
.intro__media{
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}
.intro__frame{
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.intro__frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.intro__frame:hover img{ transform: scale(1.04); }
.intro__frame--main{
  inset: 0 22% 18% 0;
}
.intro__frame--inset{
  inset: 34% 0 0 36%;
  border: 8px solid var(--bg);
}
.intro__seal{
  position: absolute;
  left: 6%; bottom: 6%;
  background: var(--ink);
  color: #fafafa;
  padding: 18px 22px;
  z-index: 3;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.intro__seal-num{
  display:block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.02em;
}
.intro__seal-num sup{ font-size: .5em; color: var(--silver); font-style: italic; }
.intro__seal-lbl{
  display:block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
}

/* Stats strip (full-width row below the intro grid) */
.intro__stats{
  margin-top: clamp(50px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro__stats li{
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.intro__stats li:last-child{ border-right: none; }

/* ---------- VALUES ---------- */
.values__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value{
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .35s ease;
}
.value:hover{ background: rgba(255,255,255,.55); }
.value__num{
  display:block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 22px;
}
.value__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.value p{ margin: 0; font-size: 14.5px; }

/* ---------- PROCESS TIMELINE (sticky media + list) ---------- */
.timeline-sec__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.timeline-sec__media{
  position: sticky;
  top: 120px;
}
.timeline-sec__frame{
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.timeline-sec__frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.timeline-sec__caption .display{ margin: 12px 0 16px; }

.timeline{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.timeline__row{
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  gap: clamp(16px, 2vw, 32px);
  align-items: baseline;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
.timeline__num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: -.02em;
  color: var(--muted);
  line-height: 1;
}
.timeline__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.timeline__body p{ margin: 0; font-size: 14.5px; }
.timeline__meta{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* ---------- CERTIFICATIONS ---------- */
.certs__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.qc-list{
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.qc-list li{
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: #d4d4d2;
}
.qc-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--silver);
}
.certs__marks{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cert-mark{
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.04);
  border: 1px solid #2a2a2c;
  display: grid;
  place-items: center;
  padding: 18px;
  transition: background .35s ease, border-color .35s ease;
}
.cert-mark:hover{
  background: rgba(255,255,255,.08);
  border-color: #444446;
}
.cert-mark img{
  max-width: 90%;
  max-height: 90%;
  filter: grayscale(1) brightness(2.4) contrast(.95);
  opacity: .9;
}

/* ---------- TESTIMONIALS (about-page enhancements) ---------- */
.testimonials .quote{
  position: relative;
  padding-left: 0;
}
.testimonials .quote__mark{
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 8vw, 120px);
  line-height: 0.6;
  color: var(--silver);
  opacity: .35;
  margin-bottom: 18px;
}
.testimonials .quote p{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fafafa;
  margin: 0 0 32px;
  max-width: 38ch;
  text-wrap: pretty;
}
.testimonials .quote footer{
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials .quote__avatar{
  display: inline-block;
  width: 56px; height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid #2a2a2c;
  flex: 0 0 auto;
}
.testimonials .quote__who{ display: grid; gap: 2px; line-height: 1.4; }
.testimonials .quote__who strong{
  color: #fafafa;
  font-weight: 500;
  font-size: 15px;
}
.testimonials .quote__who > span{
  color: #a8a8a6;
  font-size: 13px;
  letter-spacing: .04em;
}

/* ---------- INDUSTRIES (with stone thumbnails) ---------- */
.industries__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px 26px 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
}
.industry:hover{
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.industry__thumb{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  filter: saturate(.9);
}
.industry__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.industry p{ margin: 0; font-size: 14.5px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band{ padding: clamp(40px, 5vw, 80px) 0; }
.cta-band__inner{
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: #fafafa;
  padding: clamp(36px, 4vw, 60px) clamp(36px, 5vw, 60px);
  border-radius: var(--radius-lg);
}
.cta-band__inner .eyebrow{ color: #d4d4d2; margin-bottom: 14px; }
.cta-band__inner .display{
  color: #fafafa;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.cta-band__inner .display em{ color: var(--silver); font-style: italic; }
.cta-band__inner .lede{
  color: #b8b8b6;
  font-size: clamp(14.5px, 1.15vw, 16.5px);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}
.cta-band__actions{
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-band__actions .btn--ghost{
  color: #fafafa;
  border-color: rgba(255,255,255,.55);
}
.cta-band__actions .btn--ghost:hover{
  background: #fafafa;
  color: var(--ink);
  border-color: #fafafa;
}
.cta-band__actions .btn--primary{
  background: #fafafa;
  color: var(--ink);
}
.cta-band__actions .btn--primary:hover{
  background: var(--silver);
  color: var(--ink);
}

/* ---------- About page responsive ---------- */
@media (max-width: 1100px){
  .intro__grid{ grid-template-columns: 1fr; gap: 50px; }
  .intro__media{ margin: 0 auto; max-width: 520px; }
  .intro__stats{ grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 20px 0; }
  .intro__stats li{ padding: 16px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .intro__stats li:nth-child(2n){ border-right: none; }
  .intro__stats li:nth-last-child(-n+2){ border-bottom: none; }
  .values__grid{ grid-template-columns: repeat(2, 1fr); }
  .timeline-sec__grid{ grid-template-columns: 1fr; gap: 40px; }
  .timeline-sec__media{ position: static; }
  .timeline-sec__frame{ aspect-ratio: 16 / 9; }
  .certs__grid{ grid-template-columns: 1fr; }
  .industries__grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner{ grid-template-columns: 1fr; }
  .cta-band__actions{ justify-content: flex-start; }
  .timeline__row{
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .timeline__meta{
    grid-column: 2;
    text-align: left;
    padding-top: 0;
    margin-top: 8px;
  }
}

@media (max-width: 720px){
  .hero--inner{ height: auto; min-height: 460px; padding-bottom: 60px; }
  .intro__stats{ grid-template-columns: 1fr; }
  .intro__stats li{ border-right: none; }
  .intro__stats li:nth-child(2n){ border-right: none; }
  .values__grid{ grid-template-columns: 1fr; }
  .industries__grid{ grid-template-columns: 1fr; }
  .cta-band__inner{ padding: 32px 24px; }
  .timeline__num{ font-size: 32px; }
  .testimonials .quote p{ font-size: 20px; }
}

/* =====================================================================
   MOTION — "looks like videos" treatment for static images
   ===================================================================== */

/* ---------- Collection cards: slow Ken-Burns drift ---------- */
@keyframes collDrift {
  0%   { transform: scale(1.04) translate(0, 0); }
  25%  { transform: scale(1.06) translate(-1.5%, -0.8%); }
  50%  { transform: scale(1.05) translate(1.2%, -1.4%); }
  75%  { transform: scale(1.06) translate(-0.8%, 0.6%); }
  100% { transform: scale(1.04) translate(0, 0); }
}
.coll-card--motion::before{
  /* The base layer keeps its existing scale(1) at rest, the motion
     keyframe takes over and constantly drifts subtly.  Pauses when
     reduced-motion is requested. */
  animation: collDrift 22s ease-in-out infinite;
  transform-origin: center;
}
/* Different cards drift on offset timelines so the four don't move
   in lockstep — feels organic, not synthetic. */
.coll-card--motion:nth-child(2)::before { animation-delay: -5s;  }
.coll-card--motion:nth-child(3)::before { animation-delay: -11s; }
.coll-card--motion:nth-child(4)::before { animation-delay: -17s; }
/* Hover takes over: the explicit scale wins (specificity matches the
   default hover rule), giving the existing zoom-on-hover behaviour. */
.coll-card--motion:hover::before{
  animation-play-state: paused;
  transform: scale(1.08);
}

/* ---------- Gallery cards: crossfade + drift ---------- */
.gallery__item--motion .gallery__img{
  /* slow ken-burns drift on the static image so it never feels frozen */
  animation: gallerySlowZoom 16s ease-in-out infinite alternate;
  transform-origin: 55% 45%;
}
.gallery__item--motion:nth-of-type(2) .gallery__img { animation-delay: -3s;  transform-origin: 40% 60%; }
.gallery__item--motion:nth-of-type(3) .gallery__img { animation-delay: -6s;  transform-origin: 60% 50%; }
.gallery__item--motion:nth-of-type(4) .gallery__img { animation-delay: -9s;  transform-origin: 45% 55%; }
.gallery__item--motion:nth-of-type(5) .gallery__img { animation-delay: -12s; transform-origin: 50% 40%; }
.gallery__item--motion:nth-of-type(6) .gallery__img { animation-delay: -15s; transform-origin: 55% 55%; }

@keyframes gallerySlowZoom {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Hover crossfade — second image takes over with its own drift */
.gallery__item--motion .gallery__img--hover{
  z-index: 2;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 1.6s ease;
}
.gallery__item--motion:hover .gallery__img--hover,
.gallery__item--motion:focus-within .gallery__img--hover{
  opacity: 1;
  transform: scale(1.08);
}
/* Pause the primary drift on hover so the hover image owns the motion */
.gallery__item--motion:hover .gallery__img:not(.gallery__img--hover),
.gallery__item--motion:focus-within .gallery__img:not(.gallery__img--hover){
  animation-play-state: paused;
  transform: scale(1.06);
}

/* Respect motion preferences everywhere */
@media (prefers-reduced-motion: reduce){
  .coll-card--motion::before,
  .gallery__item--motion .gallery__img{
    animation: none;
  }
}
