/* ===========================================================
   GGCL — Light Editorial Redesign
   Warm cream surfaces · charcoal ink · single red accent
   =========================================================== */

:root {
  /* surfaces */
  --bg:        #F5F1EA;   /* warm cream base */
  --bg-paper:  #FBF9F4;   /* lighter paper */
  --bg-deep:   #ECE6DB;   /* deeper sand for alternating bands */
  --bg-ink:    #15140F;   /* near-black for the one dark band (CTA) */

  /* ink */
  --ink:       #1C1A16;
  --ink-soft:  #524E45;
  --muted:     #8E887A;
  --faint:     #B7B0A2;

  /* lines */
  --line:      #E2DACB;
  --line-soft: #EBE5D9;

  /* brand */
  --red:       #C0392B;
  --red-deep:  #9E2C20;
  --clay:      #C0392B;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1280px;
  --gut:  48px;
}

/* ---------- page loader ---------- */
#ggcl-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--bg);
  opacity: 1; transition: opacity .5s ease;
}
#ggcl-loader.is-hidden { opacity: 0; pointer-events: none; }
#ggcl-loader img { width: 150px; height: auto; opacity: .95; }
.ggcl-loader__spinner {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(28,26,22,.14); border-top-color: var(--red);
  animation: ggcl-spin .8s linear infinite;
}
@keyframes ggcl-spin { to { transform: rotate(360deg); } }

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--clay); font-weight: 500; }

.lead { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 46ch; }

