/* ============================================================
   APEX DESIGN GROUP — Editorial Craft Luxe
   Warm bone · white cards · charcoal · clay accent (sparing)
   High-contrast serif display + clean grotesk UI
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bone:      #FFFFFF;   /* white paper */
  --stone:     #FFFFFF;   /* secondary surface (white) */
  --stone-2:   #FFFFFF;   /* between paper & stone (white) */
  --card:      #FFFFFF;   /* card surfaces */
  --ink:       #23262A;   /* cool charcoal text */
  --ink-soft:  #5D6166;   /* muted grey text */
  --ink-faint: #9AA0A6;
  --line:      #D6D9DC;   /* soft borders */
  --line-soft: #E6E8EA;

  --clay:      #44494E;   /* graphite / steel accent */
  --clay-deep: #2C3034;
  --clay-soft: #8C939A;   /* brushed silver (on dark) */
  --clay-tint: #E8EAEC;

  /* "dark" surfaces — true black with white text */
  --dark:      #0D0E0F;
  --dark-2:    #161718;
  --on-dark:      #FFFFFF;
  --on-dark-soft: #CBCDCF;
  --on-dark-faint:#8A8E92;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1340px;
  --gutter: clamp(20px, 5vw, 76px);
  --tex: 0.5;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; background: #ffffff; }
