/* ============================================================
   Stone Solutions — main stylesheet
   Rebuilt from the original Framer design.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-500-italic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-700-italic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/satoshi-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito Sans'; src: url('../fonts/nunito-sans-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Homemade Apple'; src: url('../fonts/homemade-apple-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

/* ---------- Design tokens ----------
   Two layers, mirroring DESIGN_SYSTEM.md:
   - Primitives: raw values named by hue + weight.
   - Semantic:   purposeful tokens referencing primitives. Use these in
                 components; the Tailwind config (inline in each page's
                 <head>) maps utility colors onto the same variables.
   The legacy short names at the bottom are aliases kept so the existing
   component layer keeps working — new code should prefer semantic names.
------------------------------------------------ */
:root {
  /* Primitives — Neutral */
  --neutral-0: #ffffff;
  --neutral-25: #f8f8f5;
  --neutral-900: #141414;
  /* Primitives — Cream */
  --cream-100: #fff8eb;
  /* Primitives — Earth (warm blacks) */
  --earth-900: #212019;
  --earth-950: #1a1916;

  /* Semantic — text */
  --color-text-primary: var(--neutral-900);
  --color-text-secondary: rgba(20, 20, 20, .8);
  --color-text-muted: rgba(48, 48, 48, .5);
  --color-text-inverse: var(--neutral-25);
  /* Semantic — surfaces */
  --color-background-page: var(--neutral-25);
  --color-surface-default: var(--neutral-0);
  --color-surface-dark: var(--earth-900);
  --color-surface-footer: var(--earth-950);
  /* Semantic — borders */
  --color-border-default: rgba(20, 20, 20, .12);
  --color-border-soft: rgba(20, 20, 20, .08);
  --color-border-inverse: rgba(255, 255, 255, .1);
  /* Semantic — accent */
  --color-accent: var(--cream-100);

  /* Layout */
  --page-margin: 30px;

  /* Legacy aliases (component layer) */
  --bg: var(--color-background-page);
  --ink: var(--color-text-primary);
  --ink-80: var(--color-text-secondary);
  --ink-50: rgba(20, 20, 20, .5);
  --muted: var(--color-text-muted);
  --line: var(--color-border-default);
  --line-soft: var(--color-border-soft);
  --cream: var(--color-accent);
  --dark: var(--color-surface-dark);
  --dark-2: var(--color-surface-footer);
  --white: var(--color-surface-default);
  --w-line: var(--color-border-inverse);
  --w-50: rgba(255, 255, 255, .5);
  --pad: var(--page-margin);
  --font: 'Satoshi', 'Inter', -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px; font-weight: 400; line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

.container { padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Type ---------- */
.display {
  font-size: clamp(42px, 4.9vw, 70px); font-weight: 500; line-height: 1;
  letter-spacing: -0.054em; text-transform: uppercase;
}
h2, .h2 {
  font-size: 30px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.04em; text-transform: uppercase;
}
.eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--muted);
}
.eyebrow__ico { width: 16px; height: 16px; object-fit: contain; opacity: .55; }
.lead { font-size: 18px; color: var(--ink); }
.small { font-size: 12px; text-transform: uppercase; color: var(--ink-80); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(20, 20, 20, .18); border-radius: 999px;
  background: transparent;
  font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 2;
  white-space: nowrap;
  transition: color .3s ease .08s, border-color .3s ease;
}
/* the fill grows out of the arrow disc: a circle anchored at the disc's
   position scales up until it floods the pill */