/* pill buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn .ar { transition: transform .25s ease; }
.btn:hover .ar { transform: translate(2px,-2px); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--red); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: rgba(0,0,0,.06); }
.btn--light:hover { background: var(--bg-deep); }
.btn--outline { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.45); }
.btn--outline:hover { background:#fff; color: var(--ink); border-color:#fff; }
.btn--compact { padding: 10px 20px; font-size: 11.5px; gap: 8px; }

.view-all {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; gap: 8px; align-items: center;
  padding: 11px 20px; border: 1px solid var(--line); border-radius: 100px;
  transition: all .2s ease;
}
.view-all:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 8px 0;
}
.header.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
/* white-on-image state while over the hero */
.header:not(.scrolled) .nav a { color: rgba(255,255,255,.82); }
.header:not(.scrolled) .nav a.active { color:#fff; }
.header:not(.scrolled) .btn--solid { background:#fff; color: var(--ink); }
.header:not(.scrolled) .btn--solid:hover { background: var(--red); color:#fff; }
.header:not(.scrolled) .lang-switch__btn { background:#fff; color: var(--ink); }
.header:not(.scrolled) .lang-switch:hover .lang-switch__btn,
.header:not(.scrolled) .lang-switch.is-open .lang-switch__btn { background: var(--red); color:#fff; }
.header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 16px var(--gut);
  max-width: var(--maxw); margin: 0 auto;
}
/* never let the logo get squeezed by flexbox when the right-hand cluster runs tight on space */
.header__left { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }

.brand { display: flex; align-items: center; }
.brand .logo { height: 54px; width: auto; display: block; flex-shrink: 0; }
.brand .logo--dark { display: none; }
.header.scrolled .brand .logo--light { display: none; }
.header.scrolled .brand .logo--dark { display: block; }

.powered-by { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.powered-by__img { height: 32px; width: auto; display: block; }
.powered-by__img--dark { display: none; }
.header.scrolled .powered-by__img--light { display: none; }
.header.scrolled .powered-by__img--dark { display: block; }
@media (max-width: 1100px) { .powered-by { display: none; } }

/* logo pinned left; nav + language switch + CTA all grouped and pushed to the right edge */
.header__navgroup { display: flex; align-items: center; gap: 28px; }

.header__right { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.header__right-top { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.header__cta.btn--compact { padding: 8px 16px; font-size: 10.5px; }
.header__lang .lang-switch__btn { padding: 7px 12px; font-size: 11px; }

/* ---------- google translate (hidden widget, driven by our own dropdown) ---------- */
.goog-hidden-widget { position: absolute; left: -9999px; top: -9999px; }
/* Blanket-hide every iframe (this is what actually suppresses Google's banner across
   widget versions) then explicitly re-show the one legitimate iframe we embed ourselves
   (the contact page map) via a more specific selector. */
iframe { display: none !important; }
.contact-map-full iframe { display: block !important; }
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
#goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}
html, html body, body.translated-ltr, body.translated-rtl {
  top: 0 !important; position: static !important; margin-top: 0 !important;
}
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style*="vertical-align: inherit"] { vertical-align: inherit !important; }

/* ---------- language switcher ---------- */
/* Same solid pill treatment as the Request Sample button: dark fill (white once the
   header is scrolled), and the same red hover — kept visually identical on purpose. */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 12px; font-weight: 600; letter-spacing: .05em; padding: 10px 16px;
  border: none; border-radius: 100px; transition: color .2s, background .2s;
  background: var(--ink); color: #fff;
}
.lang-switch__flag { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex-shrink: 0; }
.lang-switch__code { letter-spacing: .06em; }
.lang-switch:hover .lang-switch__btn, .lang-switch.is-open .lang-switch__btn { background: var(--red); color: #fff; }
.lang-switch__chev { transition: transform .2s ease; flex-shrink: 0; }
.lang-switch:hover .lang-switch__chev, .lang-switch.is-open .lang-switch__chev { transform: rotate(180deg); }

.lang-switch__menu {
  position: absolute; right: 0; top: calc(100% + 12px); z-index: 50; width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  box-shadow: 0 30px 60px -24px rgba(28,26,22,.4);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* invisible bridge over the gap so the pointer never "leaves" the switcher while
   moving from the button down into the menu (would otherwise flicker-close on hover) */
.lang-switch__menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.lang-switch:hover .lang-switch__menu, .lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.lang-switch__search {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px; margin-bottom: 8px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-deep);
  color: var(--ink-soft); transition: border-color .2s, background .2s;
}
.lang-switch__search:focus-within { border-color: var(--ink-soft); background: #fff; }
.lang-switch__search svg { flex-shrink: 0; }
.lang-switch__search input {
  border: none; background: none; outline: none; font-size: 13px; color: var(--ink);
  width: 100%; font-family: var(--sans);
}
.lang-switch__search input::placeholder { color: var(--ink-soft); opacity: .7; }

.lang-switch__list { max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 1px; }
.lang-switch__list::-webkit-scrollbar { width: 6px; }
.lang-switch__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.lang-switch__item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer; border-radius: 8px;
  font-size: 13px; color: var(--ink-soft); padding: 9px 10px;
  transition: background .15s ease, color .15s ease;
}
.lang-switch__item-flag { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex-shrink: 0; }
.lang-switch__item-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.lang-switch__item-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lang-switch__item-en { font-size: 11px; color: var(--ink-soft); opacity: .65; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lang-switch__item-code { font-size: 10.5px; font-weight: 600; letter-spacing: .05em; opacity: .55; flex-shrink: 0; }
.lang-switch__item:hover { background: var(--bg-deep); color: var(--ink); }
.lang-switch__item.is-active { background: rgba(192,57,43,.08); color: var(--red); font-weight: 600; }
.lang-switch__item.is-active .lang-switch__item-code { opacity: .8; }
.lang-switch__empty { padding: 16px 10px; text-align: center; font-size: 13px; color: var(--ink-soft); }

@media (max-width: 680px) {
  .lang-switch__btn { padding: 8px; }
  .lang-switch__code { display: none; }
  .lang-switch__menu { right: -8px; width: min(300px, 90vw); }
}

.nav {
  display: flex; justify-content: flex-end; gap: 24px;
}
.nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft); padding: 4px 0; position: relative; white-space: nowrap;
  transition: color .2s;
}
.nav a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px;
  background: var(--red); transition: right .28s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.nav a.active { color: var(--red); }
.nav a.active::after { right: 0; background: var(--red); }

/* ---------- "Product" nav dropdown (GruppoNueva Porcelain Tiles / SinteredStone) ---------- */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop__trigger { display: flex; align-items: center; gap: 5px; }
.nav-drop__chev { transition: transform .2s ease; flex-shrink: 0; }
.nav-drop:hover .nav-drop__chev { transform: rotate(180deg); }
.nav-drop__menu {
  position: absolute; left: 0; top: calc(100% + 14px); z-index: 50; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 30px 60px -24px rgba(28,26,22,.4);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-drop__menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-drop:hover .nav-drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop__menu a {
  display: block; padding: 11px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: none;
  color: var(--ink-soft); white-space: nowrap; transition: background .15s ease, color .15s ease;
}
.nav-drop__menu a::after { display: none; }
.nav-drop__menu a:hover { background: var(--bg-deep); color: var(--ink); }
/* the dropdown panel is always white, so its links must never inherit the header's
   white-text-over-hero treatment (.header:not(.scrolled) .nav a) or they'd vanish */
.header:not(.scrolled) .nav-drop__menu a { color: var(--ink-soft); }
.header:not(.scrolled) .nav-drop__menu a:hover { color: var(--ink); }

/* ---------- mobile nav toggle + drawer ---------- */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 38px; height: 38px; margin-left: 14px; padding: 0; border: none; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none; }
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(12,10,6,.55); opacity: 0; transition: opacity .35s ease; }
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(340px, 84vw);
  background: #fff; box-shadow: 18px 0 50px -20px rgba(20,16,10,.4);
  display: flex; flex-direction: column; padding: 20px 26px 30px;
  transform: translateX(-100%); transition: transform .38s cubic-bezier(.2,.7,.2,1);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-nav__head .logo { height: 38px; }
.mobile-nav__close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  font-size: 20px; line-height: 1; color: var(--ink); cursor: pointer; display: grid; place-items: center;
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; overflow-y: auto; }
.mobile-nav__links a {
  font-family: var(--serif); font-size: 20px; color: var(--ink); padding: 13px 2px;
  border-bottom: 1px solid var(--line-soft); transition: color .2s;
}
.mobile-nav__links a.active, .mobile-nav__links a:hover { color: var(--red); }
.mobile-nav__sublinks { display: flex; flex-direction: column; margin: -2px 0 2px; }
.mobile-nav__links a.mobile-nav__sublink {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--ink-soft); padding: 10px 2px 10px 18px;
}
.mobile-nav__links a.mobile-nav__sublink:hover { color: var(--red); }
.mobile-nav__cta { margin-top: 24px; justify-content: center; width: 100%; }
body.mobile-nav-open { overflow: hidden; }

/* ---------- hero slider ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  background: #15140f;
}
.hero__slides { position:absolute; inset:0; }
.slide {
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity 1.1s ease;
  display:flex; align-items:center; justify-content:center; text-align:center;
}
.slide.is-active { opacity:1; visibility:visible; z-index:2; }
.slide__img {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  transform: scale(1.04);
}
.slide.is-active .slide__img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.13); } }
.slide__video {
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; object-fit:cover;
}
.slide::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(12,10,6,.42) 0%, rgba(12,10,6,.18) 34%, rgba(12,10,6,.58) 100%);
}
/* video slides stay clean - no text overlay competing with the footage */
.slide[data-video="true"] h1,
.slide[data-video="true"] .slide__est,
.slide[data-video="true"] .slide__sub,
.slide[data-video="true"] .slide__cta { display: none; }
.slide__inner {
  position:relative; z-index:3; max-width: 900px; padding: 0 24px;
  color:#fff;
  transform: translateY(20px); opacity:0;
  transition: opacity 1s .3s ease, transform 1s .3s cubic-bezier(.2,.7,.2,1);
}
.slide.is-active .slide__inner { transform:none; opacity:1; }
.slide__est {
  font-size: 12px; font-weight:600; letter-spacing:.32em; text-transform:uppercase;
  color: rgba(255,255,255,.92); margin-bottom: 22px;
  display:inline-flex; align-items:center; gap:12px;
}
.slide__est::before, .slide__est::after { content:""; width:26px; height:1px; background: rgba(255,255,255,.55); }
.slide h1 {
  font-family: var(--serif); font-weight:500;
  font-size: clamp(54px, 9.5vw, 132px); line-height:.94; letter-spacing:-.02em;
  margin:0; color:#fff; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.slide h1 em { font-style:italic; font-weight:500; color:#F2C6B8; }
.slide__sub {
  font-family: var(--serif); font-style:italic;
  font-size: clamp(18px, 2.3vw, 27px); color: rgba(255,255,255,.9);
  margin: 22px 0 36px; text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.slide__cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.hero__nav {
  position:absolute; bottom: 36px; left:50%; transform:translateX(-50%);
  z-index:6; display:flex; gap:10px; align-items:center;
}
.hero__nav-btn {
  padding: 12px 26px; border-radius: 100px; cursor:pointer;
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  font-size: 12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.hero__nav-btn:hover { background: rgba(255,255,255,.2); color:#fff; }
.hero__nav-btn.on { background: var(--red); border-color: var(--red); color:#fff; }
@media (prefers-reduced-motion: reduce) {
  .slide.is-active .slide__img { animation:none; }
  .slide__inner { transition:none; transform:none; opacity:1; }
}
@media (max-width:680px){
  .hero__nav { bottom: 22px; gap:8px; width: calc(100% - 32px); justify-content:center; flex-wrap:wrap; }
  .hero__nav-btn { padding: 10px 18px; font-size: 11px; }
}

/* ---------- generic section ---------- */
.section { padding: 110px 0; }
.section--paper { background: var(--bg-paper); }
.section--deep { background: var(--bg-deep); }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  margin-bottom: 48px;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; gap: 16px; }

/* ---------- collections ---------- */
.collections .section__head { margin-bottom: 54px; }
.coll-bleed { max-width: 1480px; margin: 0 auto; padding: 0 24px; }
.coll-carousel .carousel__track { gap: 15px; }
.coll-card {
  position: relative; border-radius: 18px; overflow: hidden;
  min-height: 560px; display: flex; align-items: flex-end;
  padding: 28px 26px 30px;
  cursor: pointer;
  flex: 0 0 calc((100% - 2 * 15px) / 3);
  scroll-snap-align: start;
  box-shadow: 0 20px 50px -30px rgba(60,50,35,.5);
}
.coll-card .ph { position:absolute; inset:0; z-index:0; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.coll-card:hover .ph { transform: scale(1.05); }
.coll-card::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(20,16,10,0) 42%, rgba(20,16,10,.78) 100%);
}
.coll-card__label {
  position: relative; z-index: 2; display:flex; align-items:center; justify-content:space-between;
  width: 100%; color: #fff;
}
.coll-card__label h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0; letter-spacing: -.01em; }
.coll-card__label .meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .92; display:block; margin-bottom: 6px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.coll-card__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  display:grid; place-items:center; flex-shrink:0;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .25s, transform .25s;
}
.coll-card:hover .coll-card__arrow { background: var(--red); transform: rotate(-45deg); border-color: transparent; }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center;
}
.about-figure {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -34px rgba(60,50,35,.55);
}
.about-figure .ph { position:absolute; inset:0; }
#footprint .about-figure { aspect-ratio: 4/3; }
#footprint .about-figure .tag { padding: 24px 28px; }
#footprint .about-figure .tag b { font-size: 30px; }
.about-figure .tag {
  position:absolute; left:20px; bottom:20px; z-index:2;
  background: rgba(251,249,244,.92); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 14px 18px;
}
.about-figure .tag b { font-family: var(--serif); font-size: 22px; display:block; color: var(--ink); line-height:1; }
.about-figure .tag span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.about-copy h2 { margin: 18px 0 22px; }
.about-copy h2 em { color: var(--clay); font-style: italic; }
.about-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin: 0 0 18px; max-width: 52ch; }
.about-list { list-style:none; padding:0; margin: 26px 0 30px; display:grid; gap: 14px; }
.about-list li { display:flex; gap: 14px; align-items:flex-start; font-size: 15px; color: var(--ink); }
.about-list li::before {
  content:""; width:7px; height:7px; border-radius:50%; background: var(--red);
  margin-top: 8px; flex-shrink:0;
}
.about-cta { display:flex; gap: 14px; flex-wrap: wrap; }

/* ---------- partners ---------- */
.partners {
  padding-top: 30px; padding-bottom: 88px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.partners::before {
  content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 280px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(192,57,43,.10), transparent);
  pointer-events: none;
}
.partners__title { font-size: clamp(26px, 2.8vw, 34px); margin-top: 10px; }
.partners-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 22px; margin-top: 52px; position: relative;
}
.partner-card {
  position: relative; overflow: hidden; min-width: 0; height: 168px;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 16px 34px -24px rgba(28,26,22,.28);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -24px rgba(28,26,22,.36);
  border-color: var(--clay);
}
.partner-card__logo {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 24px 6px;
}
.partner-card__logo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120px 70px at 50% 35%, rgba(192,57,43,.08), transparent 72%);
}
.partner-card img {
  position: relative; z-index: 1;
  height: 62px; width: auto; max-width: 82%; object-fit: contain;
  transition: transform .3s;
}
.partner-card:hover img { transform: scale(1.08); }
.partner-card__name {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-align: center;
  color: var(--red-deep); background: var(--bg-deep);
  padding: 12px 10px; border-top: 1px solid var(--line);
  transition: background .3s ease, color .3s ease;
}
.partner-card:hover .partner-card__name { background: var(--red); color: #fff; }

/* ---------- stats ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 56px 30px; text-align:center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b {
  font-family: var(--serif); font-weight: 500; font-size: clamp(46px, 6vw, 76px);
  line-height: 1; color: var(--ink); letter-spacing: -.02em; display:block;
}
.stat b .plus {
  color: var(--red); font-weight: 600;
  font-size: 0.42em; display: inline-block; position: relative; top: -0.6em; margin-left: 4px;
}
.stat span { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; display:block; }

/* ---------- product worlds ---------- */
.worlds-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.worlds-grid--4 { grid-template-columns: repeat(4,1fr); }
.worlds-grid--5 { grid-template-columns: repeat(5,1fr); }
.world {
  position: relative; border-radius: 18px; overflow:hidden; min-height: 380px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 26px;
  cursor:pointer; box-shadow: 0 20px 50px -32px rgba(60,50,35,.5);
}
.world .ph, .world .ph-img { position:absolute; inset:0; z-index:0; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.world:hover .ph, .world:hover .ph-img { transform: scale(1.06); }
.world::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(20,16,10,.14) 0%, rgba(20,16,10,0) 38%, rgba(20,16,10,.66) 100%); }
.world__name { position:relative; z-index:2; color:#fff; font-family: var(--serif); font-size: 26px; font-weight:500; letter-spacing:.01em; max-width: calc(100% - 68px); }
.world__name b { font-weight: 700; }
.world__arrow {
  position:absolute; left:26px; bottom:26px; z-index:3;
  width:42px; height:42px; border-radius:50%; display:none; place-items:center;
  background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3);
}
.world__top { position:relative; z-index:2; display:flex; justify-content:flex-end; }
.world__chip {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color:#fff;
  background: rgba(20,16,10,.42); border:1px solid rgba(255,255,255,.22);
  padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}