/* Calacatta marble veining behind the white sections */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    url("images/marble-veined.png") center center / cover no-repeat,
    #ffffff;
  opacity: 0.5;
}
/* polished sheen removed */
@media (prefers-reduced-motion: reduce) {}
body {
  margin: 0;
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--clay); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(68px, 8.5vw, 142px); position: relative; }
.section--tight { padding-block: clamp(50px, 6vw, 92px); }
.bg-stone { background: transparent; }
.bg-soft  { background: transparent; }
.svc-bg { position: relative; isolation: isolate; }
.svc-bg > .wrap { position: relative; z-index: 1; }
.svc-bg__img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/services-bg-v4.png");
  background-size: cover; background-position: center;
}
.svc-bg__scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.46));
}
.bg-dark  { background: var(--dark); color: var(--on-dark); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--plain::before { display: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--clay-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-hero { font-size: clamp(2.6rem, 5.2vw, 4.7rem); line-height: 1.05; }
.h-1    { font-size: clamp(2.2rem, 4.6vw, 4rem); }
.h-2    { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
.h-3    { font-size: clamp(1.45rem, 2.2vw, 1.95rem); }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
em.flourish, .flourish { font-style: italic; }
/* Tweak: sans headline option */
[data-headline="sans"] .display { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }
[data-headline="sans"] .flourish { font-family: var(--font-display); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.8em;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background .35s, color .35s, border-color .35s;
  min-height: 50px;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: #000; color: #fff; }
.btn--primary:hover { background: #1a1a1a; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: #1b1916; }
.btn--light { background: transparent; color: var(--on-dark); border-color: rgba(244,240,234,0.4); }
.btn--light:hover { border-color: var(--on-dark); background: rgba(244,240,234,0.08); }
.btn--invert { background: var(--on-dark); color: var(--ink); }
.btn--invert:hover { background: #fff; }
/* social CTA buttons — hero-button size, social-card colours */
.btn--ig { color: #fff; border: none;
  background: radial-gradient(120% 120% at 18% 108%, #feda75 0%, #fa7e1e 22%, #d62976 45%, #962fbf 70%, #4f5bd5 100%); }
.btn--ig:hover { filter: brightness(1.06); }
.btn--tt { background: #010101; color: #fff; border: none; }
.btn--tt:hover { background: #000; filter: brightness(1.12); }
.btn--ig svg, .btn--tt svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--tt .tt-glyph { fill: #fff; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--ink);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
  transition: gap .3s, color .3s;
}
.link-arrow:hover { gap: 0.85em; color: var(--clay); }
.link-arrow .ar { transition: transform .3s; }
.link-arrow:hover .ar { transform: translateX(3px); }

/* ============================================================
   PLACEHOLDERS
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(35,38,42, calc(0.04 * var(--tex))) 0,
      rgba(35,38,42, calc(0.04 * var(--tex))) 1px,
      transparent 1px, transparent 13px),
    linear-gradient(150deg, var(--stone), #D2D6DA 55%, #BCC1C6);
  color: var(--ink-soft);
  display: grid; place-items: center; isolation: isolate;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(255,255,255,.32), transparent 44%),
    radial-gradient(circle at 78% 82%, rgba(35,38,42,.10), transparent 48%);
  mix-blend-mode: soft-light; z-index: -1;
}
.ph__tag {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line-soft);
  padding: 0.5em 0.85em; border-radius: 2px;
  max-width: 82%; text-align: center; line-height: 1.4;
  backdrop-filter: blur(2px);
}
.ph__tag b { color: var(--clay); font-weight: 700; }
.ph--dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(35,38,42, calc(0.035 * var(--tex))) 0,
      rgba(35,38,42, calc(0.035 * var(--tex))) 1px,
      transparent 1px, transparent 14px),
    linear-gradient(155deg, #E6E9EB, #D7DBDE 55%, #C7CCD0);
  color: var(--ink);
}
.ph--dark .ph__tag { background: rgba(255,255,255,0.82); color: var(--ink-soft); border-color: var(--line-soft); }
.ph--dark .ph__tag b { color: var(--clay); }

/* ============================================================
   TOP BAR + NOTICE
   ============================================================ */
.notice {
  background: var(--dark); color: var(--on-dark-soft);
  font-size: 0.72rem; letter-spacing: 0.05em; text-align: center;
  padding: 7px var(--gutter); line-height: 1.4;
}
.notice b { color: var(--clay); font-weight: 600; }

.topbar {
  background: var(--dark-2); color: var(--on-dark);
  font-size: 0.9rem; letter-spacing: 0.03em; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 9px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); flex-wrap: wrap; }
.topbar a { color: var(--on-dark); }
.topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); display: inline-block; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 620px) { .topbar__row { justify-content: center; } .topbar__group:nth-child(2) { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 60;
  transition: background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-head.is-solid {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px) saturate(1.1);
  border-color: var(--line-soft);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 17px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: 14px; line-height: 1.05; }
.brand__logo { height: 54px; width: auto; flex: none; display: block; }
.brand__text { display: flex; flex-direction: column; }
.brand__mark { font-family: var(--font-body); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.brand__sub { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; font-weight: 700; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 36px); }
.nav a { font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); position: relative; transition: color .3s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--clay); transition: width .35s; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.head-cta { display: flex; align-items: center; gap: 16px; }

.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; border-radius: 2px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 1.5px; background: var(--ink); transition: .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mnav { position: fixed; inset: 0; z-index: 55; background: var(--bone); padding: 104px var(--gutter) 40px; transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1); display: flex; flex-direction: column; overflow-y: auto; }
.mnav.is-open { transform: translateY(0); }
.mnav a { font-family: var(--font-display); font-size: 1.9rem; padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mnav .btn { margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero__media { position: relative; height: clamp(560px, 90vh, 920px); width: 100%; overflow: hidden; }
.mc-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
/* real hero photograph background with slow Ken Burns zoom */
.hero__photo {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("images/hero-restaurant.png");
  background-size: cover; background-position: center 42%;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero__photo { animation: none; } }
/* CSS-driven motion layers (compositor — reliable everywhere) */
.mc-light, .cta-band .mc-light {
  position: absolute; z-index: 2; pointer-events: none;
  width: 78%; height: 78%; left: 0; top: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.5), rgba(255,255,255,0.08) 52%, transparent 72%);
  mix-blend-mode: soft-light; filter: blur(8px);
  animation: mcLight 15s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes mcLight {
  from { transform: translate(-12%, -8%) scale(1); }
  50%  { transform: translate(40%, 12%) scale(1.15); }
  to   { transform: translate(62%, 44%) scale(1); }
}
.mc-sheen, .cta-band .mc-sheen {
  position: absolute; inset: -25%; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 43%, rgba(255,255,255,0.07) 48%, rgba(255,255,255,0.34) 50%, rgba(255,255,255,0.07) 52%, transparent 57%);
  mix-blend-mode: soft-light; transform: translateX(-75%);
  animation: mcSheen 11s ease-in-out infinite;
  will-change: transform;
}
@keyframes mcSheen {
  0%   { transform: translateX(-80%); }
  55%  { transform: translateX(80%); }
  100% { transform: translateX(80%); }
}
.mc-note {
  position: absolute; top: 22px; right: clamp(20px,5vw,76px); z-index: 4;
  max-width: 270px; text-align: right;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.6rem; line-height: 1.5; letter-spacing: 0.02em;
  color: var(--ink-soft); opacity: 0.7;
}
/* trowel-sweep reveal on load */
.mc-trowel {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg,
    rgba(244,245,246,0) 30%,
    rgba(255,255,255,0.85) 47%,
    rgba(232,234,236,0.95) 50%,
    rgba(244,245,246,0) 68%);
  transform: translateX(-120%);
  animation: trowel 1.9s cubic-bezier(.5,0,.2,1) .15s both;
}
@keyframes trowel { from { transform: translateX(-120%); } to { transform: translateX(120%); } }
@media (prefers-reduced-motion: reduce) { .mc-trowel { display: none; } }
@media (prefers-reduced-motion: reduce) { .route { animation: none !important; } }
@media (prefers-reduced-motion: reduce) { .mc-light, .mc-sheen { animation: none !important; } .mc-sheen { display: none; } }
.hero__media .ph { position: absolute; inset: 0; }
.hero__media .ph__tag { position: absolute; top: 26px; right: clamp(20px,5vw,76px); left: auto; max-width: 320px; text-align: left; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(18,20,22,0.22) 0%, rgba(18,20,22,0.04) 30%, rgba(18,20,22,0.62) 100%),
    radial-gradient(135% 95% at 10% 92%, rgba(18,20,22,0.5), transparent 60%);
}
.hero__inner { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; }
.hero__content { padding-bottom: clamp(46px, 6vw, 96px); max-width: 1040px; }
.hero__content > * { animation: rise .9s cubic-bezier(.2,.7,.3,1) both; }
.hero__content > *:nth-child(2){animation-delay:.08s}
.hero__content > *:nth-child(3){animation-delay:.16s}
.hero__content > *:nth-child(4){animation-delay:.24s}
.hero__content > *:nth-child(5){animation-delay:.32s}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero h1 { color: #F6F6F3; max-width: 18ch; text-shadow: 0 2px 26px rgba(18,20,22,0.5); }
.hero__title { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; line-height: 1.06; }
.hero .eyebrow { color: #ECECE8; text-shadow: 0 1px 14px rgba(18,20,22,0.55); }
.hero__sub { color: rgba(246,246,243,0.94); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; max-width: 56ch; margin-top: 26px; text-shadow: 0 1px 18px rgba(18,20,22,0.45); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { display: grid; gap: 18px; margin-bottom: clamp(38px, 4.5vw, 68px); }
.sec-head__title { max-width: 22ch; }
.sec-head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: 1.4fr 1fr; gap: 40px; } .sec-head--split .sec-head__aside { text-align: right; } }
.sec-head--center { justify-items: center; text-align: center; }
.sec-head--center .sec-head__title { margin-inline: auto; }
/* heading with brand logo alongside */
.sec-head--logo { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 48px); }
.sec-head--logo .sec-head__text { display: grid; gap: 18px; flex: 1 1 auto; }
.sec-head__logo { width: clamp(320px, 40vw, 540px); height: auto; flex: none; margin-top: 0; margin-right: clamp(-40px, -3vw, 0px); }
/* draggable + resizable logo wrapper */
.sec-head__logobox { position: relative; flex: none; align-self: center; cursor: grab; touch-action: none; z-index: 20; margin-right: clamp(-40px, -3vw, 0px); transition: filter .2s; -webkit-user-select: none; user-select: none; }
.sec-head__logobox > .sec-head__logo { width: 100%; margin: 0; display: block; -webkit-user-drag: none; pointer-events: none; }
.sec-head__logobox:hover { filter: drop-shadow(0 6px 16px rgba(0,0,0,0.14)); }
.sec-head__logobox.is-dragging { cursor: grabbing; filter: drop-shadow(0 12px 26px rgba(0,0,0,0.22)); transition: none; }
.sec-head__logobox.is-resizing { transition: none; }
/* fixed (locked) logo — no drag / resize */
.sec-head__logobox--fixed { cursor: default; }
.sec-head__logobox--fixed:hover { filter: none; }
@media (max-width: 900px) {
  .sec-head__logobox--fixed { transform: none !important; width: clamp(220px, 52vw, 440px) !important; }
}
.sec-head__logogrip {
  position: absolute; right: -6px; bottom: -6px; z-index: 21;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ink); color: #fff; cursor: nwse-resize;
  opacity: 0; transition: opacity .2s; box-shadow: 0 4px 12px -4px rgba(0,0,0,0.4);
}
.sec-head__logogrip svg { width: 13px; height: 13px; }
.sec-head__logobox:hover .sec-head__logogrip, .sec-head__logobox.is-resizing .sec-head__logogrip { opacity: 1; }

/* header (brand) logo — draggable + resizable */
.brand__logobox { position: relative; flex: none; cursor: grab; touch-action: none; z-index: 30; transition: filter .2s; -webkit-user-select: none; user-select: none; }
.brand__logobox > .brand__logo { width: 100%; height: auto; margin: 0; display: block; -webkit-user-drag: none; pointer-events: none; }
.brand__logobox:hover { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }
.brand__logobox.is-dragging { cursor: grabbing; transition: none; }
.brand__logobox.is-resizing { transition: none; }
.logo-movegrip {
  position: absolute; right: -7px; bottom: -7px; z-index: 31;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ink); color: #fff; cursor: nwse-resize;
  opacity: 0; transition: opacity .2s; box-shadow: 0 3px 10px -3px rgba(0,0,0,0.5);
}
.logo-movegrip svg { width: 11px; height: 11px; }
.brand__logobox:hover .logo-movegrip, .brand__logobox.is-resizing .logo-movegrip { opacity: 1; }
@media (max-width: 720px) {
  .sec-head--logo { flex-direction: column; align-items: flex-start; gap: 28px; }
  .sec-head__logo { width: clamp(200px, 56vw, 280px); }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-grid { display: grid; gap: clamp(34px,5vw,80px); align-items: center; }
@media (min-width: 920px) { .intro-grid { grid-template-columns: 1.05fr 0.95fr; } }
.intro-copy .h-1 { max-width: 17ch; margin-bottom: 26px; }
.intro-copy p + p { margin-top: 18px; }
.intro-media { position: relative; }
.intro-media .ph { aspect-ratio: 4/5; border-radius: 3px; }
.intro-badge { position: absolute; left: -18px; bottom: -18px; background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 18px 22px; max-width: 240px; box-shadow: 0 24px 50px -34px rgba(42,39,36,.5); }
.intro-badge .label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.intro-badge .txt { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.25; margin-top: 6px; }
.intro-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.intro-stat .label { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.intro-stat .val { font-family: var(--font-display); font-size: 1.4rem; margin-top: 4px; }
@media (max-width: 919px) { .intro-badge { left: auto; right: 14px; } }

/* INTRO as full-bleed background hero (mirrors top hero) */
.intro-hero { position: relative; overflow: hidden; min-height: clamp(620px, 86vh, 900px); display: flex; align-items: center; }
.intro-hero__bg { position: absolute; inset: 0; z-index: 0; }
.intro-hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-hero__bg.ph__tag, .intro-hero .ph__tag { } /* keep default centred label when empty */
.intro-hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(18,20,22,0.24) 0%, rgba(18,20,22,0.05) 30%, rgba(18,20,22,0.64) 100%),
  radial-gradient(135% 95% at 12% 90%, rgba(18,20,22,0.52), transparent 60%); }
.intro-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(60px, 8vw, 120px); }
.intro-hero .intro-copy { max-width: 760px; }
.intro-hero .eyebrow { color: #ECECE8; text-shadow: 0 1px 14px rgba(18,20,22,0.55); }
.intro-hero h2 { color: #F6F6F3; max-width: 20ch; margin-bottom: 22px; text-shadow: 0 2px 26px rgba(18,20,22,0.5); }
.intro-hero .lead { color: #fff; font-size: clamp(1.1rem, 1.5vw, 1.4rem); line-height: 1.55; font-weight: 400; text-shadow: 0 2px 18px rgba(18,20,22,0.6); }
.intro-hero__muted { color: rgba(255,255,255,0.94); font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.6; margin-top: 18px; max-width: 62ch; text-shadow: 0 2px 18px rgba(18,20,22,0.6); }
.intro-hero .intro-stats { margin-top: 32px; }
.intro-hero .intro-stat .label { color: rgba(255,255,255,0.85); font-size: 0.92rem; text-shadow: 0 1px 12px rgba(18,20,22,0.55); }
.intro-hero .intro-stat .val { color: #fff; font-size: 1.35rem; text-shadow: 0 2px 16px rgba(18,20,22,0.6); }
.intro-hero__social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.vid-sound {
  position: absolute; right: clamp(16px,4vw,40px); bottom: clamp(16px,4vw,40px); z-index: 4;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 100px;
  background: rgba(18,20,22,0.55); color: #fff; border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px); cursor: pointer;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background .25s, border-color .25s, transform .25s;
}
.vid-sound:hover { background: rgba(18,20,22,0.78); transform: translateY(-2px); }
.vid-sound.is-on { background: #fff; color: var(--ink); border-color: #fff; }
.vid-sound svg { width: 17px; height: 17px; display: block; }
.vid-sound__ico--on { display: none; }
.vid-sound.is-on .vid-sound__ico--off { display: none; }
.vid-sound.is-on .vid-sound__ico--on { display: inline-flex; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-band-label { display: flex; align-items: center; gap: 16px; margin: clamp(34px,4vw,56px) 0 26px; }
.svc-band-label .ln { flex: 1; height: 1px; background: var(--line); }
.svc-band-label .tx { font-size: 0.92rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }

.svc-cross { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px,3vw,48px); flex-wrap: wrap;
  margin-top: clamp(34px,4vw,58px); padding: clamp(34px,4vw,56px) clamp(28px,3.6vw,54px);
  background: rgba(255,255,255,0.72); border: 1px solid var(--line-soft); border-radius: 6px; backdrop-filter: blur(4px); }
.svc-cross__copy { max-width: 64ch; }
.svc-cross__eye { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px; }
.svc-cross__title { font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.12; margin: 0 0 14px; }
.svc-cross__txt { font-size: clamp(1.06rem, 1.4vw, 1.18rem); line-height: 1.62; color: var(--ink); }
.svc-cross__txt + .svc-cross__txt { margin-top: 12px; }
@media (max-width: 640px) { .svc-cross .btn { width: 100%; justify-content: center; } }

/* materials & systems grid */
.mat-sys-head { max-width: 60ch; margin-bottom: clamp(24px,2.6vw,38px); }
.mat-sys-head .finish-fam__title { margin: 6px 0 10px; }
.mat-sys { display: grid; gap: clamp(12px,1.4vw,18px); grid-template-columns: 1fr; }
@media (min-width: 680px)  { .mat-sys { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .mat-sys { grid-template-columns: repeat(3,1fr); } }
.mat-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: 5px; padding: clamp(20px,1.8vw,26px); transition: transform .35s, box-shadow .35s, border-color .35s; }
.mat-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -34px rgba(35,38,42,.45); border-color: var(--line); }
.mat-card__t { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.15; margin-bottom: 10px; }
.mat-card__t span { display: block; font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin-top: 5px; }
.mat-card__d { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }

/* social cards */
.social-grid { display: grid; gap: clamp(14px,1.8vw,22px); grid-template-columns: 1fr; margin-top: clamp(28px,3vw,44px); }
@media (min-width: 720px) { .social-grid { grid-template-columns: repeat(2,1fr); } }
.social-card { position: relative; display: flex; align-items: center; gap: 18px; padding: clamp(22px,2.4vw,32px) clamp(24px,2.6vw,38px); border-radius: 8px; overflow: hidden; color: #fff; text-decoration: none; transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -32px rgba(20,20,22,.6); }
.social-card--ig { background: radial-gradient(120% 120% at 18% 108%, #feda75 0%, #fa7e1e 22%, #d62976 45%, #962fbf 70%, #4f5bd5 100%); }
.social-card--tt { background: #010101; }
.social-icon { flex: none; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,0.16); }
.social-card--tt .social-icon { background: rgba(255,255,255,0.07); }
.social-icon svg { width: 30px; height: 30px; color: #fff; }
.social-card--tt .tt-glyph { fill: #fff; filter: url(#ttChroma); }
.social-meta { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.social-net { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.social-handle { font-family: var(--font-display); font-size: clamp(1.25rem,1.7vw,1.6rem); line-height: 1.05; }
.social-go { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; gap: 0.45em; align-items: center; opacity: 0.92; transition: gap .3s; }
.social-card:hover .social-go { gap: 0.85em; }

.svc-grid { display: grid; gap: clamp(16px,1.6vw,22px); grid-template-columns: 1fr; }
@media (min-width: 680px)  { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1060px) { .svc-grid--4 { grid-template-columns: repeat(4,1fr); } .svc-grid--3 { grid-template-columns: repeat(3,1fr); } }

.svc {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px;
  padding: clamp(24px,2.2vw,32px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -36px rgba(42,39,36,.45); border-color: var(--line); }
.svc--signature { border-top: 2px solid var(--clay); }
.svc__eye { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); }
.svc__name { font-family: var(--font-display); font-size: clamp(1.4rem,1.8vw,1.75rem); line-height: 1.1; }
.svc__desc { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; }
.svc__bul { display: grid; gap: 8px; margin-top: 2px; }
.svc__bul li { display: flex; gap: 10px; align-items: baseline; font-size: 0.88rem; color: var(--ink); }
.svc__bul li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 7px; background: var(--clay); border-radius: 50%; opacity: 0.85; }
.svc__more { margin-top: auto; padding-top: 6px; }
.svc__more a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); border-bottom: 1px solid var(--clay); padding-bottom: 2px; transition: color .3s, gap .3s; display: inline-flex; gap: 0.4em; }
.svc__more a:hover { color: var(--clay); gap: 0.7em; }
/* secondary cards are lighter */
.svc--mini { gap: 8px; padding: clamp(20px,1.8vw,26px); }
.svc--mini .svc__name { font-size: clamp(1.2rem,1.5vw,1.4rem); }

/* ============================================================
   FINISHES SWATCHES
   ============================================================ */
.finish-note { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); font-style: italic; margin-bottom: clamp(30px,3.5vw,46px); max-width: 72ch; }
.swatch-grid { display: grid; gap: clamp(14px,1.6vw,22px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .swatch-grid { grid-template-columns: repeat(4, 1fr); } }
.swatch { background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s; cursor: pointer; }
.swatch:hover, .swatch.is-active { transform: translateY(-4px); box-shadow: 0 22px 44px -32px rgba(42,39,36,.45); }
.swatch.is-active { border-color: var(--clay); }
.swatch__tex { height: 250px; position: relative; }
.swatch__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 9px; }
.swatch__head { display: flex; align-items: center; gap: 12px; }
.swatch__name { font-family: var(--font-display); font-size: clamp(1.05rem, 1.25vw, 1.25rem); flex: 1; min-width: 0; }
.swatch__desc { font-size: 0.96rem; line-height: 1.55; color: var(--ink-soft); }
.swatch__detail { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-top: 3px; }
.swatch__chip { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); flex: none; }

/* finish families */
.finish-fam { margin-top: clamp(40px, 5vw, 70px); }
.finish-fam:first-of-type { margin-top: clamp(30px, 3.5vw, 46px); }
.finish-fam__head { max-width: 60ch; margin-bottom: clamp(22px, 2.4vw, 32px); }
.finish-fam__eyebrow { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); }
.finish-fam__title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin: 8px 0 10px; }
.finish-fam__intro { font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft); }
.finish-primer { max-width: 70ch; margin-bottom: clamp(8px, 1vw, 14px); }
.finish-primer p { font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.68; color: var(--ink); }
.finish-primer p + p { margin-top: 16px; }
/* primer text + section logo side by side, vertically aligned */
.finish-intro { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 56px); margin-bottom: clamp(8px, 1vw, 14px); }
.finish-intro .finish-primer { flex: 1 1 auto; margin-bottom: 0; }
.finish-intro .sec-head__logobox { width: clamp(300px, 34vw, 480px); }
@media (max-width: 900px) {
  .finish-intro { flex-direction: column; align-items: flex-start; gap: 28px; }
  .finish-intro .sec-head__logobox { align-self: center; }
}
.finish-grid { display: grid; gap: clamp(14px,1.6vw,22px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px)  { .finish-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .finish-grid, .finish-grid--4 { grid-template-columns: repeat(3, 1fr); } }

/* named finish tones — cool silver / grey set */
.fn-warmstone { background: linear-gradient(140deg, #E7E6E3, #D2D1CC); }
.fn-softconcrete { background: linear-gradient(140deg, #E4E6E8, #C7CACD); }
.fn-claytaupe { background: linear-gradient(140deg, #DAD8D3, #BEBCB6); }
.fn-polishedlime { background: radial-gradient(80% 110% at 30% 0, rgba(255,255,255,.55), transparent 55%), linear-gradient(150deg, #E9EBEB, #D2D5D6); }
.fn-venetianpearl { background: radial-gradient(120% 80% at 25% 15%, rgba(255,255,255,.55), transparent 42%), linear-gradient(130deg, #ECEDEE, #D0D3D6); }
.fn-mineralgrey { background: linear-gradient(140deg, #CFD1D3, #A9ACB0); }
.fn-bronzewash { background: linear-gradient(115deg, #9DA3A8 0, #BFC4C8 22%, #898F94 40%, #CDD1D4 60%, #969BA0 78%, #B6BABE 100%); }
.fn-naturalplaster { background: repeating-linear-gradient(100deg, rgba(255,255,255,.18) 0 3px, transparent 3px 13px), linear-gradient(140deg, #E5E5E3, #CCCDCB); }
/* additional finish tones for the family swatches */
.fn-stone { background: radial-gradient(130% 90% at 30% 20%, rgba(255,255,255,.4), transparent 45%), linear-gradient(135deg, #D7D6D2, #B4B2AC); }
.fn-ribbed { background: repeating-linear-gradient(90deg, #D9D8D4 0 7px, #C6C4BE 7px 14px); }
.fn-pearl { background: radial-gradient(120% 90% at 25% 12%, rgba(255,255,255,.7), transparent 48%), linear-gradient(120deg, #E9E2D3, #D8C7A8 55%, #E6DDcc); }
.fn-gold { background: linear-gradient(115deg, #B79A5E 0, #C9A968 22%, #A88542 40%, #D8BE84 60%, #A98A4A 78%, #C7A767 100%); }
.fn-rust { background: radial-gradient(120% 100% at 30% 25%, rgba(255,255,255,.25), transparent 50%), linear-gradient(135deg, #A9897A, #7E6354 55%, #93746A); }
.fn-render { background: repeating-linear-gradient(125deg, rgba(255,255,255,.12) 0 2px, transparent 2px 9px), linear-gradient(140deg, #DEDCD6, #C2BFB7); }
.fn-facade { background: repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 6px, transparent 6px 12px), linear-gradient(140deg, #D4D3CE, #B6B4AE); }
.swatch__tex .ph__tag { position: absolute; bottom: 10px; left: 10px; max-width: calc(100% - 20px); font-size: 0.6rem; }
.swatch__img {
  position: absolute; z-index: 4; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.92);
  color: var(--ink); font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px -10px rgba(35,38,42,0.5);
  transition: transform .25s, background .25s, opacity .3s;
}
.swatch__img span { font-size: 0.85rem; line-height: 1; }
.swatch__img:hover { transform: translateY(-1px); background: #fff; }
.swatch__tex--img .swatch__img { opacity: 0; }
.swatch:hover .swatch__tex--img .swatch__img, .swatch:focus-within .swatch__img { opacity: 1; }
.swatch__tex--img::before { display: none !important; }   /* drop the moving sheen once a real photo is in */

/* ============================================================
   GALLERY (masonry-ish)
   ============================================================ */
.gal { display: grid; gap: clamp(12px,1.4vw,18px); grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; }
.gal__item { position: relative; overflow: hidden; border-radius: 3px; background: var(--stone); }
.gal__item .ph { position: absolute; inset: 0; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.gal__item:hover .ph { transform: scale(1.06); }
.gal__cap { position: absolute; left: 0; bottom: 0; z-index: 4; padding: 16px 18px; width: 100%;
  background: linear-gradient(0deg, rgba(24,26,28,0.82), rgba(24,26,28,0.18) 55%, transparent); color: #F4F5F6;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
  opacity: 1; transform: none;
  font-weight: 500; }
.gal__item .ph__tag { display: none; }
.gal__item--filled { cursor: zoom-in; }
.gal__count { position: absolute; top: 12px; left: 12px; z-index: 5; display: none; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 100px; background: rgba(24,26,28,0.7); color: #F4F5F6;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(4px); }
.gal__count--sm { top: 8px; left: 8px; min-width: 20px; height: 20px; padding: 0 7px; justify-content: center;
  letter-spacing: 0; font-size: 0.62rem; }
.gal__view { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 4; display: none; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 100px; background: rgba(24,26,28,0.72); color: #F4F5F6;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; backdrop-filter: blur(4px);
  pointer-events: none; transition: opacity .3s; white-space: nowrap; }
.gal__view svg { width: 13px; height: 13px; }
.gal__item--filled:hover .gal__view { opacity: 0; }
/* inline click-through arrows on multi-image boxes */
.ph-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; display: none;
  width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55); background: rgba(18,20,22,0.5); color: #fff;
  cursor: pointer; backdrop-filter: blur(4px); transition: background .25s, transform .2s; opacity: 0.55; }
.ph-zone:hover .ph-arrow { opacity: 1; }
.ph-arrow:hover { background: rgba(18,20,22,0.85); }
.ph-arrow svg { width: 20px; height: 20px; }
.ph-arrow--prev { left: 12px; }
.ph-arrow--next { right: 12px; }
.gal__cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-soft); }
.gi-a { grid-column: span 3; min-height: 680px; }
.gi-b { grid-column: span 3; min-height: 680px; }
.gi-c { grid-column: span 2; min-height: 500px; }
.gi-d { grid-column: span 2; min-height: 500px; }
.gi-e { grid-column: span 2; min-height: 500px; }
.gi-f { grid-column: span 3; min-height: 540px; }
.gi-g { grid-column: span 3; min-height: 540px; }
@media (max-width: 820px) { .gal { grid-template-columns: repeat(2,1fr); } .gal__item { grid-column: span 1 !important; min-height: 320px !important; } .gi-a { grid-column: span 2 !important; min-height: 480px !important; } }

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.ba-grid { display: grid; gap: clamp(20px,2.4vw,32px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .ba-grid { grid-template-columns: repeat(3,1fr); } }
.ba-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pane { position: relative; aspect-ratio: 4/5; }
.ba-pane + .ba-pane { border-left: 1px solid var(--card); }
.ba-pane--single { aspect-ratio: 4/3; min-height: 360px; }
.ba-pane .ph { position: absolute; inset: 0; }
.ba-flag { position: absolute; top: 10px; left: 10px; z-index: 4; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; background: rgba(255,255,255,0.86); color: var(--ink-soft); }
.ba-flag--after { background: var(--clay); color: #fff; }
.ba-foot { padding: 16px 18px; }
.ba-foot .t { font-family: var(--font-display); font-size: 1.2rem; }
.ba-foot .d { font-size: 0.8rem; color: var(--ink-faint); margin-top: 4px; }

/* ============================================================
   WHY / TRUST
   ============================================================ */
.why-grid { display: grid; gap: clamp(34px,5vw,72px); align-items: center; }
@media (min-width: 920px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.why-item { display: flex; gap: 16px; align-items: center; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.why-item .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--clay); display: grid; place-items: center; color: var(--clay); }
.why-item .ck svg { width: 13px; height: 13px; }
.why-item .tx { font-size: 1.05rem; }
.why-media { position: relative; }
.why-media .ph { aspect-ratio: 3/4; max-height: 560px; border-radius: 3px; }

/* animated "Sample boards" tag on the why image */
.sample-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 6;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 20px 12px 16px; border-radius: 100px;
  background: rgba(16,17,18,0.76); color: #fff; backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.6);
}
.sample-tag__dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: none; position: relative; }
.sample-tag__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; animation: sampledotPulse 2.4s ease-out infinite; }
.sample-tag__txt {
  font-family: ui-monospace, Menlo, monospace; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  background: linear-gradient(100deg, #fff 0%, #fff 38%, #b9b9bd 50%, #fff 62%, #fff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sampleShine 3.6s linear infinite;
}
@keyframes sampleShine { 0% { background-position: 130% 0; } 100% { background-position: -130% 0; } }
@keyframes sampledotPulse { 0% { transform: scale(1); opacity: .6; } 70%,100% { transform: scale(3.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .sample-tag__dot::after { animation: none; }
  .sample-tag__txt { animation: none; -webkit-text-fill-color: #fff; }
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-grid { display: grid; gap: clamp(18px,2vw,28px); grid-template-columns: 1fr; max-width: 1100px; margin-inline: auto; }
@media (min-width: 560px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .cert-grid { grid-template-columns: repeat(4, 1fr); } }
.cert { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px; padding: 28px 22px; animation: certFloat 6s ease-in-out infinite; transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s; }
.cert:nth-child(2) { animation-delay: -1.5s; }
.cert:nth-child(3) { animation-delay: -3s; }
.cert:nth-child(4) { animation-delay: -4.5s; }
@keyframes certFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.cert:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 28px 50px -32px rgba(35,38,42,.5); border-color: var(--line); animation-play-state: paused; }
.cert:hover .cert__seal { transform: scale(1.08) rotate(-3deg); }
@media (prefers-reduced-motion: reduce) { .cert { animation: none; } }
.cert--noop {}
.cert__seal { flex: none; width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--clay); display: grid; place-items: center; text-align: center; color: var(--clay); font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; line-height: 1.05; letter-spacing: 0.04em; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.cert__seal--logo { width: 96px; height: 96px; border: none; border-radius: 14px; background: #fff; padding: 12px; box-shadow: 0 8px 24px -16px rgba(35,38,42,0.5); }
.cert__seal--logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cert__seal--dark { background: #fff; }
.cert__name { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; }
.cert__sub { font-size: 0.92rem; color: var(--ink-soft); margin-top: 2px; }
.cert-note { font-weight: 700; text-align: center; font-size: 0.82rem; color: var(--ink-faint); font-style: italic; margin-top: clamp(24px,3vw,38px); max-width: 60ch; margin-inline: auto; }

/* ============================================================
   PROCESS
   ============================================================ */
.proc { display: grid; gap: clamp(16px,1.6vw,22px); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 680px) { .proc { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1020px){ .proc { grid-template-columns: repeat(4,1fr); } }
.proc__step { background: var(--card); border: 1px solid var(--line-soft); border-radius: 4px; padding: clamp(24px,2.2vw,34px); display: flex; flex-direction: column; gap: 14px; min-height: 210px; transition: transform .4s, box-shadow .4s; position: relative; overflow: hidden; }
.proc__step:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -36px rgba(42,39,36,.4); }
.proc__n { position: absolute; top: 2px; right: 16px; font-family: var(--font-display); font-size: 6.5rem; color: var(--ink); opacity: 0.06; line-height: 1; pointer-events: none; z-index: 0; }
.proc__t { font-family: var(--font-display); font-size: 1.35rem; position: relative; z-index: 1; }
.proc__d { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; position: relative; z-index: 1; }

/* ============================================================
   APPLICATIONS
   ============================================================ */
.apps { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; grid-template-columns: repeat(2,1fr); }
@media (min-width: 680px) { .apps { grid-template-columns: repeat(4,1fr); } }
.app { position: relative; aspect-ratio: 1/1; min-height: 190px; display: flex; align-items: flex-end; padding: 16px; color: #F4F0EA; overflow: hidden; }
.app .ph { position: absolute; inset: 0; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.app:hover .ph { transform: scale(1.07); }
.app::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(40,44,48,0.58), rgba(40,44,48,0.05) 60%); }
.app__name { position: relative; z-index: 3; font-family: var(--font-display); font-size: 1.25rem; text-shadow: 0 1px 14px rgba(40,44,48,0.5); }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid { display: grid; gap: clamp(30px,4vw,56px); align-items: start; padding-top: clamp(40px, 7vw, 110px); }
.areas-grid > .reveal:first-child { max-width: 920px; }
.areas-map { width: 100% !important; max-width: 760px; margin: 0 auto; transform: none !important; }
/* draggable + resizable map */
.areas-map--movable { position: relative; cursor: grab; touch-action: none; -webkit-user-select: none; user-select: none; }
.areas-map--movable.is-moving { cursor: grabbing; }
.map-movegrip {
  position: absolute; right: -9px; bottom: -9px; z-index: 31;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ink); color: #fff; cursor: nwse-resize;
  opacity: 0; transition: opacity .2s; box-shadow: 0 3px 10px -3px rgba(0,0,0,0.5);
}
.map-movegrip svg { width: 13px; height: 13px; }
.areas-map--movable:hover .map-movegrip, .areas-map--movable.is-sizing .map-movegrip { opacity: 1; }
.map-movehint {
  position: absolute; left: 0; bottom: -26px; z-index: 5;
  font-family: ui-monospace, Menlo, monospace; font-size: 0.62rem; letter-spacing: 0.04em;
  color: var(--ink-faint); opacity: 0; transition: opacity .2s; white-space: nowrap; pointer-events: none;
}
.areas-map--movable:hover .map-movehint { opacity: 0.8; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { border: 1px solid var(--line); background: var(--card); padding: 0.62em 1.15em; border-radius: 100px; font-size: 0.96rem; cursor: default; white-space: nowrap; transition: background .3s, color .3s, border-color .3s, transform .3s; }
.chip[data-area]:hover, .chip.is-hot { transform: translateY(-2px); border-color: var(--clay); }
.chip:not(.chip--lead).is-hot { background: var(--clay); color: #fff; }
.chip--lead { background: var(--clay); color: #fff; border-color: var(--clay); font-weight: 600; }
.chip--soft { color: var(--ink-faint); font-style: italic; font-family: var(--font-display); font-size: 1rem; }
.areas-note { margin-top: 18px; font-size: 0.92rem; color: var(--ink-faint); font-style: italic; }
.areas-map .ph { aspect-ratio: 5/4; border-radius: 4px; }

/* --- animated coverage map --- */
.map { position: relative; background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 18px; overflow: hidden; box-shadow: 0 30px 60px -44px rgba(35,38,42,.5); }
.map__svg { width: 100%; height: auto; display: block; }
.map__grid line { stroke-dasharray: 2 7; opacity: .5; }
.map__thames { stroke-dasharray: 520; stroke-dashoffset: 520; animation: thamesDraw 2.6s ease .2s forwards; }
@keyframes thamesDraw { to { stroke-dashoffset: 0; } }
.map__region { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 3px; fill: var(--ink-faint); }
.map__links line { stroke-dasharray: 4 5; animation: linkDrift 6s linear infinite; }
@keyframes linkDrift { to { stroke-dashoffset: -18; } }

.pin { transform: translate(var(--x), var(--y)); cursor: pointer; }
.pin__dot { fill: var(--clay); transition: r .3s; }
.pin--lead .pin__dot { fill: var(--ink); }
.pin__pulse { fill: var(--clay); transform-box: fill-box; transform-origin: center; animation: pinPulse 2.8s ease-out infinite; }
.pin--lead .pin__pulse { fill: var(--ink); }
.pin:nth-child(2) .pin__pulse { animation-delay: .3s; }
.pin:nth-child(3) .pin__pulse { animation-delay: .6s; }
.pin:nth-child(4) .pin__pulse { animation-delay: .9s; }
.pin:nth-child(5) .pin__pulse { animation-delay: 1.2s; }
.pin:nth-child(6) .pin__pulse { animation-delay: 1.5s; }
.pin:nth-child(7) .pin__pulse { animation-delay: 1.8s; }
.pin:nth-child(8) .pin__pulse { animation-delay: 2.1s; }
.pin:nth-child(9) .pin__pulse { animation-delay: 2.4s; }
.pin:nth-child(10) .pin__pulse { animation-delay: .45s; }
.pin:nth-child(11) .pin__pulse { animation-delay: .75s; }
.pin:nth-child(12) .pin__pulse { animation-delay: 1.05s; }
.pin:nth-child(13) .pin__pulse { animation-delay: 1.35s; }
.pin:nth-child(14) .pin__pulse { animation-delay: 1.65s; }
.pin:nth-child(15) .pin__pulse { animation-delay: 1.95s; }
.pin:nth-child(16) .pin__pulse { animation-delay: 2.25s; }
@keyframes pinPulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(3.2); opacity: 0; } }
.pin__label { font-family: var(--font-body); font-size: 11px; font-weight: 600; fill: var(--ink); text-anchor: middle; opacity: 0; transition: opacity .3s; pointer-events: none; }
.pin:hover .pin__label, .pin--lead .pin__label, .pin.is-hot .pin__label { opacity: 1; }
.pin:hover .pin__dot, .pin.is-hot .pin__dot { r: 9; }
.pin.is-hot .pin__pulse { animation-duration: 1.3s; }
.map__cap { position: absolute; left: 18px; bottom: 14px; font-family: ui-monospace, Menlo, monospace; font-size: 0.6rem; letter-spacing: .04em; color: var(--ink-faint); }

/* --- digital "coverage screen" variant --- */
.map--digital { background: #0E0F11; border-color: #26282B; box-shadow: 0 40px 80px -50px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.03); padding: 0; }
.map--digital .map__svg { border-radius: 5px; }
.map--digital .map__cap { color: rgba(255,255,255,.42); }
.map--digital .map__region { fill: rgba(255,255,255,.30); font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 4px; }
.map--digital .pin__dot { fill: #FFFFFF; }
.map--digital .pin--lead .pin__dot { fill: #FFFFFF; }
.map--digital .pin__pulse { fill: #FFFFFF; }
.map--digital .pin--lead .pin__pulse { fill: #FFFFFF; }
.map--digital .pin__ring { fill: none; stroke: #FFFFFF; stroke-width: 1; stroke-opacity: .6; transform-box: fill-box; transform-origin: center; animation: ringSpin 9s linear infinite; stroke-dasharray: 3 4; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.map--digital .pin__label {
  fill: #FFFFFF; font-family: ui-monospace, Menlo, monospace; font-size: 13px; font-weight: 600;
  opacity: 1; letter-spacing: 0.02em;
  paint-order: stroke; stroke: rgba(8,9,10,0.92); stroke-width: 3.4px; stroke-linejoin: round; stroke-linecap: round;
}
.map--digital .pin--lead .pin__label, .map--digital .pin:hover .pin__label, .map--digital .pin.is-hot .pin__label { opacity: 1; }
.map--digital .pin--lead .pin__label { font-size: 13px; }
.map--digital .pin:hover .pin__label, .map--digital .pin.is-hot .pin__label { fill: #FFFFFF; stroke-width: 3.8px; }
.map--digital .pin:hover .pin__dot, .map--digital .pin.is-hot .pin__dot { r: 7; fill: #FFFFFF; }
.map__radar { transform-box: view-box; transform-origin: 450px 260px; animation: radarSpin 6s linear infinite; }
@keyframes radarSpin { to { transform: rotate(360deg); } }
.map__scan { animation: scanMove 5s ease-in-out infinite; }
@keyframes scanMove { 0% { transform: translateY(40px); opacity: 0; } 10% { opacity: .5; } 50% { transform: translateY(650px); opacity: .5; } 60%,100% { transform: translateY(650px); opacity: 0; } }
.map__hudtext { font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 1.5px; fill: rgba(255,255,255,.5); }
.map__hudtext--r { text-anchor: end; }
.map__cover { animation: coverBreath 6s ease-in-out infinite; transform-box: view-box; transform-origin: 460px 280px; }
@keyframes coverBreath { 0%,100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

@media (prefers-reduced-motion: reduce) { .map__thames { animation: none; stroke-dashoffset: 0; } .map__links line, .pin__pulse, .map__radar, .map__scan, .pin__ring, .map__cover { animation: none; } .pin__pulse { opacity: .25; } .map__scan { opacity: 0; } }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; gap: clamp(36px,5vw,72px); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.contact-aside .h-1 { max-width: 13ch; margin-bottom: 20px; }
.contact-aside .lead { margin-bottom: 28px; }
.contact-mail { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; border-bottom: 1px solid var(--clay); padding-bottom: 6px; }
.contact-mail:hover { color: var(--clay); }
.contact-meta { margin-top: 26px; display: grid; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.contact-meta a:hover { color: var(--clay); }
.form { background: var(--card); border: 1px solid var(--line); border-radius: 5px; padding: clamp(26px,3vw,44px); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--bone); border: 1px solid var(--line); border-radius: 2px; padding: 0.85em 0.95em; transition: border-color .3s, background .3s; width: 100%; min-height: 50px; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); background: #fff; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E675E' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.4em; }
.field--hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.86rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }
.consent input { width: auto; min-height: 0; margin-top: 3px; accent-color: var(--clay); }
.consent span { line-height: 1.5; }
.form-msg { grid-column: 1/-1; font-size: 0.86rem; color: var(--clay-deep); background: var(--clay-tint); border: 1px solid rgba(154,106,75,0.25); border-radius: 2px; padding: 12px 16px; display: none; }
.form-msg.show { display: block; }
.form-msg.is-error { color: #8a3b2e; background: rgba(138,59,46,0.08); border-color: rgba(138,59,46,0.3); }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; grid-column: 1/-1; align-items: center; }
.form-note { font-size: 0.8rem; color: var(--ink-faint); grid-column: 1/-1; font-style: italic; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .ph, .cta-band .mc-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cta-band__photo { position: absolute; inset: 0; z-index: 1; background: url("images/cta-copper-floor.jpg") center center / cover no-repeat; }
.cta-band__scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(120deg, rgba(18,20,22,0.72), rgba(18,20,22,0.5)); }
.cta-band__inner { position: relative; z-index: 3; padding-block: clamp(70px,8vw,128px); text-align: center; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; text-shadow: 0 2px 22px rgba(18,20,22,0.5); }
.cta-band .eyebrow { color: #ECECE8; justify-content: center; margin-bottom: 16px; text-shadow: 0 1px 14px rgba(18,20,22,0.5); }
.cta-band__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--dark); color: var(--on-dark-soft); border-top: 1px solid var(--line); }
.foot__top { display: grid; gap: 40px; padding-block: clamp(54px,6vw,90px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .foot__top { grid-template-columns: 1.5fr 1fr 1fr; } }
.foot__mark { font-family: var(--font-body); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; color: var(--on-dark); }
.foot__tag { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--clay); margin-top: 10px; }
.foot__blurb { margin-top: 16px; font-size: 1rem; max-width: 40ch; line-height: 1.6; }
.foot h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 16px; font-weight: 700; }
.foot ul { display: grid; gap: 12px; font-size: 1.15rem; }
.foot a:hover { color: var(--on-dark); }
.foot__bottom { border-top: 1px solid var(--line); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 0.86rem; color: var(--on-dark-faint); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(120%); transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.sticky-cta.show { transform: translateY(0); }

/* ============================================================
   TRUST STRIP · ROUTES · SAMPLE TRAY  (competitor-informed)
   ============================================================ */
.trust { background: var(--card); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.trust__marquee { display: flex; overflow: hidden; }
.trust__track { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); width: max-content; padding-block: 15px; animation: trustScroll 40s linear infinite; }
.trust:hover .trust__track { animation-play-state: paused; }
@keyframes trustScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(14px, 3vw, 38px); padding-block: 15px; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 800; white-space: nowrap; }
.trust__item svg { width: 15px; height: 15px; color: var(--clay); flex: none; }
.trust__sep { width: 1px; height: 16px; background: var(--line); flex: none; }
.trust__rev { color: var(--ink); }
.trust__stars { display: inline-flex; gap: 1px; }
.trust__stars svg { width: 13px; height: 13px; color: #C8A24A; }
@media (prefers-reduced-motion: reduce) { .trust__track { animation: none; } }
@media (max-width: 640px) { .trust__row { gap: 12px 22px; } }

.routes { display: grid; gap: clamp(14px, 1.6vw, 20px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .routes { grid-template-columns: repeat(3, 1fr); } }

/* full-bleed image behind the three routes */
.routes-sec { position: relative; overflow: hidden; }
.routes-sec__bg { position: absolute; inset: 0; z-index: 0; background-image: url("images/routes-bg.png"); background-size: cover; background-position: center 30%; animation: heroZoom 26s ease-in-out infinite alternate; will-change: transform; }
.routes-sec__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(18,20,22,0.5) 0%, rgba(18,20,22,0.34) 50%, rgba(18,20,22,0.6) 100%); }
.routes-sec__inner { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .routes-sec__bg { animation: none; } }

/* ============================================================
   TECHNICAL CERTIFICATIONS + OLTRE EXPLODED SYSTEM
   ============================================================ */
.techcert__head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: clamp(24px,4vw,56px); margin-bottom: clamp(40px,6vw,84px); }
.techcert__headtext { max-width: 620px; display: flex; flex-direction: column; }
.techcert__title { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; margin: 0 0 22px; }
.techcert__sub { color: var(--ink-soft); font-size: clamp(1rem,1.3vw,1.18rem); line-height: 1.55; max-width: 52ch; }
.techcert__badges { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px,1.8vw,26px); }
.logo-slot { width: clamp(120px, 14vw, 180px); }
.logo-slot .ph { aspect-ratio: 3/2; border: 1px dashed var(--line); border-radius: 8px; background: var(--card); }
.logo-slot .ph.has-img { border-style: solid; background-size: contain !important; background-repeat: no-repeat !important; background-position: center !important; }
.cert-badge { width: clamp(76px,8vw,104px); aspect-ratio: 1; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 50%; background: var(--card); }
.cert-badge img { width: 78%; height: 78%; object-fit: contain; }
.oltre-mark { display: inline-flex; align-items: center; position: relative; cursor: grab; touch-action: none; -webkit-user-select: none; user-select: none; }
.oltre-mark.is-moving { cursor: grabbing; }
.oltre-mark svg { width: clamp(230px, 30vw, 340px); height: auto; display: block; overflow: visible; -webkit-user-drag: none; }

.techcert__body { display: grid; gap: clamp(28px,4vw,56px); grid-template-columns: 1fr; }
@media (min-width: 920px) { .techcert__body { grid-template-columns: 30% 1fr; align-items: start; } }
.techcert__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin-bottom: 26px; }
.award { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.award__logo { width: 150px; height: 90px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 6px; background: var(--card); }
.award__logo img { max-width: 82%; max-height: 78%; object-fit: contain; }
.award__ph { font-family: ui-monospace, Menlo, monospace; font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.award__logo--bare { border: none; background: transparent; width: auto; height: auto; place-items: start; }
.award__logo--bare img { max-width: 280px; max-height: 170px; }
.oltre-info { margin-top: 26px; margin-left: -10px; max-width: 46ch; }
.oltre-info__t { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.15; margin: 0 0 16px; color: #111315; }
.oltre-info__p { font-size: 1.12rem; line-height: 1.75; color: #1a1c1e; margin: 0 0 16px; }
.oltre-info__p:last-child { margin-bottom: 0; }

.techcert__diagram { position: relative; }
.oltre-svg { width: 100%; height: auto; display: block; overflow: visible; }
.oltre-leaders path { stroke: var(--ink); stroke-width: 1.4; fill: none; opacity: .85; stroke-dasharray: 4 5; animation: oltreFlow 1.1s linear infinite; }
.oltre-dot { fill: var(--clay); }
@keyframes oltreFlow { to { stroke-dashoffset: -18; } }
.oltre-hud { font-family: ui-monospace, Menlo, monospace; font-size: 14px; letter-spacing: 2px; fill: var(--ink-faint); }
.oltre-hud--r { text-anchor: end; }
.oltre-layer { transform-box: fill-box; transform-origin: center; animation: oltreFloat 7s ease-in-out infinite; }
.oltre-layer[data-lyr="base"]    { animation-delay: -1s; }
.oltre-layer[data-lyr="barrier"] { animation-delay: -2s; }
.oltre-layer[data-lyr="mesh"]    { animation-delay: -3s; }
.oltre-layer[data-lyr="style"]   { animation-delay: -4s; }
.oltre-layer[data-lyr="top"]     { animation-delay: -5s; }
@keyframes oltreFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
/* hover: spread the layers apart (exploded), then settle on leave */
.techcert__diagram:hover .oltre-layer { animation: none !important; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.techcert__diagram:hover .oltre-layer[data-lyr="top"]     { transform: translateY(-46px) !important; }
.techcert__diagram:hover .oltre-layer[data-lyr="style"]   { transform: translateY(-26px) !important; }
.techcert__diagram:hover .oltre-layer[data-lyr="mesh"]    { transform: translateY(-8px) !important; }
.techcert__diagram:hover .oltre-layer[data-lyr="barrier"] { transform: translateY(12px) !important; }
.techcert__diagram:hover .oltre-layer[data-lyr="base"]    { transform: translateY(32px) !important; }
.oltre-layer { transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.oltre-lbl__t { font-family: var(--font-body); font-size: 21px; font-weight: 700; fill: var(--ink); }
.oltre-lbl__d { font-family: var(--font-body); font-size: 17px; fill: var(--ink-soft); }
.oltre-lbl--r .oltre-lbl__t, .oltre-lbl--r .oltre-lbl__d { text-anchor: end; }
.techcert__cap { text-align: center; max-width: 56ch; margin: clamp(14px,2vw,30px) auto 0; color: var(--ink-soft); font-size: clamp(0.98rem,1.2vw,1.1rem); line-height: 1.5; }
@media (prefers-reduced-motion: reduce) { .oltre-layer { animation: none; } .oltre-leaders path { animation: none; } }
@media (max-width: 700px) { .oltre-lbl__t { font-size: 27px; } .oltre-lbl__d { font-size: 21px; } }
.route { position: relative; display: flex; flex-direction: column; gap: 12px; padding: clamp(26px, 2.4vw, 40px); background: rgba(28,30,32,0.42); border: 1px solid rgba(255,255,255,0.18); border-radius: 5px; backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1); transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s, background .4s; overflow: hidden; animation: routeFloat 7s ease-in-out infinite; will-change: translate; }
.route:nth-child(2) { animation-delay: -2.3s; }
.route:nth-child(3) { animation-delay: -4.6s; }
@keyframes routeFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }
.route:hover { transform: translateY(-4px) scale(1.012); box-shadow: 0 30px 56px -30px rgba(0,0,0,.6); border-color: rgba(255,255,255,0.4); background: rgba(28,30,32,0.55); }
.route__n { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #E7C9A8; }
.route__t { font-family: var(--font-display); font-size: clamp(1.5rem, 2vw, 1.95rem); color: #F6F6F3; }
.route__d { color: rgba(246,246,243,0.86); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.route__cta { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; color: #F6F6F3; border-bottom: 1px solid #E7C9A8; padding-bottom: 2px; align-self: flex-start; display: inline-flex; gap: 0.4em; white-space: nowrap; transition: gap .3s, color .3s; }
.route:hover .route__cta { gap: 0.75em; color: #E7C9A8; }

/* sample-collection on finish swatches */
.swatch__add { position: absolute; top: 10px; right: 10px; z-index: 3; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.92); color: var(--ink); display: grid; place-items: center; font-size: 1.05rem; line-height: 1; transition: background .3s, transform .3s, color .3s, border-color .3s; }
.swatch__add:hover { transform: scale(1.08); border-color: var(--ink); }
.swatch.is-active { border-color: var(--clay); }
.swatch.is-active .swatch__add { background: var(--clay); color: #fff; border-color: var(--clay); }
.samples-pill { position: fixed; left: 18px; bottom: 18px; z-index: 70; display: none; align-items: center; gap: 9px; height: 42px; padding: 0 18px; border-radius: 100px; border: 1px solid var(--clay); background: var(--clay); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 0 12px 30px -16px rgba(35,38,42,.6); transition: transform .3s; }
.samples-pill.show { display: inline-flex; }
.samples-pill:hover { transform: translateY(-2px); }
.samples-pill .n { display: inline-grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 100px; background: #fff; color: var(--clay); font-size: 0.7rem; }
@media (max-width: 940px) { .samples-pill { bottom: 76px; } }

/* ============================================================
   SOUND TOGGLE
   ============================================================ */
.apex-snd { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px 0 13px; border-radius: 100px; border: 1px solid var(--line); background: rgba(244,240,234,0.9); backdrop-filter: blur(12px) saturate(1.1); color: var(--ink); font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 10px 30px -18px rgba(42,39,36,0.5); transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s; }
.apex-snd:hover { transform: translateY(-2px); border-color: var(--ink); }
.apex-snd svg { display: block; flex: none; }
.apex-snd[aria-pressed="false"] { color: var(--ink-faint); }
@media (max-width: 940px) { .apex-snd { bottom: 76px; right: 14px; height: 38px; padding: 0 13px; } .apex-snd__txt { display: none; } }

/* ============================================================
   REVEAL + IMAGE ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }

/* Ken Burns drift via background-position (no layout shift) */
.ph--kb { background-size: 135% 135%, 150% 150% !important; animation: kbpos 28s ease-in-out infinite alternate; }
.ph--kb::after { animation: kbglow 22s ease-in-out infinite alternate; }
.ph--kb.kb-2 { animation-duration: 34s; }
.ph--kb.kb-3 { animation-duration: 40s; }
.ph--dark.ph--kb { background-size: 100% 100%, 150% 150% !important; }
@keyframes kbpos { from { background-position: 14% 18%, 20% 25%; } to { background-position: 82% 78%, 76% 70%; } }
@keyframes kbglow { from { transform: translate3d(-3%,-2%,0) scale(1.05); } to { transform: translate3d(3%,3%,0) scale(1.12); } }

.swatch__tex::before { content: ""; position: absolute; inset: -40%; background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.32) 50%, transparent 62%); transform: translateX(-60%) rotate(8deg); animation: sheen 7.5s ease-in-out infinite; pointer-events: none; mix-blend-mode: soft-light; }
.swatch:nth-child(2) .swatch__tex::before { animation-delay: 1s; }
.swatch:nth-child(3) .swatch__tex::before { animation-delay: 2s; }
.swatch:nth-child(4) .swatch__tex::before { animation-delay: 3s; }
.swatch:nth-child(5) .swatch__tex::before { animation-delay: .6s; }
.swatch:nth-child(6) .swatch__tex::before { animation-delay: 1.6s; }
.swatch:nth-child(7) .swatch__tex::before { animation-delay: 2.6s; }
.swatch:nth-child(8) .swatch__tex::before { animation-delay: 3.4s; }
@keyframes sheen { 0% { transform: translateX(-65%) rotate(8deg);} 45% { transform: translateX(65%) rotate(8deg);} 100% { transform: translateX(65%) rotate(8deg);} }
.fn-bronzewash { background-size: 220% 100%; animation: metalShift 9s ease-in-out infinite alternate; }
@keyframes metalShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

/* ============================================================
   LIGHTBOX (full-screen image viewer)
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center;
  background: rgba(18,20,22,0.93); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lb__img { max-width: 90vw; max-height: 84vh; object-fit: contain; border-radius: 3px; box-shadow: 0 30px 90px -30px rgba(0,0,0,0.75); }
.lb__close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(244,245,246,0.3); background: rgba(0,0,0,0.25); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .25s; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(244,245,246,0.3); background: rgba(0,0,0,0.25); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .25s; }
.lb__prev { left: 24px; } .lb__next { right: 24px; }
.lb__close:hover, .lb__nav:hover { background: rgba(0,0,0,0.55); }
.lb__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #ECECE8;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 600px) { .lb__nav { width: 44px; height: 44px; } .lb__prev { left: 10px; } .lb__next { right: 10px; } }

/* ============================================================
   IMAGE PLACEHOLDER UPLOADER
   ============================================================ */
.ph-upload {
  position: absolute; z-index: 6; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.92);
  color: var(--ink); font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(4px);
  box-shadow: 0 8px 22px -14px rgba(35,38,42,0.5);
  transition: transform .25s, background .25s, opacity .3s;
}
.ph-upload span { font-size: 0.95rem; line-height: 1; }
.ph-upload:hover { transform: translateY(-2px); background: #fff; }
/* hero replace button anchors bottom-right, clear of the headline */
.hero__media > .ph-upload { top: auto; bottom: 22px; right: clamp(20px,5vw,76px); }
/* once a real image is in, keep the control subtle until hover */
.ph.has-img .ph-upload { opacity: 0; }
.ph.has-img:hover .ph-upload, .ph.has-img:focus-within .ph-upload { opacity: 1; }
.ph.has-img::after { display: none; }
.ph.has-img { background-color: transparent !important; background-size: cover !important; background-position: center !important; animation: none !important; }
.ph-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* remove (delete) buttons */
.ph-remove {
  position: absolute; z-index: 7; bottom: 12px; right: 12px;
  width: 34px; height: 34px; display: none; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(24,26,28,0.62); color: #fff; cursor: pointer;
  backdrop-filter: blur(4px); transition: background .25s, transform .25s, opacity .3s;
}
.ph-remove svg { width: 15px; height: 15px; }
.ph-remove:hover { background: #C0392B; transform: translateY(-1px); }
.ph.has-img .ph-remove { opacity: 0; }
.ph.has-img:hover .ph-remove, .ph.has-img:focus-within .ph-remove { opacity: 1; }
.hero__media > .ph-remove { top: auto; bottom: 22px; right: clamp(20px,5vw,76px); }
.hero__media > .ph-upload { right: calc(clamp(20px,5vw,76px) + 46px); }
.swatch__remove {
  position: absolute; z-index: 5; bottom: 8px; right: 8px;
  width: 28px; height: 28px; display: none; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.55);
  background: rgba(24,26,28,0.62); color: #fff; cursor: pointer; backdrop-filter: blur(4px);
  transition: background .25s, opacity .3s;
}
.swatch__remove svg { width: 13px; height: 13px; }
.swatch__remove:hover { background: #C0392B; }
.swatch__tex--img .swatch__remove { opacity: 0; }
.swatch:hover .swatch__tex--img .swatch__remove, .swatch:focus-within .swatch__remove { opacity: 1; }
.lb__del {
  position: absolute; bottom: 20px; right: 24px; z-index: 5;
  display: none; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 100px;
  border: 1px solid rgba(244,245,246,0.3); background: rgba(0,0,0,0.35); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background .25s;
}
.lb__del svg { width: 15px; height: 15px; }
.lb__del:hover { background: #C0392B; }
@media (max-width: 600px) { .lb__del { bottom: 58px; right: 50%; transform: translateX(50%); } }
/* Projects tiles: fill the box, centred (taller frame so portrait shots show more) */
.ba-pane--single { aspect-ratio: 3/4; min-height: 460px; }
.ba-pane--single .ph.has-img { background-size: cover !important; background-position: center !important; }
.ph-drag { outline: 2px dashed var(--clay); outline-offset: -6px; }
.ph-zone { cursor: pointer; }
.apex-toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px);
  z-index: 200; max-width: 90vw; padding: 13px 20px; border-radius: 100px;
  background: #161718; color: #F4F5F6; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.01em;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.55); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; }
.apex-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ph-zone .ph-upload { pointer-events: auto; }
.app.ph-drag, .ba-pane.ph-drag, .intro-media.ph-drag { outline: 2px dashed var(--clay); outline-offset: -4px; }

/* ============================================================
   RESPONSIVE — header / mobile
   ============================================================ */
@media (max-width: 960px) {
  .nav, .head-cta .btn { display: none; }
  .burger { display: flex; }
  .sticky-cta { display: block; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
}

/* ---- Mobile hardening pass ---- */
@media (max-width: 640px) {
  /* never allow sideways scroll */
  html, body { overflow-x: hidden; max-width: 100%; }
  /* hero min-heights: fit the phone, keep text readable */
  .hero__media { height: auto; min-height: 78vh; }
  .intro-hero { min-height: 86vh; }
  .trade-hero { min-height: 74vh; }
  /* tighten oversized display headings so they don't overflow */
  .h-hero { font-size: clamp(2.2rem, 9vw, 3rem); }
  .intro-hero__inner { padding-block: clamp(48px, 14vw, 84px); }
  /* hero CTAs + social buttons: full width, easy taps */
  .hero__cta, .trade-hero__cta, .intro-hero__social { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .trade-hero__cta .btn, .intro-hero__social .btn { width: 100%; justify-content: center; }
  /* video-hero sound toggle clear of content */
  .vid-sound { right: 14px; bottom: 14px; padding: 9px 13px; }
  /* OLTRE exploded diagram: cap height, keep labels legible */
  .oltre-lbl__t { font-size: 24px; }
  .oltre-lbl__d { font-size: 18px; }
  /* gallery / project tiles a touch shorter so the grid isn't a tall column */
  .gal__item { min-height: 260px !important; }
  .gi-a { min-height: 360px !important; }
  /* comfortable tap targets for inline text links */
  .nav a, .foot a, .svc__more a { display: inline-block; padding-block: 2px; }
  /* stop any wide media from pushing the layout */
  img, svg, video, canvas { max-width: 100%; }
}
@media (max-width: 380px) {
  .h-hero { font-size: clamp(1.95rem, 9.5vw, 2.5rem); }
  .h-1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__content > * { animation: none !important; }
  .ph--kb, .swatch__tex::before, .fn-bronzewash { animation: none !important; }
  .swatch__tex::before { display: none; }
  .btn:hover, .svc:hover, .swatch:hover, .proc__step:hover, .gal__item:hover .ph { transform: none !important; }
}

/* ============================================================
   PLASTERING & DECORATING PAGE
   ============================================================ */
.nav a.is-current { color: var(--ink); }
.nav a.is-current::after { transform: scaleX(1); }

.trade-hero--draggable { cursor: grab; }
.trade-hero--draggable.is-dragging { cursor: grabbing; }
.trade-hero--draggable .trade-hero__bg { animation: none; }
.hero-pos-hint {
  position: absolute; left: clamp(16px,4vw,40px); bottom: clamp(14px,3vw,28px); z-index: 3;
  font-family: ui-monospace, Menlo, monospace; font-size: 0.62rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72); opacity: 0; transition: opacity .2s; pointer-events: none;
}
.trade-hero--draggable:hover .hero-pos-hint { opacity: 1; }
.trade-hero { position: relative; overflow: hidden; min-height: clamp(560px, 82vh, 860px); display: flex; align-items: center; }
.trade-hero__bg { position: absolute; inset: 0; z-index: 0; background-image: url("images/plastering-hero-v2.webp"); background-size: cover; background-position: center 38%; animation: tradeZoom 24s ease-in-out infinite alternate; }
@keyframes tradeZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.trade-hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(18,20,22,0.30) 0%, rgba(18,20,22,0.10) 36%, rgba(18,20,22,0.62) 100%),
  radial-gradient(135% 95% at 12% 90%, rgba(18,20,22,0.5), transparent 60%); }
.trade-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(48px,6vw,96px); }
.trade-hero__inner > * { animation: rise .9s cubic-bezier(.2,.7,.3,1) both; }
.trade-hero__inner > *:nth-child(2){ animation-delay: .08s; }
.trade-hero__inner > *:nth-child(3){ animation-delay: .16s; }
.trade-hero__inner > *:nth-child(4){ animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .trade-hero__inner > * { animation: none; } }
.trade-hero__eye { color: #ECECE8; text-shadow: 0 1px 14px rgba(18,20,22,0.55); }
.trade-hero__title { color: #F6F6F3; margin: 14px 0 0; text-shadow: 0 2px 26px rgba(18,20,22,0.5); }
.trade-hero__sub { color: rgba(246,246,243,0.94); font-size: clamp(1.05rem,1.5vw,1.28rem); line-height: 1.55; max-width: 58ch; margin-top: 22px; text-shadow: 0 1px 16px rgba(18,20,22,0.4); }
.trade-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.trade-intro { max-width: 760px; margin-left: 0; margin-right: auto; text-align: left; }
.trade-intro-grid { display: grid; gap: clamp(32px,4vw,64px); align-items: center; }
@media (min-width: 920px) { .trade-intro-grid { grid-template-columns: 1.05fr 0.95fr; } }
.trade-intro-grid .trade-intro { max-width: none; }
.trade-intro-media .ph { aspect-ratio: 4/5; border-radius: 4px; min-height: 320px; }
.trade-intro-media { position: relative; }
/* resizable image-box grip */
.box-resizegrip { position: absolute; right: -9px; bottom: -9px; z-index: 8;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ink); color: #fff; cursor: nwse-resize;
  opacity: 0; transition: opacity .2s; box-shadow: 0 3px 10px -3px rgba(0,0,0,0.5); }
.box-resizegrip svg { width: 13px; height: 13px; }
.trade-intro-media:hover .box-resizegrip, .box-resizegrip.is-active { opacity: 1; }
.trade-intro h2 { line-height: 1.12; margin-bottom: 30px; }
.trade-intro .lead { margin-top: 0; }

.trade-apps { display: flex; flex-wrap: wrap; gap: 12px; }
.afford-grid { display: grid; gap: clamp(16px,2vw,24px); grid-template-columns: 1fr; margin-top: clamp(30px,4vw,52px); }
@media (min-width: 760px) { .afford-grid { grid-template-columns: repeat(3,1fr); } }
.afford-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: clamp(26px,2.6vw,38px); transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s; }
.afford-card:hover { transform: translateY(-5px); box-shadow: 0 28px 52px -34px rgba(35,38,42,.45); }
.afford-card__t { font-family: var(--font-display); font-size: clamp(1.3rem,1.7vw,1.6rem); line-height: 1.2; margin-bottom: 12px; }
.afford-card__d { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.trade-app { display: inline-flex; align-items: center; padding: 12px 20px; border-radius: 100px; background: var(--card); border: 1px solid var(--line-soft); font-size: 0.95rem; color: var(--ink); transition: transform .3s, border-color .3s, box-shadow .3s; }
.trade-app:hover { transform: translateY(-2px); border-color: var(--line); box-shadow: 0 16px 30px -22px rgba(35,38,42,.4); }

.trade-cta { position: relative; background: var(--stone-2); padding-block: clamp(64px,8vw,120px); text-align: center; }
.trade-cta__inner { max-width: 720px; margin: 0 auto; }
.trade-cta__sub { color: var(--ink-soft); font-size: clamp(1.02rem,1.4vw,1.2rem); line-height: 1.55; margin-top: 16px; }
.trade-cta__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
@media (max-width: 540px) { .trade-hero__cta .btn, .trade-cta__row .btn { width: 100%; justify-content: center; } }

/* ============================================================
   PREMIUM MICRO-ANIMATIONS (buttons + boxes)
   ============================================================ */
/* Buttons: light sheen sweep + refined lift/press */
.btn { position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.2,.7,.3,1), background .4s, color .4s, border-color .4s, box-shadow .4s; }
.btn::after {
  content: ""; position: absolute; top: 0; left: 0; width: 60%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: translateX(-180%) skewX(-18deg); pointer-events: none;
}
.btn > * { position: relative; z-index: 2; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(20,20,22,.55); }
.btn:hover::after { animation: btnSheen .9s cubic-bezier(.3,.5,.2,1); }
.btn:active { transform: translateY(0) scale(.985); }
@keyframes btnSheen { from { transform: translateX(-180%) skewX(-18deg); } to { transform: translateX(240%) skewX(-18deg); } }

/* Cards & boxes: smoother lift with a soft inner ring on hover */
.svc, .swatch, .mat-card, .afford-card, .route, .proc__step, .cert, .trade-app, .social-card {
  transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s, border-color .45s, background .45s;
}
.svc::after, .mat-card::after, .afford-card::after, .proc__step::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(154,106,75,0); transition: box-shadow .45s; z-index: 1;
}
.svc, .mat-card, .afford-card, .proc__step { position: relative; }
.svc:hover::after, .mat-card:hover::after, .afford-card:hover::after, .proc__step:hover::after {
  box-shadow: inset 0 0 0 1px rgba(154,106,75,0.28);
}

/* Image boxes: gentle brighten + finer zoom on hover */
.gal__item .ph, .app .ph { transition: transform 1.1s cubic-bezier(.2,.7,.3,1), filter 1.1s; }
.gal__item:hover .ph, .app:hover .ph { filter: brightness(1.04) saturate(1.03); }

/* Small pill / icon controls: unified hover lift */
.samples-pill, .apex-snd, .vid-sound, .ph-upload, .ph-remove, .ph-arrow, .swatch__add, .swatch__remove {
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background .3s, border-color .3s, box-shadow .3s, opacity .3s;
}
.samples-pill:hover, .apex-snd:hover, .vid-sound:hover { box-shadow: 0 14px 26px -14px rgba(20,20,22,.5); }

@media (prefers-reduced-motion: reduce) {
  .btn::after { display: none; }
  .btn:hover, .btn:active { transform: none; }
  .svc:hover::after, .mat-card:hover::after, .afford-card:hover::after, .proc__step:hover::after { box-shadow: none; }
}

/* ---- Bolder, more obvious motion (still luxe) ---- */
.svc:hover, .mat-card:hover, .afford-card:hover, .route:hover, .proc__step:hover, .social-card:hover {
  transform: translateY(-10px) scale(1.022) !important;
  box-shadow: 0 40px 70px -34px rgba(20,20,22,.55) !important;
}
.swatch:hover, .swatch.is-active { transform: translateY(-9px) scale(1.03) !important; box-shadow: 0 34px 58px -30px rgba(20,20,22,.5) !important; }
.cert:hover { transform: translateY(-14px) scale(1.04) !important; }
.trade-app:hover { transform: translateY(-5px) scale(1.05) !important; }
/* stronger image-tile zoom */
.gal__item:hover .ph, .app:hover .ph { transform: scale(1.12) !important; }
/* primary buttons: a soft pulsing glow so CTAs clearly invite a click */
.btn--primary { animation: ctaGlow 3.2s ease-in-out infinite; }
.btn--primary:hover { transform: translateY(-3px) scale(1.03); animation: none; box-shadow: 0 22px 40px -18px rgba(0,0,0,.65); }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(154,106,75,0); }
  50%      { box-shadow: 0 10px 30px -10px rgba(154,106,75,0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .svc:hover, .mat-card:hover, .afford-card:hover, .route:hover, .proc__step:hover, .social-card:hover,
  .swatch:hover, .cert:hover, .trade-app:hover { transform: none !important; }
  .gal__item:hover .ph, .app:hover .ph { transform: none !important; }
  .btn--primary { animation: none; }
}

/* ============================================================
   MOBILE RESPONSIVENESS PASS (audited at 390px, July 2026)
   ============================================================ */
/* Heroes: photo/video wash out behind white text at phone widths —
   strengthen the scrims and drop the white light-sweep layers */
@media (max-width: 640px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(18,20,22,0.44) 0%, rgba(18,20,22,0.28) 35%, rgba(18,20,22,0.76) 100%),
      radial-gradient(135% 95% at 10% 92%, rgba(18,20,22,0.55), transparent 60%);
  }
  .mc-light, .mc-sheen, .mc-note { display: none; }
  .intro-hero__scrim {
    background:
      linear-gradient(180deg, rgba(18,20,22,0.52) 0%, rgba(18,20,22,0.36) 35%, rgba(18,20,22,0.76) 100%);
  }
  /* uploader chips ("N items" / "click for full screen") crowd small tiles */
  .gal__view, .gal__count { display: none !important; }
}

/* OLTRE build-up diagram: the SVG side labels can't fit a phone —
   hide them and show an HTML legend under the diagram instead */
.oltre-legend { display: none; list-style: none; margin: 18px 0 0; padding: 0; gap: 10px; }
.oltre-legend li { display: flex; gap: 10px; align-items: baseline; font-size: 0.92rem; line-height: 1.5; }
.oltre-legend b { font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
.oltre-legend span { color: var(--ink-soft); }
@media (max-width: 700px) {
  .oltre-labels { display: none; }
  .oltre-legend { display: grid; }
}

/* Gallery: two tall slivers per row at phone width — go single column */
@media (max-width: 560px) {
  .gal { grid-template-columns: 1fr; }
  .gal__item { grid-column: span 1 !important; min-height: 0 !important; aspect-ratio: 4/3; }
}

/* Finish swatches: two cramped columns at phone width — go single column
   with a shorter texture pane so cards stop feeling squashed */
@media (max-width: 480px) {
  .finish-grid { grid-template-columns: 1fr; }
  .finish-grid .swatch__tex { height: auto; aspect-ratio: 16/10; }
}

/* Mobile header + drawer: keep the brand compact (its wrapped text was
   making the header taller than the drawer's clearance, so the logo sat
   on top of the first menu links) and solidify the header while open */
@media (max-width: 640px) {
  .brand { gap: 10px; }
  .brand__logo { height: 44px; }
  .brand__mark { font-size: 1.12rem; white-space: nowrap; }
  .brand__sub { font-size: 0.56rem; }
  .mnav { padding-top: 118px; }
}
.site-head:has(.burger.is-open) { background: var(--bone); border-color: var(--line-soft); }