.btn::before {
  content: ''; position: absolute; top: 50%; right: 8px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--btn-fill, var(--ink));
  translate: 0 -50%; scale: 1;
  transition: scale .5s cubic-bezier(.3,.7,.3,1);
}
.btn:hover::before { scale: 16; }
.btn > span { position: relative; z-index: 1; }
.btn__disc {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--btn-fill, var(--ink)); color: var(--btn-fill-text, var(--bg));
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s ease;
}
.btn .arr { width: 13px; height: 13px; transform: rotate(-45deg); transition: transform .3s ease; }
.btn:hover { color: var(--btn-fill-text, var(--bg)); border-color: var(--btn-fill, var(--ink)); }
.btn:hover .btn__disc { background: transparent; transform: translateX(3px); }
.btn:hover .arr { transform: rotate(0deg); }
.btn--dark { border-color: rgba(255, 255, 255, .25); color: var(--bg); --btn-fill: var(--bg); --btn-fill-text: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px var(--pad);
}
.site-header__logo img { height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.site-nav__item {
  position: relative;
  font-size: 15px; font-weight: 500; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.3; color: var(--ink);
}
.site-nav__item.is-active { color: var(--ink-50); pointer-events: auto; }
.site-nav__item:hover { color: var(--ink-50); }
.site-nav__item.has-drop > a { display: inline-flex; align-items: center; gap: 6px; color: inherit; }
.plus { width: 10px; height: 10px; }
.drop {
  position: absolute; top: 100%; left: 50%; translate: -50% 0;
  min-width: 160px; padding: 10px 0;
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, .08);
  display: none; flex-direction: column;
}
.drop a { display: block; padding: 6px 20px; font-size: 14px; color: var(--ink); }
.drop a:hover { color: var(--ink-50); }
.has-drop:hover .drop, .has-drop.open .drop { display: flex; }
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .25s; }
.mobile-menu { display: none; }

/* ---------- Section head ---------- */
.sec-head { position: relative; margin-bottom: 48px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head__title { max-width: 680px; padding-bottom: 22px; }
.sec-head__bar { height: 1px; background: var(--line); }
.sec-head__title::after {
  content: ''; display: block; width: 100px; height: 2px;
  background: var(--ink); margin-top: 18px;
}
.sec-head__cta { display: flex; justify-content: flex-end; margin-top: 22px; }
.sec-head--dark .sec-head__title { color: var(--bg); }
.sec-head--dark .sec-head__bar { background: var(--w-line); }
.sec-head--dark .sec-head__title::after { background: var(--bg); }
.sec-head--dark .eyebrow { color: var(--w-50); }

/* ---------- Reveal on scroll ----------
   Animation is driven by GSAP ScrollTrigger (js/scroll-fx.js), which
   sets the initial hidden state at runtime. Elements stay visible if
   GSAP can't load, so there is no CSS hiding here. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 8px; }
.hero-knockout { position: relative; height: clamp(180px, 32vw, 470px); overflow: hidden; }
.hero-knockout__media { position: absolute; inset: 0; overflow: hidden; }
.hero-knockout__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; width: max-content; height: 100%;
  animation: knock-slide 60s linear infinite;
}
.hero-knockout__slide img { height: 213%; width: auto; flex: none; }
@keyframes knock-slide { to { transform: translateX(-33.3333%); } }
@media (prefers-reduced-motion: reduce) { .hero-knockout__slide { animation: none; } }
.hero-knockout__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-knockout__scribble {
  position: absolute; right: 6%; bottom: 4%; width: 13%; pointer-events: none;
  mix-blend-mode: screen;
}
.hero-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; padding: 56px var(--pad) 72px; }
.hero-head h1 { max-width: 640px; }
.hero-head__side { max-width: 400px; justify-self: end; display: flex; flex-direction: column; gap: 26px; }
.hero-head__side p { font-size: 15px; line-height: 1.4; }

/* hero image band: simple parallax */
.hero-par {
  position: relative; height: calc(min(31vw, 46vh) + 200px); overflow: hidden;
  display: grid; align-items: end;
}
.hero-par__img {
  position: absolute; left: 0; top: -15%; width: 100%; height: 130%;
  object-fit: cover; will-change: transform;
}
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 0 66px 40px;
}
.hero-stat {
  background: rgba(201, 201, 201, .82);
  padding: 14px 16px 10px; min-height: 78px;
  position: relative; overflow: hidden;
}
.hero-stat__num { font-size: 30px; font-weight: 500; letter-spacing: -0.04em; }
.hero-stat__label { font-size: 12px; font-weight: 500; text-transform: uppercase; color: var(--ink-80); text-align: right; margin-top: 6px; }
.hero-stat__ico { position: absolute; left: 14px; bottom: -6px; width: 44px; opacity: .25; }

/* ============================================================
   Home sections
   ============================================================ */