.world__logo-badge {
  position: absolute; z-index: 3; right: 18px; bottom: 18px;
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.4); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.world:hover .world__logo-badge { transform: scale(1.08); }
.world__logo-badge img { width: 76%; height: 76%; object-fit: contain; }

/* ---------- manufacturing unit logo cards ---------- */
.unit-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 24px 28px; text-align: center; min-height: 280px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 20px 50px -32px rgba(60,50,35,.35);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.unit-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(60,50,35,.45); border-color: var(--clay); }
.unit-card__chip {
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-deep); background: var(--bg-deep); padding: 6px 14px; border-radius: 100px;
}
.unit-card__logo { flex: 1; display: flex; align-items: center; justify-content: center; padding: 22px 10px; width: 100%; }
.unit-card__logo img { max-height: 110px; max-width: 85%; object-fit: contain; }
.unit-card__name { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--ink); letter-spacing: -.005em; }

/* ---------- projects ---------- */
.projects-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.project {
  position:relative; border-radius:18px; overflow:hidden; min-height: 420px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 26px; cursor:pointer;
  box-shadow: 0 20px 50px -32px rgba(60,50,35,.5);
}
.project .ph { position:absolute; inset:0; z-index:0; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project:hover .ph { transform: scale(1.06); }
.project::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(20,16,10,0) 40%, rgba(20,16,10,.72) 100%); }
.project__body { position:relative; z-index:2; color:#fff; }
.project__body .loc { font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: rgba(255,255,255,.78); }
.project__body h3 { font-family: var(--serif); font-weight:500; font-size: 24px; margin: 8px 0 8px; letter-spacing:-.01em; }
.project__body p { font-size: 13.5px; color: rgba(255,255,255,.8); margin:0; max-width: 34ch; line-height:1.55; }

/* ---------- news ---------- */
.news-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.news-grid--blog { grid-template-columns: repeat(3,1fr); gap: 36px 30px; }
.news-grid--blog .news-card__img { aspect-ratio: 4/3.4; margin-bottom: 22px; }
.news-card__excerpt { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; }
.news-card { cursor:pointer; }
.news-card__img {
  border-radius: 14px; overflow:hidden; aspect-ratio: 4/3; margin-bottom: 18px; position:relative;
  box-shadow: 0 16px 36px -26px rgba(60,50,35,.5);
}
.news-card__img .ph, .news-card__img .ph-img { position:absolute; inset:0; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.news-card:hover .news-card__img .ph, .news-card:hover .news-card__img .ph-img { transform: scale(1.07); }
.news-card .date { font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); }
.news-card h3 {
  font-family: var(--serif); font-weight:500; font-size: 21px; line-height:1.25;
  margin: 8px 0 14px; letter-spacing:-.01em; color: var(--ink);
  transition: color .2s;
}
.news-card:hover h3 { color: var(--red); }
.news-card .more { font-size: 12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--ink); display:inline-flex; gap:7px; align-items:center; }
.news-card .more .ar { color: var(--red); transition: transform .2s; }
.news-card:hover .more .ar { transform: translate(2px,-2px); }

/* ---------- CTA dark band ---------- */
.cta {
  position: relative; overflow:hidden;
  background: var(--bg-ink); color: #fff;
  padding: 130px 0;
}
.cta__glow {
  position:absolute; right:-8%; top:50%; transform:translateY(-50%);
  font-family: var(--serif); font-weight:700; font-size: 22vw; line-height:1;
  color: rgba(255,255,255,.04); z-index:0; pointer-events:none; white-space:nowrap;
}
.cta__inner { position:relative; z-index:2; max-width: 760px; }
.cta .eyebrow { color: #C0392B; }
.cta .eyebrow::before { background:#C0392B; }
.cta h2 {
  font-family: var(--serif); font-weight:500; font-size: clamp(42px, 6vw, 80px);
  line-height:1.02; letter-spacing:-.02em; margin: 22px 0 22px;
}
.cta h2 em { font-style:italic; color: #E89684; }
.cta p { color: rgba(255,255,255,.66); font-size: 17px; max-width: 48ch; margin: 0 0 36px; }
.cta__cta { display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- footer ---------- */
.footer { background: var(--bg-paper); color: var(--ink); padding: 0; }
.footer__top {
  display:flex; align-items:center; justify-content:space-between; gap: 30px;
  padding: 64px 0; border-bottom: 1px solid var(--line-soft);
}
.footer__top h3 { font-family: var(--serif); font-weight:500; font-size: clamp(24px, 3vw, 34px); margin:0; letter-spacing:-.01em; }
.footer__top h3 em { font-style:italic; color: var(--clay); }

/* dark band: links, contact & manufacturing */
.footer__dark { background: var(--bg-ink); color: rgba(255,255,255,.82); }
.footer__cols {
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 70px 0 60px;
}
.footer .brand-lg { margin-bottom: 20px; }
.footer .brand-lg img { height: 38px; width: auto; display: block; }
.footer__about { color: rgba(255,255,255,.55); font-size: 16px; line-height:1.75; max-width: 30ch; margin-bottom: 26px; font-weight: 400; }
.socials { display:flex; gap:10px; }
.socials a {
  width: 36px; height: 36px; border-radius:50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display:grid; place-items:center; transition: all .2s;
}
.socials a:hover { background: var(--red); color:#fff; }
.footer__col h4 { font-size: 10.5px; letter-spacing:.18em; text-transform:uppercase; color: rgba(255,255,255,.4); margin: 0 0 24px; font-weight:600; }
.footer__col ul { list-style:none; padding:0; margin:0; display:grid; gap: 15px; }
.footer__col ul a {
  font-size: 16px; color: rgba(255,255,255,.68); transition: color .2s, padding-left .2s;
  display: inline-flex; align-items:center; gap: 9px;
}
.footer__col ul a::before { content:""; width:5px; height:5px; border-radius:50%; background: var(--red); flex-shrink:0; }
.footer__col ul a:hover { color: #fff; padding-left: 4px; }
.footer__col .row { display:flex; gap: 12px; align-items:flex-start; font-size: 16px; color: rgba(255,255,255,.62); margin-bottom: 20px; line-height:1.55; }
.footer__col .row:last-child { margin-bottom: 0; }
.footer__col .row__icon {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.08); color: #C0392B;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top: 1px;
}
.footer__col .row b { color: #fff; display:block; font-weight:600; font-size:10.5px; letter-spacing:.09em; text-transform:uppercase; margin-bottom:5px; }
.footer__bottom {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display:flex; gap: 22px; }

/* ---------- material / image placeholders ---------- */
.ph { background-size: cover; background-position: center; }
.ph-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
/* warm interior render */
.ph--interior { background:
  radial-gradient(80% 60% at 50% 12%, #fff 0%, rgba(255,255,255,0) 60%),
  linear-gradient(180deg, #EDE7DC 0%, #DDD3C2 55%, #CDBfA8 100%); }
.ph--interior-cool { background:
  radial-gradient(70% 60% at 60% 16%, #fbfbfb 0%, rgba(255,255,255,0) 60%),
  linear-gradient(180deg, #E7E8EA 0%, #D2D4D8 60%, #BCC0C6 100%); }
.ph--interior-warm { background:
  radial-gradient(70% 60% at 40% 14%, #fff 0%, rgba(255,255,255,0) 60%),
  linear-gradient(180deg, #F0E6D6 0%, #E0CFB4 60%, #CDB591 100%); }
/* marble */
.ph--marble { background:
  linear-gradient(118deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 30%),
  conic-gradient(from 200deg at 30% 40%, #EDEDEC, #F6F5F2, #E3E2DF, #F4F3F0, #E8E7E3),
  linear-gradient(180deg,#F4F3F0,#E7E6E2); }
/* wood */
.ph--wood { background:
  repeating-linear-gradient(96deg, rgba(120,78,40,.10) 0 2px, rgba(120,78,40,0) 2px 9px),
  linear-gradient(180deg, #B9854E 0%, #9A6736 60%, #82542A 100%); }
/* stone */
.ph--stone { background:
  radial-gradient(60% 50% at 30% 30%, rgba(255,255,255,.25), rgba(255,255,255,0) 60%),
  linear-gradient(160deg, #9C968C 0%, #807A6F 55%, #6B665C 100%); }
/* worker / portrait */
.ph--portrait { background:
  radial-gradient(60% 50% at 50% 30%, #EFE9DD 0%, rgba(239,233,221,0) 60%),
  linear-gradient(160deg, #D9CEBC 0%, #C2B299 50%, #A79173 100%); }

/* tiny placeholder caption */
.ph-cap {
  position:absolute; z-index:3; right:14px; top:14px;
  font-size: 9.5px; letter-spacing:.14em; text-transform:uppercase;
  color: rgba(255,255,255,.7); background: rgba(0,0,0,.18);
  padding: 5px 9px; border-radius: 100px; backdrop-filter: blur(3px);
}
.ph-cap.dark { color: var(--muted); background: rgba(0,0,0,.05); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  .hero__scroll .line { animation: none; }
}

/* ---------- inner page banner ---------- */
.page-banner {
  position: relative; overflow: hidden;
  padding: 150px 0 66px;
  background: var(--bg-ink); color: #fff;
}
.page-banner .ph { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.page-banner .ph-img { opacity: .85; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,10,6,.5) 0%, rgba(12,10,6,.68) 55%, rgba(12,10,6,.92) 100%);
}
.page-banner::before {
  content: ""; position: absolute; top: -120px; left: 8%; z-index: 1;
  width: 420px; height: 260px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(192,57,43,.24), transparent);
  pointer-events: none;
}
.page-banner__inner { position: relative; z-index: 2; max-width: 760px; }
.page-banner__inner--center { max-width: 100%; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.page-banner__inner--center h1 { max-width: 820px; }
.page-banner .eyebrow { color: #C0392B; }
.page-banner .eyebrow::before { background: #C0392B; }
.page-banner__crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 22px;
}
.page-banner__crumbs a { color: rgba(255,255,255,.7); transition: color .2s; }
.page-banner__crumbs a:hover { color: #fff; }
.page-banner h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6vw, 78px); line-height: 1.02; letter-spacing: -.02em;
  margin: 18px 0 20px;
}
.page-banner h1 em { font-style: italic; color: #F2C6B8; }
.page-banner p { color: rgba(255,255,255,.72); font-size: 16.5px; max-width: 56ch; margin: 0; line-height: 1.65; }

/* ---------- timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 46px 26px; perspective: 1600px; }
.timeline-item {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 22px 26px; margin-top: 16px;
  box-shadow: 0 20px 44px -30px rgba(60,50,35,.4);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.timeline-item:hover { transform: translateY(-8px); box-shadow: 0 30px 58px -26px rgba(60,50,35,.5); border-color: var(--clay); }
.timeline-item::before {
  content: ""; position: absolute; top: -13px; left: 22px; z-index: 2;
  width: 13px; height: 13px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px #fff;
}
.timeline-item::after {
  content: ""; position: absolute; top: -13px; left: 22px; z-index: 1;
  width: 13px; height: 13px; border-radius: 50%; background: rgba(192,57,43,.6);
  animation: timelinePulse 2.6s ease-out infinite;
}
.timeline-item.d1::after { animation-delay: .3s; }
.timeline-item.d2::after { animation-delay: .6s; }
.timeline-item.d3::after { animation-delay: .9s; }
@keyframes timelinePulse {
  0% { transform: scale(1); opacity: .7; }
  80%, 100% { transform: scale(2.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .timeline-item::after { animation: none; } }
.timeline-item .year { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 12px; }
.timeline-item h4 { font-size: 14px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.01em; }
.timeline-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ---------- value / feature cards ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px 30px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(60,50,35,.4); border-color: var(--clay); }
.value-card__icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--bg-deep);
  display: grid; place-items: center; margin-bottom: 24px; color: var(--red);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.value-card:hover .value-card__icon { transform: rotate(-8deg) scale(1.08); background: var(--red); color: #fff; }
.value-card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 0 0 10px; letter-spacing: -.01em; }
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ---------- Legal pages (Privacy Policy / Terms of Use) ---------- */
.legal-page-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); margin: 34px 0 10px; }
.legal-page-body h3:first-child { margin-top: 0; }
.legal-page-body p { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 4px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 26px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--clay); box-shadow: 0 20px 44px -30px rgba(60,50,35,.4); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { font-size: 24px; line-height: 1; color: var(--red); transition: transform .3s ease; flex-shrink: 0; font-weight: 300; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.faq-item ul { margin: 0 0 18px; padding-left: 20px; }
.faq-item li { font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }

/* ---------- virtual tour banner ---------- */
.tour-banner {
  position: relative; display: block; border-radius: 26px; overflow: hidden;
  aspect-ratio: 21/8; min-height: 260px;
  background: #1c1c1c; box-shadow: 0 34px 64px -34px rgba(60,50,35,.55);
}
.tour-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.tour-banner:hover img { transform: scale(1.04); }
.tour-banner__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,8,.4) 0%, rgba(15,12,8,0) 26%, rgba(15,12,8,0) 74%, rgba(15,12,8,.12) 100%); }

.tour-banner__toolbar {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 18px 10px; box-shadow: 0 12px 30px -14px rgba(20,16,10,.35);
}
.tour-banner__tool {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 9px 10px; border-radius: 14px; cursor: default; white-space: nowrap;
  font-size: 9.5px; font-weight: 600; letter-spacing: .03em; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.tour-banner__tool.is-active { color: var(--red); }
.tour-banner:hover .tour-banner__tool:hover { background: var(--bg-deep); color: var(--ink); }
@media (max-width: 780px) { .tour-banner__toolbar { display: none; } }

.tour-banner__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.tour-banner__badge { position: relative; width: 132px; height: 132px; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.tour-banner:hover .tour-banner__badge { transform: scale(1.06); }
.tour-banner__badge-ticks {
  position: absolute; inset: -16px; border-radius: 50%;
  background: repeating-conic-gradient(rgba(255,255,255,.85) 0deg 2.2deg, transparent 2.2deg 10deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  animation: tourBadgeSpin 30s linear infinite;
}
@keyframes tourBadgeSpin { to { transform: rotate(360deg); } }
.tour-banner__badge-dot {
  position: absolute; left: 50%; top: -21px; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(192,57,43,.25);
}
.tour-banner__badge-inner {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--ink); box-shadow: 0 10px 34px -10px rgba(20,16,10,.35);
  animation: tourBadgePulse 2.6s ease-in-out infinite;
}
.tour-banner__badge-rotate { color: var(--ink-soft); }
.tour-banner__badge-deg { font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .01em; }
@keyframes tourBadgePulse {
  0%, 100% { box-shadow: 0 10px 34px -10px rgba(20,16,10,.35), 0 0 0 8px rgba(255,255,255,.3); }
  50% { box-shadow: 0 10px 34px -10px rgba(20,16,10,.35), 0 0 0 15px rgba(255,255,255,.08); }
}
.tour-banner__drag-icon {
  position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  color: var(--ink-soft); background: #fff; border-radius: 50%; padding: 5px;
  box-shadow: 0 4px 14px -4px rgba(20,16,10,.3);
}
.tour-banner__drag-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
@media (max-width: 680px) {
  .tour-banner__badge { width: 96px; height: 96px; }
  .tour-banner__badge-ticks { inset: -12px; }
  .tour-banner__badge-deg { font-size: 17px; }
  .tour-banner__badge-rotate { width: 26px; height: 12px; }
}

.tour-banner__bottombar {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.tour-banner__autorotate {
  display: flex; align-items: center; gap: 10px;
  background: rgba(20,16,10,.55); backdrop-filter: blur(6px); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  padding: 10px 10px 10px 16px; border-radius: 100px;
}
.tour-banner__switch { display: inline-flex; align-items: center; width: 34px; height: 19px; border-radius: 100px; background: var(--red); padding: 2px; }
.tour-banner__switch span { width: 15px; height: 15px; border-radius: 50%; background: #fff; margin-left: auto; }
.tour-banner__controls {
  display: flex; align-items: center; gap: 2px;
  background: rgba(20,16,10,.55); backdrop-filter: blur(6px);
  padding: 6px; border-radius: 100px;
}
.tour-banner__ctrl {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; color: #fff; font-size: 15px;
  transition: background .2s;
}
.tour-banner:hover .tour-banner__ctrl:hover { background: rgba(255,255,255,.15); }
.tour-banner__ctrl--vr { width: 44px; }
.tour-banner__divider { width: 1px; height: 20px; background: rgba(255,255,255,.25); margin: 0 4px; }
@media (max-width: 680px) { .tour-banner__bottombar { left: 14px; right: 14px; bottom: 14px; } .tour-banner__autorotate span:first-child, .tour-banner__ctrl--vr { display: none; } }

.tour-features { margin-top: 34px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.tour-feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.tour-feature__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-deep); color: var(--red);
  display: grid; place-items: center; flex-shrink: 0;
}
.tour-feature__icon--hd { font-size: 12px; font-weight: 800; letter-spacing: .02em; border-radius: 10px; }
.tour-feature b { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.tour-feature span { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 900px) { .tour-features { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .tour-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .tour-banner { aspect-ratio: 4/5; } .tour-banner__body { padding: 0 26px; max-width: 100%; } }

/* ---------- technology banner ---------- */
.tech-banner { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 21/8; min-height: 260px; margin: 0 0 46px; box-shadow: 0 34px 64px -34px rgba(60,50,35,.55); }
.tech-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tech-banner::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,8,5,.65) 0%, rgba(10,8,5,.15) 45%, rgba(10,8,5,0) 70%); }
.tech-banner__caption { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 46px 32px; max-width: 560px; }
.tech-banner__caption .eyebrow { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.tech-banner__caption .eyebrow::before { background: #fff; opacity: 0.9; }
.tech-banner__caption p { color: #fff; font-size: 18px; line-height: 1.6; margin: 0; font-family: var(--serif); text-shadow: 0 2px 12px rgba(0,0,0,.55); }
@media (max-width: 680px) { .tech-banner { aspect-ratio: 4/5; } .tech-banner__caption { padding: 0 26px; max-width: 100%; } }

#units { padding-bottom: 60px; }
#quality { padding-top: 60px; }
#quality .section__head { margin-bottom: 40px; }

/* ---------- certifications carousel ---------- */
.cert-carousel-bleed { max-width: 1200px; margin: 0 auto; }
.cert-carousel .carousel__track { justify-content: center; }
.cert-slide {
  flex: 0 0 300px; background: var(--bg-deep); border: 1px solid var(--line); border-radius: 20px;
  text-align: center; scroll-snap-align: center; overflow: hidden;
  box-shadow: 0 26px 54px -36px rgba(60,50,35,.4);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.cert-slide:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -30px rgba(60,50,35,.5); border-color: var(--clay); }
.cert-slide__body { padding: 22px 26px 28px; }
.cert-slide h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 0 0 8px; letter-spacing: -.01em; color: var(--ink); }
.cert-slide p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.cert-slide__code {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--red); background: rgba(192,57,43,.08); border-radius: 100px; padding: 5px 14px; margin-bottom: 10px;
}

/* certificate document graphic */
.cert-slide__doc { width: 100%; max-width: 200px; aspect-ratio: 3/4; margin: 24px auto 24px; padding: 12px; background: #fff; border-radius: 10px; box-shadow: 0 14px 30px -20px rgba(60,50,35,.45); }
.cert-slide__doc--photo { max-width: none; margin: 0; padding: 0; overflow: hidden; border-radius: 0; }
.cert-slide__doc--photo img { display: block; width: 100%; height: auto; border-radius: 0; }
.cert-slide__doc-border {
  height: 100%; border: 1.5px solid var(--red); border-radius: 4px; outline: 1px solid var(--line); outline-offset: -6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 14px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.cert-slide:hover .cert-slide__doc-border { transform: scale(1.03); }
.cert-slide__doc-kicker { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cert-slide__doc-title { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.cert-slide__doc-seal { width: 50px; height: 50px; color: var(--red); margin: 4px 0; }
.cert-slide__doc-seal svg { width: 100%; height: 100%; }
.cert-slide__doc-code { font-size: 10.5px; letter-spacing: .06em; color: var(--ink-soft); border-top: 1px solid var(--line-soft); padding-top: 8px; margin-top: 6px; width: 100%; }
.cert-slide__download {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: #fff; border: 1.5px solid var(--ink); border-radius: 100px; padding: 10px 18px;
}
@media (max-width: 680px) { .cert-slide { flex: 0 0 82%; } }

/* ---------- specs table ---------- */
.specs-table-wrap { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.specs-table th { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--bg-paper); }
.specs-table td { font-size: 14.5px; color: var(--ink-soft); }
.specs-table td:first-child { color: var(--ink); font-weight: 600; }
.specs-table tr:last-child td { border-bottom: none; }

/* ---------- finish swatches ---------- */
.finish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.finish-card { position: relative; border-radius: 16px; overflow: hidden; min-height: 170px; display: flex; align-items: flex-end; padding: 20px; }
.finish-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%); }
.finish-card span { position: relative; z-index: 2; color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px; overflow: hidden; }
.process-step__num {
  font-family: var(--serif); font-weight: 700; font-size: 44px; color: var(--bg-deep);
  position: absolute; top: 10px; right: 18px; z-index: 0; line-height: 1;
}
.process-step h4 { position: relative; z-index: 1; font-size: 15px; font-weight: 600; margin: 30px 0 10px; letter-spacing: -.005em; }
.process-step p { position: relative; z-index: 1; font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- download cards ---------- */
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.download-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; }
.download-card__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--bg-deep); display: grid; place-items: center; color: var(--red); }
.download-card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0; letter-spacing: -.01em; }
.download-card p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; flex: 1; }
.download-card .btn { align-self: flex-start; }

/* ---------- blog tags ---------- */
.blog-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.blog-tags a {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .2s;
}
.blog-tags a:hover, .blog-tags a.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.news-card .tag-chip {
  display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}

/* ---------- global presence world map (Google Maps) ---------- */
.world-map {
  position: relative; width: 100%; aspect-ratio: 16/9; max-width: 1100px; margin: 0 auto;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 30px 60px -34px rgba(28,26,22,.35); background: var(--bg-deep);
}
@media (max-width: 680px) { .world-map { aspect-ratio: 4/5; } }

.world-map__notice {
  display: grid; place-items: center; height: 100%; margin: 0; padding: 24px;
  color: #fff; font: 500 14px/1.5 var(--sans, sans-serif); text-align: center;
}
.world-map__notice code { padding: 2px 5px; border-radius: 4px; background: rgba(255,255,255,.12); }
.gg-map-country-tooltip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px;
  min-height: 38px; padding: 7px 11px; border: 1px solid rgba(28,26,22,.12); border-radius: 9px;
  background: #fff; box-shadow: 0 10px 24px rgba(28,26,22,.20); color: var(--ink);
  font: 600 13px/1.2 var(--sans, sans-serif); white-space: nowrap; pointer-events: none;
  transform: translate(-50%, calc(-100% - 42px));
}
.gg-map-country-tooltip::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; width: 11px; height: 11px;
  background: #fff; border-right: 1px solid rgba(28,26,22,.12); border-bottom: 1px solid rgba(28,26,22,.12);
  transform: translateX(-50%) rotate(45deg);
}
.gg-map-country-tooltip img {
  position: relative; z-index: 1; width: 22px; height: 15px; object-fit: cover; border-radius: 2px;
  box-shadow: 0 1px 2px rgba(28,26,22,.18);
}
.gg-map-country-tooltip span { position: relative; z-index: 1; }

/* ---------- catalogue download enquiry ---------- */
.catalogue-modal { position: fixed; z-index: 1005; inset: 0; display: none; padding: 24px; overflow-y: auto; }
.catalogue-modal.is-open { display: grid; place-items: center; }
.catalogue-modal__backdrop { position: fixed; inset: 0; background: rgba(15,12,8,.64); backdrop-filter: blur(4px); }
.catalogue-modal__panel { position: relative; z-index: 1; width: min(100%, 620px); margin: auto; padding: 36px; border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(15,12,8,.35); }
.catalogue-modal__panel h2 { margin: 10px 0 8px; font: 600 clamp(31px,4vw,46px)/.95 var(--serif); }
.catalogue-modal__panel > p { margin: 0 0 24px; color: var(--ink-soft); }
.catalogue-modal__close { position: absolute; top: 15px; right: 16px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #f3efe7; color: var(--ink); font-size: 25px; line-height: 1; cursor: pointer; }
.catalogue-modal form { display: grid; gap: 15px; }
.catalogue-modal label { display: grid; gap: 7px; color: var(--ink); font: 600 12px/1.2 var(--sans); letter-spacing: .04em; text-transform: uppercase; }
.catalogue-modal label span { color: var(--ink-soft); font-weight: 500; text-transform: none; letter-spacing: 0; }
.catalogue-modal input { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font: 400 15px var(--sans); outline: 0; }
.catalogue-modal input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.catalogue-modal__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.catalogue-modal .iti { width: 100%; }
.catalogue-modal .iti__country-container { height: 46px; }
.catalogue-modal .iti input { padding-left: 94px !important; }
.catalogue-modal__error { margin: 0; padding: 10px 12px; border-radius: 8px; background: #fff2f0; color: #9b2d22; font: 500 13px/1.4 var(--sans); }
.catalogue-modal__note { margin: 0; color: var(--ink-soft); font: 400 11px/1.5 var(--sans); }
.catalogue-modal button[type="submit"] { justify-self: start; }
.catalogue-modal__success { text-align: center; padding: 20px 0 6px; }
.catalogue-modal__success svg { color: var(--red); margin-bottom: 16px; }
.catalogue-modal__success h3 { margin: 0 0 10px; font: 600 clamp(24px,3vw,30px)/1 var(--serif); color: var(--ink); }
.catalogue-modal__success p { margin: 0 0 24px; color: var(--ink-soft); font: 400 15px/1.5 var(--sans); max-width: 380px; margin-left: auto; margin-right: auto; }

/* ---------- catalogue modal: country searchable dropdown ---------- */
.country-select { position: relative; }
.country-select__btn {
  width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); font: 400 16px var(--sans); text-transform: none; letter-spacing: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; text-align: left;
}
.country-select__btn span { color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.country-select__btn.has-value span { color: var(--ink); font-weight: 500; }
.country-select.is-open .country-select__btn { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.country-select__chev { transition: transform .2s ease; flex-shrink: 0; color: var(--ink-soft); }
.country-select.is-open .country-select__chev { transform: rotate(180deg); }
.country-select__menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 20px 50px -20px rgba(15,12,8,.35);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.country-select.is-open .country-select__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.country-select__search { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); margin-bottom: 8px; color: var(--ink-soft); }
.country-select__search:focus-within { border-color: var(--ink-soft); background: #fff; }
.country-select__search svg { flex-shrink: 0; }
.country-select__search input { border: 0; outline: 0; background: transparent; width: 100%; min-height: auto; padding: 0; font: 400 15px var(--sans); color: var(--ink); text-transform: none; }
.country-select__list { max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: 1px; }
.country-select__list::-webkit-scrollbar { width: 6px; }
.country-select__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.country-select__item {
  display: block; width: 100%; text-align: left; padding: 9px 11px; border: 0; border-radius: 7px; background: transparent;
  font: 400 14px var(--sans); color: var(--ink); text-transform: none; letter-spacing: 0; cursor: pointer;
}
.country-select__item:hover { background: var(--bg-deep); }
.country-select__item.is-active { background: rgba(192,57,43,.08); color: var(--red); font-weight: 600; }
.country-select__empty { padding: 16px 10px; text-align: center; font-size: 13px; color: var(--ink-soft); }

@media (max-width: 580px) { .catalogue-modal { padding: 14px; } .catalogue-modal__panel { padding: 28px 20px; } .catalogue-modal__form-row { grid-template-columns: 1fr; gap: 15px; } }

/* ---------- generic carousel ---------- */
.carousel { position: relative; }
.carousel__viewport {
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track { display: flex; gap: 24px; }
.carousel__track--single { justify-content: center; }
.carousel__track > * { scroll-snap-align: start; flex-shrink: 0; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; cursor: pointer; color: var(--ink); font-size: 20px;
  box-shadow: 0 12px 30px -14px rgba(30,25,15,.4); transition: background .2s, color .2s;
}
.carousel__arrow:hover { background: var(--ink); color: #fff; }
.carousel__arrow.prev { left: -24px; }
.carousel__arrow.next { right: -24px; }
.carousel__dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.carousel__dots button { width: 30px; height: 4px; border-radius: 4px; border: none; background: var(--line); cursor: pointer; padding: 0; transition: background .2s; }
.carousel__dots button.on { background: var(--red); }

/* projects carousel — main slide full-size with a 10% peek of neighbours on both sides.
   Cloned slides sit before the first and after the last real slide so a peek image is
   always visible on both sides, even at the ends (loop-style, no blank spacer). */
.projects-bleed { max-width: 1480px; margin: 0 auto; padding: 0 15px; }
.project-slide {
  position: relative; flex: 0 0 80%; min-height: 580px;
  display: flex; align-items: flex-end; overflow: hidden;
  border-radius: 22px; scroll-snap-align: center;
}
.project-slide--clone { scroll-snap-align: none; pointer-events: none; }
.project-slide img.ph-img { position: absolute; inset: 0; }
.project-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,10,.05) 0%, rgba(20,16,10,0) 40%, rgba(20,16,10,.88) 100%);
}
.project-slide__body { position: relative; z-index: 2; padding: 54px; color: #fff; max-width: 640px; }
.project-slide__body .loc {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.82); margin-bottom: 16px; display: block;
}
.project-slide__body h3 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px);
  margin: 0 0 16px; letter-spacing: -.01em;
}
.project-slide__body p { font-size: 16px; color: rgba(255,255,255,.85); margin: 0; max-width: 50ch; line-height: 1.65; }

/* news carousel — three cards per view */
.news-carousel .news-card { flex: 0 0 calc((100% - 2 * 24px) / 3); }
.news-carousel .news-card__img { aspect-ratio: 4/3.4; }

/* ---------- collections showcase ---------- */
.showcase-bleed { max-width: 1480px; margin: 0 auto; padding: 0 15px; }
.showcase-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.showcase-grid .showcase-card { flex: 0 0 calc(33.333% - 10px); }
/* desktop stays a static grid; the carousel arrows/dots are mobile-only */
.showcase-carousel .carousel__arrow, .showcase-carousel .carousel__dots { display: none; }
.showcase-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 34px;
  cursor: pointer; box-shadow: 0 20px 50px -32px rgba(60,50,35,.5);
}
.showcase-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.showcase-card:hover img { transform: scale(1.06); }
.showcase-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,10,.05) 0%, rgba(20,16,10,0) 32%, rgba(20,16,10,.84) 100%);
}
.showcase-card__tag {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: rgba(20,16,10,.55); backdrop-filter: blur(3px);
  padding: 7px 14px; border-radius: 100px;
}
.showcase-card__body { position: relative; z-index: 2; color: #fff; }
.showcase-card__body h3 {
  font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0 0 10px;
  letter-spacing: -.01em; text-transform: uppercase;
}
.showcase-card__body p { font-size: 14.5px; color: rgba(255,255,255,.8); margin: 0; max-width: 38ch; line-height: 1.6; }
.showcase-card__desc {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}

/* ---------- partner badges ---------- */
.partner-row { display: flex; flex-wrap: wrap; gap: 16px; }
.partner-badge {
  padding: 20px 32px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); background: #fff;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.contact-info-list { display: grid; gap: 26px; margin: 30px 0 34px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-deep);
  display: grid; place-items: center; color: var(--red); flex-shrink: 0;
}
.contact-info-item h4 { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; font-weight: 600; }
.contact-info-item p { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.5; }
.contact-form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 42px; }
.contact-form h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin: 0 0 4px; }
.contact-form .lead { font-size: 14px; margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--bg-paper);
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; border: none; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 0; }
.form-success {
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px; font-size: 14px; color: var(--ink); margin: 0 0 6px;
}
.contact-map-full { line-height: 0; border-top: 1px solid var(--line); }
.contact-map-full iframe { display: block; width: 100%; height: 480px; border: 0; }

/* ---------- shop banner ---------- */
.shop-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.shop-banner__img { position: relative; overflow: hidden; }
.shop-banner__img .ph { position: absolute; inset: 0; }
.shop-banner__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(21,20,15,.9) 100%);
}
.shop-banner__copy {
  position: relative; overflow: hidden;
  background: var(--bg-ink); color: #fff; display: flex; flex-direction: column;
  justify-content: center; padding: 50px var(--gut);
}
.shop-banner__copy::before {
  content: ""; position: absolute; top: -110px; right: -60px; z-index: 0;
  width: 380px; height: 260px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(192,57,43,.22), transparent);
  pointer-events: none;
}
.shop-banner__copy > * { position: relative; z-index: 1; }
.shop-banner__copy h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); margin: 0 0 14px; letter-spacing: -.01em; }
.shop-banner__copy h1 em { font-style: italic; color: #F2C6B8; }
.shop-banner__copy p { color: rgba(255,255,255,.68); font-size: 15px; max-width: 46ch; margin: 0; line-height: 1.65; }
.shop-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--bg-paper); border-bottom: 1px solid var(--line);
}
.shop-features__item {
  text-align: center; padding: 26px 20px; border-left: 1px solid var(--line);
}
.shop-features__item:first-child { border-left: none; }
.shop-features__item b { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.shop-features__item span { font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--red); }

/* ---------- shop layout ---------- */
.wrap--wide { max-width: 1520px; }
.shop-layout { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }

/* filter sidebar */
.filter-panel {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  position: sticky; top: 110px; max-height: calc(100vh - 130px); overflow-y: auto;
}
.filter-panel::-webkit-scrollbar { width: 6px; }
.filter-panel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.filter-panel::-webkit-scrollbar-track { background: transparent; }
.filter-panel__head {
  position: sticky; top: 0; z-index: 2;
  background: var(--bg-ink); color: #fff; padding: 18px 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.filter-group { padding: 22px 22px; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: none; }
.filter-group h5 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--clay); margin: 0 0 16px; display: flex; align-items: center; gap: 10px;
}
.filter-group h5::before { content:""; width: 16px; height: 1px; background: var(--clay); }
.filter-radio { display: grid; gap: 10px; }
.filter-radio label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); cursor: pointer; }
.filter-radio input { accent-color: var(--ink); width: 15px; height: 15px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pills--collection { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filter-pills--collection .filter-pill { text-align: center; }
.filter-pill {
  font-size: 12px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink-soft); background: var(--bg-paper); cursor: pointer; transition: all .2s;
}
.filter-pill:hover { border-color: var(--ink-soft); }
.filter-pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-pills--collapsible .filter-pill:nth-child(n+11) { display: none; }
.filter-pills--collapsible.is-expanded .filter-pill:nth-child(n+11) { display: block; }
.filter-toggle {
  display: none; align-items: center; justify-content: center; gap: 6px;
  margin: 12px auto 0; width: fit-content; background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: 100px; cursor: pointer; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft); padding: 7px 16px; transition: all .2s;
}
.filter-toggle:hover { border-color: var(--ink-soft); color: var(--ink); }
.filter-toggle__icon { flex-shrink: 0; transition: transform .25s ease; }
.filter-toggle.is-expanded .filter-toggle__icon { transform: rotate(180deg); }
.filter-clear {
  width: 100%; text-align: center; padding: 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--red); background: var(--bg-paper);
  border: none; border-top: 1px solid var(--line-soft); cursor: pointer;
}
.filter-clear:hover { background: var(--bg-deep); }

/* product grid */
.shop-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.shop-meta span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; transition: opacity .15s ease; }
.product-grid.is-loading { opacity: .45; pointer-events: none; }
.product-card {
  position: relative;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover { box-shadow: 0 24px 50px -30px rgba(30,25,15,.35); transform: translateY(-3px); }
.product-card__media {
  display: block; position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(100deg, var(--bg-deep) 30%, var(--line-soft) 50%, var(--bg-deep) 70%);
  background-size: 200% 100%;
  animation: product-card-shimmer 1.6s ease-in-out infinite;
}
.product-card__media.is-loaded { animation: none; background: var(--bg-deep); }
.product-card__face { position: absolute; inset: 0; }
.product-card__face .ph { position: absolute; inset: 0; }
.product-card__face--before .ph-img { opacity: 0; transition: opacity .35s ease; }
.product-card__media.is-loaded .product-card__face--before .ph-img { opacity: 1; }
@keyframes product-card-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.product-card__face--after { opacity: 0; transition: opacity .45s ease; }
.product-card__face--after .ph-img { transform: scale(1.05); transition: transform .6s ease; }
.product-card:hover .product-card__face--after { opacity: 1; }
.product-card:hover .product-card__face--after .ph-img { transform: scale(1); }
.product-card__face--after::after { content:""; position:absolute; inset:0; background: rgba(12,10,6,.32); }
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--bg-ink); color: #fff; padding: 6px 12px; border-radius: 4px;
}
.product-card__view {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.6); padding: 11px 22px;
  opacity: 0; transition: opacity .3s ease .05s; white-space: nowrap;
}
.product-card:hover .product-card__view { opacity: 1; }
.product-card__hint {
  position: absolute; z-index: 3; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: rgba(12,10,6,.55); backdrop-filter: blur(3px);
  padding: 7px 12px; border-radius: 100px;
  transition: opacity .25s ease; animation: hintPulse 2.4s ease-in-out infinite;
}
.product-card__hint svg { flex-shrink: 0; }
.product-card:hover .product-card__hint { opacity: 0; animation: none; }
@keyframes hintPulse {
  0%, 100% { opacity: .85; }
  50% { opacity: .45; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card__hint { animation: none; }
}
.product-card__name {
  font-family: var(--serif); font-weight: 500; font-size: 23px; text-align: center;
  letter-spacing: .01em; padding: 14px 18px 10px; margin: 0; color: var(--ink);
}
.product-card__cta {
  display: block; text-align: center; background: var(--bg-ink); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; padding: 16px;
  transition: background .2s;
}
.product-card__cta:hover { background: var(--red); }
.product-card.is-hidden { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  :root { --gut: 28px; }
  .header__bar { gap: 24px; }
  .header__navgroup { gap: 22px; }
  .nav { gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
  .coll-card { flex: 0 0 calc((100% - 15px) / 2); }
  .coll-bleed { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-figure { aspect-ratio: 16/11; }
  .worlds-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
  .worlds-grid--4, .worlds-grid--5 { grid-template-columns: 1fr 1fr; }
  .showcase-grid .showcase-card { flex: 0 0 calc(50% - 8px); min-height: 400px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .values-grid, .download-grid, .finish-grid, .process-grid, .country-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-banner { padding: 130px 0 56px; }
  .shop-layout { grid-template-columns: 280px 1fr; gap: 28px; }
  .news-carousel .news-card { flex: 0 0 calc((100% - 24px) / 2); }
  .project-slide { min-height: 460px; }
  .project-slide__body { padding: 36px; }
  .partner-card { height: 150px; }
  .partners-row { gap: 16px; }
}
@media (max-width: 680px) {
  :root { --gut: 18px; }
  .nav { display:none; }
  .header__navgroup { gap: 10px; }
  .header__right .btn--solid { display: none; }
  .nav-toggle { display: flex; }
  .worlds-grid, .worlds-grid--4, .worlds-grid--5, .projects-grid, .news-grid { grid-template-columns: 1fr; }
  .coll-card { flex: 0 0 85%; }
  .coll-bleed { padding: 0 14px; }
  /* SinteredStone showcase becomes a swipeable carousel on mobile instead of a stacked grid */
  .showcase-grid {
    display: flex; flex-wrap: nowrap; justify-content: flex-start; grid-template-columns: unset; gap: 15px;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
  }
  .showcase-grid::-webkit-scrollbar { display: none; }
  .showcase-grid .showcase-card { flex: 0 0 85%; scroll-snap-align: start; min-height: 560px; }
  .showcase-carousel .carousel__arrow { display: grid; }
  .showcase-carousel .carousel__dots { display: flex; }
  .showcase-bleed { padding: 0 12px; }
  .projects-bleed { padding: 0 12px; }
  .project-slide { flex: 0 0 88%; }
  .news-carousel .news-card { flex: 0 0 88%; }
  .project-slide { min-height: 380px; }
  .carousel__arrow { width: 42px; height: 42px; }
  .carousel__arrow.prev { left: -14px; }
  .carousel__arrow.next { right: -14px; }
  .footer__top { flex-direction:column; align-items:flex-start; }
  .footer__cols { grid-template-columns: 1fr; gap: 44px; padding: 50px 0 40px; }
  .footer__about { max-width: none; }
  .footer__bottom { flex-direction:column; text-align:center; gap:16px; }
  .partners-row { grid-template-columns: repeat(2, 1fr); }
  .partner-card { height: 140px; }
  .section { padding: 76px 0; }
  .timeline, .values-grid, .download-grid, .finish-grid, .process-grid, .country-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-banner { padding: 118px 0 48px; }
  .shop-banner { grid-template-columns: 1fr; }
  .shop-banner__img { min-height: 220px; }
  .shop-features { grid-template-columns: 1fr; }
  .shop-features__item { border-left: none; border-top: 1px solid var(--line); }
  .shop-features__item:first-child { border-top: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-map-full iframe { height: 320px; }

  /* filter becomes a slide-up modal on mobile */
  .filter-panel {
    position: fixed; inset: auto 0 0 0; top: 10vh; z-index: 200; border-radius: 18px 18px 0 0;
    max-height: none; transform: translateY(100%); transition: transform .3s cubic-bezier(.2,.7,.2,1); overflow-y: auto;
  }
  .filter-panel.is-open { transform: translateY(0); }
  .filter-panel__close { display: flex !important; }
  .filter-backdrop {
    display: none; position: fixed; inset: 0; z-index: 190; background: rgba(12,10,6,.5);
  }
  .filter-backdrop.is-open { display: block; }
  .filter-mobile-trigger {
    display: flex; position: fixed; right: 18px; bottom: 22px; z-index: 150; align-items: center; gap: 8px;
    background: var(--ink); color: #fff; border: 0; border-radius: 100px; padding: 13px 20px 13px 16px;
    font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
  }
}
@media (min-width: 681px) {
  .filter-mobile-trigger, .filter-backdrop, .filter-panel__close { display: none !important; }
}

/* ===========================================================
   3D INTERACTION LAYER — tilt, flip cards, elegant galleries
   =========================================================== */

/* ---------- pointer-driven 3D tilt (JS sets the transform) ---------- */
[data-tilt] {
  transform: perspective(1000px);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  will-change: transform;
}
[data-tilt].is-tilting { transition: transform .08s linear; }
@media (prefers-reduced-motion: reduce) {
  [data-tilt] { transition: none !important; transform: none !important; }
}
@media (hover: none) { [data-tilt] { transform: none !important; } }

/* ---------- vision / mission / goals cards ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1800px; }
.vm-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 42px 34px 38px; overflow: hidden;
  box-shadow: 0 26px 54px -36px rgba(60,50,35,.4);
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.vm-card:hover { box-shadow: 0 34px 64px -30px rgba(60,50,35,.55); }
.vm-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 2; }
.vm-card__bignum {
  position: absolute; right: 4px; top: -14px; z-index: 0;
  font-family: var(--serif); font-weight: 700; font-size: 118px; line-height: 1;
  color: var(--bg-deep); pointer-events: none; user-select: none; transition: color .3s ease;
}
.vm-card__top { position: relative; z-index: 1; margin-bottom: 28px; }
.vm-card__icon {
  position: relative; width: 58px; height: 58px; border-radius: 50%; background: var(--bg-deep);
  display: grid; place-items: center; color: var(--red); flex-shrink: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.vm-card__icon::after {
  content: ""; position: absolute; inset: -12px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(192,57,43,.18), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.vm-card:hover .vm-card__icon { transform: rotate(-10deg) scale(1.1); background: var(--red); color: #fff; }
.vm-card:hover .vm-card__icon::after { opacity: 1; }
.vm-card h3 { position: relative; z-index: 1; font-family: var(--serif); font-weight: 500; font-size: 25px; margin: 0 0 16px; letter-spacing: -.01em; }
.vm-card p { position: relative; z-index: 1; font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); margin: 0; }
.vm-card p + p { margin-top: 12px; }
.vm-card--dark { background: var(--bg-ink); border-color: var(--bg-ink); }
.vm-card--dark::before { background: #C0392B; }
.vm-card--dark .vm-card__bignum { color: rgba(255,255,255,.06); }
.vm-card--dark .vm-card__icon { background: rgba(255,255,255,.1); color: #C0392B; }
.vm-card--dark:hover .vm-card__icon { background: var(--red); color: #fff; }
.vm-card--dark h3 { color: #fff; }
.vm-card--dark p { color: rgba(255,255,255,.72); }
@media (max-width: 1080px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .vm-grid { grid-template-columns: 1fr; } }

/* ---------- catalogue grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 24px; }
.cat-card__media {
  position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 18px 40px -28px rgba(60,50,35,.5); background: var(--bg-deep);
  border: 0; padding: 0; width: 100%; text-align: left; font: inherit; cursor: pointer; appearance: none;
}
.cat-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__view {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  background: rgba(12,10,6,.45); opacity: 0; transition: opacity .3s ease; text-align: center; padding: 20px;
  color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.cat-card:hover .cat-card__view { opacity: 1; }
.cat-card__name { font-family: var(--serif); font-weight: 500; font-size: 17px; margin: 0; letter-spacing: -.005em; color: var(--ink); transition: color .2s; line-height: 1.3; }
.cat-card:hover .cat-card__name { color: var(--red); }

/* ---------- catalogue card: direct "view PDF" variant ---------- */
.cat-card--pdf {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 14px 32px -26px rgba(60,50,35,.4);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.cat-card--pdf:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -20px rgba(60,50,35,.32); border-color: var(--faint); }
.cat-card--pdf .cat-card__media { aspect-ratio: 3/2; border-radius: 0; box-shadow: none; }
.cat-card--pdf .cat-card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,10,6,0) 55%, rgba(12,10,6,.55) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.cat-card--pdf:hover .cat-card__media::after { opacity: 1; }
.cat-card--pdf .cat-card__body { padding: 18px 20px 22px; border-top: 1px solid var(--line-soft); text-align: center; }
.cat-card--pdf .tag-chip {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin: 0 0 8px !important;
}
.cat-card--pdf .cat-card__name { display: block; width: 100%; text-align: center; }
.cat-card__actions { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.cat-card__action {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; flex: 1 1 0;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; padding: 10px 14px; border-radius: 100px; border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.cat-card__action--view { background: var(--red); color: #fff; }
.cat-card__action--view:hover { background: var(--red-deep); transform: translateY(-1px); }
.cat-card__action--download { background: transparent; color: var(--ink); border-color: var(--line); }
.cat-card__action--download:hover { border-color: var(--ink); background: var(--bg-deep); transform: translateY(-1px); }
.cat-card__action svg { flex-shrink: 0; }
@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .blog-tags {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch;
    margin-left: -20px; margin-right: -20px; padding: 0 20px 6px;
  }
  .blog-tags a { white-space: nowrap; flex-shrink: 0; }
  .blog-tags::-webkit-scrollbar { height: 4px; }
  .blog-tags::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
  .cat-card__actions { flex-direction: column; align-items: stretch; }
  .cat-card__action { flex: 0 0 auto; width: 100%; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .cat-card--pdf .tag-chip, .cat-card--pdf .cat-card__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ---------- blog / article detail ---------- */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article__meta { display: flex; gap: 18px; align-items: center; margin-bottom: 26px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.article__figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16/10; margin: 8px 0 44px; box-shadow: 0 34px 64px -34px rgba(60,50,35,.55); }
.article__body p { font-size: 17px; line-height: 1.9; color: var(--ink-soft); margin: 0 0 26px; }
.article__body h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; margin: 44px 0 16px; letter-spacing: -.01em; color: var(--ink); }
.article__quote { border-left: 3px solid var(--red); padding: 4px 0 4px 28px; margin: 40px 0; font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.5; color: var(--ink); }
.article__share { display: flex; align-items: center; gap: 14px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.article__share span { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 680px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.pd-gallery__main { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 34px 70px -34px rgba(60,50,35,.55); background: var(--bg-deep); }
.pd-gallery__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; }
.pd-gallery__main img.is-active { opacity: 1; }
.pd-gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-gallery__thumbs button { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; position: relative; background: var(--bg-deep); }
.pd-gallery__thumbs button.is-active { border-color: var(--red); }
.pd-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-copy h1 {
  position: relative; font-family: var(--serif); font-weight: 600;
  font-size: clamp(38px, 4.4vw, 60px); margin: 18px 0 24px; letter-spacing: -.01em; color: var(--ink);
  padding-bottom: 16px;
}
.pd-copy h1::after { content: ""; position: absolute; left: 0; bottom: 0; width: 72px; height: 4px; border-radius: 4px; background: var(--red); }
.pd-cta-row { display: flex; gap: 14px; margin: 28px 0 36px; flex-wrap: wrap; }
.pd-meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 26px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.pd-meta-grid div b { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.pd-meta-grid div span { font-size: 14.5px; color: var(--ink); text-transform: capitalize; }
@media (max-width: 1080px) { .pd-grid { grid-template-columns: 1fr; gap: 36px; } }

/* product detail — centered peek carousel (same technique as the home "Our Projects" carousel) */
.pd-carousel-bleed { max-width: 1480px; margin: 0 auto; padding: 0 15px; }
.pd-slide {
  position: relative; flex: 0 0 80%; aspect-ratio: 16/9; min-height: 380px;
  border-radius: 22px; overflow: hidden; scroll-snap-align: center;
  box-shadow: 0 34px 70px -34px rgba(60,50,35,.55); background: var(--bg-deep);
}
.pd-slide--clone { scroll-snap-align: none; pointer-events: none; }
.pd-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,16,10,0) 62%, rgba(20,16,10,.55) 100%); }
.pd-slide__tag {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(20,16,10,.5); backdrop-filter: blur(3px);
  padding: 8px 16px; border-radius: 100px;
}
@media (max-width: 680px) { .pd-slide { flex: 0 0 88%; min-height: 280px; } .pd-carousel-bleed { padding: 0 12px; } }

/* product detail — elegant key-spec tiles */
.pd-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.pd-spec-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.pd-spec-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -28px rgba(60,50,35,.4); border-color: var(--clay); }
.pd-spec-card__icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-deep); color: var(--red);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.pd-spec-card:hover .pd-spec-card__icon { transform: rotate(-8deg) scale(1.08); background: var(--red); color: #fff; }
.pd-spec-card b { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.pd-spec-card span { font-size: 14.5px; color: var(--ink); text-transform: capitalize; line-height: 1.4; }
.pd-spec-card--wide { grid-column: 1 / -1; }
.pd-spec-card--wide span { text-transform: none; }
@media (max-width: 1080px) { .pd-specs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .pd-specs-grid { grid-template-columns: 1fr; } }

/* product detail — available sizes */
.pd-sizes-grid { display: flex; gap: 26px; flex-wrap: wrap; }
.pd-size-card {
  flex: 0 0 260px; border-radius: 18px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 20px 44px -28px rgba(60,50,35,.4);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.pd-size-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -26px rgba(60,50,35,.48); }
.pd-size-card__img { position: relative; aspect-ratio: 4/3.4; overflow: hidden; }
.pd-size-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pd-size-card:hover .pd-size-card__img img { transform: scale(1.08); }
.pd-size-card__label { padding: 18px 14px; text-align: center; font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -.005em; color: var(--ink); border-top: 1px solid var(--line-soft); }
.pd-size-card--clickable { cursor: pointer; }
@media (max-width: 680px) { .pd-size-card { flex: 0 0 calc((100% - 26px) / 2); } }

/* product detail — size gallery lightbox */
.size-lightbox {
  position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center;
  background: rgba(12,10,6,.92);
}
.size-lightbox.is-open { display: flex; }
.size-lightbox__img { max-width: 86vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.size-lightbox__close {
  position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; font-size: 22px;
  cursor: pointer; width: 44px; height: 44px; border-radius: 50%; transition: background .2s ease;
}
.size-lightbox__close:hover { background: rgba(255,255,255,.12); }
.size-lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); color: #fff;
  border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 26px; cursor: pointer; transition: background .2s ease;
}
.size-lightbox__arrow:hover { background: rgba(255,255,255,.22); }
.size-lightbox__arrow.prev { left: 26px; }
.size-lightbox__arrow.next { right: 26px; }
.size-lightbox__count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .06em; }

/* ---------- collection detail ---------- */
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.size-card__media {
  position: relative; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 44px -30px rgba(60,50,35,.4); background: var(--bg-deep);
}
.size-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.size-card:hover .size-card__media img { transform: scale(1.06); }
.size-card__label { display: block; margin-top: 14px; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.size-card__label span { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.size-card--clickable { cursor: pointer; }
@media (max-width: 1080px) { .size-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .size-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