.statement { padding: 130px var(--pad) 110px; text-align: center; }
.statement p { font-size: clamp(38px, 4.9vw, 70px); font-weight: 500; line-height: 1; letter-spacing: -0.054em; text-transform: uppercase; max-width: 1060px; margin: 0 auto; }

.why { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; padding: 60px var(--pad) 120px; align-items: center; }
.why__sketch { padding: 20px; }
.why__head h2 { border-bottom: 1px solid var(--ink); padding-bottom: 14px; margin-bottom: 26px; max-width: 460px; }
.why__head .eyebrow { margin-bottom: 12px; }
.why__body { font-size: 15px; margin-bottom: 26px; max-width: 460px; }

/* accordion */
.acc { border-top: 0; }
.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 15px 2px; text-align: left;
  font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.01em;
}
.acc__ico { width: 16px; height: 16px; opacity: .5; flex: 0 0 auto; }
.acc__plus { margin-left: auto; flex: 0 0 auto; width: 12px; height: 12px; position: relative; transition: transform .3s; }
.acc__plus::before, .acc__plus::after {
  content: ''; position: absolute; background: var(--ink);
  transition: height .3s, width .3s;
}
.acc__plus::before { left: 0; right: 0; top: calc(50% - 0.75px); height: 1.5px; }
.acc__plus::after { top: 0; bottom: 0; left: calc(50% - 0.75px); width: 1.5px; }
.acc__item.open .acc__plus { transform: rotate(45deg); }
/* diagonal antialiasing fattens the bars — slim them when rotated so the
   x matches the + weight */
.acc__item.open .acc__plus::before { height: 1.1px; top: calc(50% - 0.55px); }
.acc__item.open .acc__plus::after { width: 1.1px; left: calc(50% - 0.55px); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.acc__body-in { padding: 2px 2px 18px; font-size: 15px; color: var(--ink-80); }

/* video band — follows the content max width (page margins) */
.video-band { padding: 0 var(--pad); }
.video-band video { width: 100%; height: min(92vh, 760px); object-fit: cover; }

/* stones strip */
.stones-sec { padding: 110px var(--pad) 120px; }
.stones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stone-card { position: relative; background: var(--white); padding: 10px 10px 0; display: block; overflow: hidden; }
.stone-card img { width: 100%; height: 80px; object-fit: cover; }
.stone-card img, .stone-card h3 { position: relative; z-index: 1; }
.stone-card h3 {
  font-size: 15px; font-weight: 500; text-transform: uppercase;
  letter-spacing: -0.01em; padding: 10px 2px 14px;
  transition: color .3s ease .06s;
}
.stone-card.fx-on:hover h3 { color: var(--bg); }
/* dark circle that sweeps in from the cursor's entry point (JS sets
   size/origin; scale animates the wipe) */
.stone-card__fill {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  background: var(--ink); pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%) scale(0);
}
.stone-card__badge {
  position: absolute; left: 50%; top: 90px;
  translate: -50% -50%; width: 74px; height: 74px; border-radius: 50%;
  will-change: left, top;
  background: var(--white); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  font-size: 9.5px; font-weight: 700; text-transform: uppercase; line-height: 1.35;
  opacity: 0; scale: .5; transition: opacity .3s ease, scale .3s ease;
  pointer-events: none; z-index: 2;
}
.stone-card:hover .stone-card__badge { opacity: 1; scale: 1; }

/* projects on home + index */
.proj-sec { padding: 0 var(--pad) 120px; }
.proj-card { display: block; padding-top: 26px; }
.proj-card + .proj-card { margin-top: 30px; }
.proj-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.proj-card__top h3 { font-size: 17px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.01em; }
.proj-card__tags { display: flex; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px;
  background: transparent; color: var(--ink-80); white-space: nowrap;
}
.proj-card__media { width: 100%; overflow: hidden; }
.proj-card__media img { width: 100%; height: auto; aspect-ratio: 16 / 8.6; object-fit: cover; transition: transform .7s ease; }
.proj-card:hover .proj-card__media img { transform: scale(1.035); }
.proj-card__meta { display: flex; gap: 60px; border-bottom: 1px solid var(--line-soft); padding: 16px 0 18px; }
.proj-card__meta dl { display: flex; flex-direction: column; gap: 2px; }
.proj-card__meta dt { font-size: 11px; text-transform: uppercase; color: var(--muted); }
.proj-card__meta dd { font-size: 15px; }

/* dark statement w/ photos */
.dark-statement {
  position: relative; background: var(--dark); color: var(--bg);
  padding: 210px var(--pad) 150px; text-align: center;
}
.dark-statement::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/images/UrQqewjnRWVW1vMmm3dcpF3MF4.svg') center / cover no-repeat;
  opacity: .14;
}
.dark-statement h2, .dark-statement .h2 {
  position: relative; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.12;
  letter-spacing: -0.045em; max-width: 1120px; margin: 0 auto;
}
.dark-statement__img { position: absolute; width: 240px; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.dark-statement__img--tl { top: 10px; left: -14px; transform: rotate(-14deg); }
.dark-statement__img--br { right: 36px; bottom: -190px; transform: rotate(9deg); width: 250px; z-index: 3; }

/* partners */
.partners { background: var(--dark); color: var(--bg); padding: 120px var(--pad) 140px; }
.partners__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: start; margin-top: 10px; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--w-line); }
.logo-cell {
  display: grid; place-items: center; min-height: 110px; padding: 20px;
  border-right: 1px solid var(--w-line); border-bottom: 1px solid var(--w-line);
}
.logo-cell:nth-child(3n) { border-right: 0; }
.logo-cell:nth-last-child(-n+3) { border-bottom: 0; }
.logo-cell img { max-height: 34px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.partners__quote { border-top: 1px solid var(--w-line); padding-top: 26px; min-height: 200px; }
.partners__quote p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.85); }
.partners__quote cite { display: block; font-style: normal; font-size: 12px; text-transform: uppercase; margin-top: 22px; color: var(--w-50); text-align: right; }

/* testimonials slider */
.testi { padding: 120px 0 130px; }
.testi .sec-head { margin-left: var(--pad); margin-right: var(--pad); }
.testi-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px var(--pad) 10px; scroll-padding-left: var(--pad); scroll-padding-right: var(--pad);
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 378px; min-height: 520px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line-soft);
  padding: 26px 24px 24px; display: flex; flex-direction: column;
}
.testi-card__who { display: flex; align-items: center; gap: 14px; }
.testi-card__who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.testi-card__who p { font-size: 15px; color: var(--ink-80); }
.testi-card__quote { font-size: 15px; line-height: 1.55; margin-top: 96px; }
.testi-card__proj { position: relative; margin-top: auto; height: 84px; overflow: hidden; }
.testi-card__proj img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.testi-card__proj div { position: absolute; left: 14px; bottom: 10px; color: #fff; }
.testi-card__proj h4 { font-size: 14px; font-weight: 500; text-transform: uppercase; }
.testi-card__proj p { font-size: 10px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; opacity: .85; margin-top: 3px; }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.testi-nav button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--bg);
  display: grid; place-items: center; transition: opacity .2s;
}
.testi-nav button:disabled { opacity: .3; }
.testi-nav .arr { width: 14px; height: 14px; }

/* team */
.team { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; padding: 30px var(--pad) 130px; }
.team__left { position: sticky; top: 110px; align-self: start; }
.team__left h2 { max-width: 380px; border-bottom: 1px solid var(--ink); padding-bottom: 16px; margin-bottom: 26px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.team-card__photo { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.team-card h3 { font-size: 15px; font-weight: 500; text-transform: uppercase; margin-top: 12px; }
.team-card p { font-size: 11px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; padding: 40px var(--pad) 140px; }
.faq__left { position: sticky; top: 110px; align-self: start; max-width: 340px; }
.faq__left h2 { margin: 12px 0 18px; }
.faq__left p { font-size: 15px; color: var(--ink-80); margin-bottom: 26px; }
.faq .acc { border: 1px solid var(--line-soft); padding: 6px 26px; }
.faq .acc__head { font-size: 15px; padding: 17px 2px; }
.faq .acc__head .acc__q-ico { width: 26px; flex: 0 0 auto; opacity: .45; font-size: 13px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; background: var(--dark-2); color: var(--bg); overflow: hidden; }
.site-footer > * { position: relative; z-index: 2; }
.footer-bg {
  position: absolute; inset: auto 0 0 0; height: 75%; z-index: 1 !important;
  background: url('../assets/images/9fkY4aD8cQ7RHUwy2LDm21AUj7k.svg') center bottom / cover no-repeat;
  opacity: .35; pointer-events: none;
}
.footer-marquee { overflow: hidden; padding: 90px 0 70px; }
.footer-marquee__track {
  display: flex; align-items: center; gap: 56px; width: max-content;
  animation: marquee 38s linear infinite;
}
.footer-marquee__track span {
  font-size: clamp(56px, 6.5vw, 94px); font-weight: 500; line-height: 1;
  letter-spacing: -0.05em; text-transform: uppercase; color: var(--cream);
  white-space: nowrap;
}
.footer-marquee__dash { width: 90px; height: 6px; background: var(--cream); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* .site-footer prefix beats Tailwind's .container utility on the same element */
.site-footer .footer-main {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; align-items: start;
  padding-bottom: 90px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.footer-contact { background: rgba(255,255,255,.02); border: 1px solid var(--w-line); border-right: 0; align-self: stretch; }
.footer-contact__row {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: start;
  padding: 26px 30px; border-bottom: 1px solid var(--w-line);
}
.footer-contact__row:last-child { border-bottom: 0; }
.footer-contact__label { font-size: 11px; text-transform: uppercase; color: var(--w-50); display: flex; align-items: center; gap: 8px; }
.footer-contact__val { font-size: 15px; color: rgba(255,255,255,.9); }
.footer-contact__map { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; margin-top: 12px; color: var(--w-50); }
.footer-contact__map .arr { width: 11px; height: 11px; }

.footer-form { background: var(--white); color: var(--ink); padding: 34px 38px 38px; }
.footer-form h3 { font-size: 17px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.01em; }
.footer-form__intro { font-size: 13.5px; color: var(--ink-80); margin: 10px 0 24px; }
.ff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.ff--full, .ff-row3, .ff-row2 { grid-column: 1 / -1; }
.ff-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 16px; }
.ff-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.ff label, .ff-inner label { display: block; font-size: 13px; margin-bottom: 6px; }
.ff input, .ff select, .ff textarea, .ff-inner select {
  width: 100%; padding: 10px 12px;
  background: #efefec; border: 1px solid rgba(20,20,20,.08); border-radius: 2px;
  font: inherit; font-size: 13.5px; color: var(--ink);
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(20,20,20,.35); }
.ff input:focus, .ff select:focus, .ff textarea:focus { outline: 1.5px solid var(--ink); outline-offset: 0; }
.quote-form { position: relative; }
.quote-form__hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.quote-form__status {
  margin-top: 16px; padding: 12px 14px; border-radius: 2px;
  font-size: 13.5px; line-height: 1.45;
}
.quote-form__status.is-success {
  border: 1px solid rgba(20, 20, 20, .12); background: #f4f6f1; color: var(--ink);
}
.quote-form__status.is-error {
  border: 1px solid rgba(180, 40, 40, .25); background: #f8ecec; color: #8a1f1f;
}
.quote-form__submit {
  width: 100%; margin-top: 20px; padding: 13px;
  background: var(--ink); color: var(--white);
  font-size: 14px; transition: opacity .2s;
}
.quote-form__submit:hover { opacity: .85; }
.quote-form__submit:disabled { opacity: .6; cursor: not-allowed; }

.footer-nav { padding-bottom: 60px; }
.footer-nav__rule { height: 1px; background: var(--w-line); margin-bottom: 60px; width: 100%; }
/* auto-width columns + justify-content:center centres the actual text mass,
   not a fixed box (equal 1fr columns left dead space in the last column) */
.footer-cols { display: grid; grid-template-columns: repeat(4, auto); justify-content: center; gap: 30px 140px; }
.footer-col__h { font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.75); padding: 4px 0; }
.footer-col a:hover { color: var(--white); }
.footer-news { text-align: center; margin-top: 70px; }
.footer-news__h { font-size: 14px; font-weight: 500; text-transform: uppercase; margin-bottom: 18px; }
.footer-news__form { position: relative; display: inline-flex; }
.footer-news__form input {
  width: 240px; padding: 11px 14px; background: rgba(255,255,255,.08);
  border: 1px solid var(--w-line); color: var(--white); font: inherit; font-size: 13.5px;
}
.footer-news__form input::placeholder { color: var(--w-50); }
.footer-news__form button {
  padding: 11px 22px; background: var(--cream); color: var(--ink); font-size: 14px;
}
.footer-news__form button:disabled { opacity: .6; cursor: not-allowed; }
.footer-news__status {
  margin-top: 14px; font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.75);
}
.footer-news__status.is-error { color: #f0b4b4; }
.footer-social { text-align: center; margin: 70px 0 90px; }
.footer-social > p { font-size: 13px; text-transform: uppercase; margin-bottom: 22px; }
.footer-social__links { display: flex; justify-content: center; gap: 26px; }
.footer-social__links a { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,.85); }
.footer-social__links svg { width: 21px; height: 21px; }

/* ============================================================
   Sub-page shared patterns
   ============================================================ */
.page-hero { padding: 70px var(--pad) 60px; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.page-hero h1 { text-align: center; margin: 0 auto; max-width: 900px; }
.page-hero__intro { text-align: center; max-width: 640px; margin: 22px auto 0; font-size: 15px; color: var(--ink-80); }

.prose { max-width: 760px; margin: 0 auto; padding: 30px var(--pad) 110px; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 500; text-transform: uppercase; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 16px; line-height: 1.6; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { font-size: 16px; line-height: 1.6; margin-bottom: 6px; }
.prose img { margin: 30px 0; }

/* responsive */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact { border-right: 1px solid var(--w-line); }
  .partners__grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .team__left, .faq__left { position: static; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 1199px) {
  .site-nav, .site-header__cta { display: none; }
  .burger { display: flex; }
  .mobile-menu {
    display: none; flex-direction: column;
    padding: 40px var(--pad) 40px; background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    min-height: calc(100vh - 62px);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu > a {
    font-size: 16px; font-weight: 500; text-transform: uppercase;
    padding: 18px 0; border-bottom: 1px solid var(--line-soft);
  }
  .mobile-menu > a:first-child { color: var(--ink-50); }
  .mobile-menu__label {
    font-size: 11px; text-transform: uppercase; color: var(--muted);
    padding: 20px 0 4px;
  }
  .mobile-menu__stones { display: flex; flex-direction: column; padding: 0 0 14px 14px; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu__stones a { font-size: 14px; text-transform: uppercase; color: var(--ink-80); padding: 7px 0; }
  .mobile-menu__cta { margin-top: 40px; }
  .hero-head { grid-template-columns: 1fr; }
  .hero-head__side { justify-self: start; }
  .why { grid-template-columns: 1fr; }
  .stones-grid { grid-template-columns: 1fr 1fr; }
  .proj-card__media { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 0 20px 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex-basis: 82vw; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .ff-grid, .ff-row3, .ff-row2 { grid-template-columns: 1fr; }
  .dark-statement__img { display: none; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(3n) { border-right: 1px solid var(--w-line); }
  .logo-cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .stones-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* FAQ variant: toggle on the left */
.acc__head--plusleft { gap: 0; }
.acc__head--plusleft .acc__plus { margin: 0 26px 0 6px; }
.eyebrow__ico { width: 16px; height: 16px; opacity: .55; flex: 0 0 auto; }

/* cursor pill on project cards: replaces the cursor with a labelled pill */
.cursor-pill {
  position: fixed; left: 0; top: 0; z-index: 200;
  padding: 8px 16px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 700; text-transform: uppercase; white-space: nowrap;
  pointer-events: none; opacity: 0; translate: -50% -50%; scale: .6;
  transition: opacity .25s ease, scale .25s ease;
}
.cursor-pill.on { opacity: 1; scale: 1; }
.proj-card__media.pill-hover, .proj-card__media.pill-hover * { cursor: none; }

