/* =========================================================
   Ambica Aluminium — main stylesheet (mobile first)

   Base rules are for phones. Larger screens add to them:
     @media (min-width: 600px)   tablets / large phones in landscape
     @media (min-width: 960px)   laptops & desktops
     @media (min-width: 1200px)  wide desktops
   Hover effects live inside @media (hover: hover) so they never
   "stick" after a tap on touch screens.
   ========================================================= */

:root {
  --ink: #0E1216;
  --graphite: #171D23;
  --graphite-2: #212932;
  --steel: #5B6570;
  --steel-2: #8A939C;
  --alu: #C9CED4;
  --mist: #ECEEF0;
  --paper: #F6F6F3;
  --white: #FFFFFF;
  --accent: #E0612A;
  --accent-dark: #C14F1D;
  --accent-soft: #FBE7DC;
  --wa: #25D366;

  --alu-fill: #DDE2E7;
  --hatch: #6F7983;
  --wall: #E9E6E0;
  --frame-line: #BFC5CB;

  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;

  --radius: 6px;
  --radius-lg: 14px;
  --container: 1240px;
  --gutter: 16px;
  --header-h: 64px;
  --bar-h: 64px;                                   /* bottom action bar (phones) */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --section-y: 64px;
  --shadow: 0 1px 2px rgba(14,18,22,.06), 0 8px 24px rgba(14,18,22,.08);
  --shadow-lg: 0 18px 44px rgba(14,18,22,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 600px) {
  :root { --gutter: 24px; --section-y: 88px; }
}
@media (min-width: 960px) {
  :root { --header-h: 76px; --bar-h: 0px; --section-y: 120px; --shadow-lg: 0 24px 60px rgba(14,18,22,.18); }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
html.menu-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--bar-h) + var(--safe-bottom)); /* room for the bottom bar */
}
@media (min-width: 960px) {
  body { font-size: 16.5px; line-height: 1.65; padding-bottom: 0; }
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; color: var(--ink); }
p { margin: 0 0 1em; }
svg { flex-shrink: 0; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow--light { color: #F2A07A; }

.section-title {
  font-size: clamp(28px, 7.4vw, 50px);
  font-weight: 800; font-stretch: 88%; letter-spacing: -.015em;
  margin-bottom: 16px; text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent); }

.section { padding: var(--section-y) 0; }
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.section-head .section-title { margin-bottom: 0; }
.section-head__note { color: var(--steel); margin: 0; font-size: 15px; }
.section-head--center { align-items: center; text-align: center; }
@media (min-width: 960px) {
  .eyebrow { font-size: 12.5px; margin-bottom: 14px; }
  .eyebrow::before { width: 26px; }
  .section-title { font-size: clamp(34px, 4.2vw, 50px); margin-bottom: 18px; }
  .section-head { flex-direction: row; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
  .section-head--center { flex-direction: column; align-items: center; }
  .section-head__note { max-width: 420px; font-size: inherit; }
}

.dark { background: var(--ink); color: #C3CAD1; }
.dark .section-title, .dark h3 { color: var(--white); }
.dark .section-head__note { color: #9AA4AE; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border-radius: var(--radius); border: 1.5px solid transparent;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease), box-shadow .25s;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn svg.wa { fill: currentColor; stroke: none; }
.btn--lg { min-height: 52px; padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--glass { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline { border-color: rgba(14,18,22,.2); color: var(--ink); background: transparent; }
.btn--outline-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
@media (hover: hover) {
  .btn:hover svg:not(.wa) { transform: translateX(3px); }
  .btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224,97,42,.35); }
  .btn--glass:hover { background: rgba(255,255,255,.2); }
  .btn--dark:hover { background: var(--graphite-2); transform: translateY(-2px); }
  .btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
  .btn--outline-light:hover { border-color: #fff; background: #fff; color: var(--ink); }
}

.link-arrow { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 18px; font-weight: 600; color: var(--accent); }
.link-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.link-arrow--light { color: #F2A07A; }
@media (hover: hover) { .link-arrow:hover svg { transform: translateX(4px); } }

/* ---------- Top bar (desktop only; phones get the bottom bar) ---------- */
.topbar { display: none; background: var(--ink); color: #A9B2BB; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar__right { display: flex; gap: 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; fill: var(--accent); }
@media (hover: hover) { a.topbar__item:hover { color: #fff; } }
@media (min-width: 960px) { .topbar { display: block; } }
@media (min-width: 960px) and (max-width: 1099px) { .topbar__hours { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper); /* solid on phones: blur is costly to repaint while scrolling */
  border-bottom: 1px solid rgba(14,18,22,.07);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(14,18,22,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
@media (min-width: 960px) {
  .header { background: rgba(246,246,243,.92); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); }
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { width: 40px; height: 40px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong { font-family: var(--font-display); font-weight: 900; font-stretch: 115%; font-size: 19px; letter-spacing: .04em; color: var(--ink); }
.logo__text small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .38em; color: var(--steel); margin-top: 5px; }
.logo--light .logo__text strong { color: #fff; }
.logo--light .logo__text small { color: #8E98A2; }
@media (min-width: 960px) {
  .logo { gap: 12px; }
  .logo img { width: 44px; height: 44px; }
  .logo__text strong { font-size: 21px; }
  .logo__text small { font-size: 10.5px; }
}

/* Menu button (phones) */
.menu-toggle { display: grid; place-content: center; gap: 5px; width: 48px; height: 48px; margin-right: -10px; background: none; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation: full-height slide-in panel on phones, inline row on desktop */
.nav {
  position: fixed; top: var(--header-h); right: 0; bottom: 0; left: 0; z-index: 49;
  display: flex; flex-direction: column;
  padding: 8px var(--gutter) calc(24px + var(--safe-bottom));
  background: var(--paper); overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%); visibility: hidden;
  transition: transform .38s var(--ease), visibility 0s linear .38s;
}
.nav.is-open { transform: none; visibility: visible; transition: transform .38s var(--ease), visibility 0s; }
.nav a:not(.btn):not(.nav__contact) {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink);
  border-bottom: 1px solid rgba(14,18,22,.08);
}
.nav a:not(.btn):not(.nav__contact)::after {
  content: ""; width: 10px; height: 10px; border-top: 2px solid var(--steel-2); border-right: 2px solid var(--steel-2); transform: rotate(45deg);
}
.nav a.is-current { color: var(--accent) !important; }
.nav__cta { margin-top: 24px; min-height: 52px; font-size: 16px; }
.nav__extra { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.nav__contact {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px;
  border: 1.5px solid rgba(14,18,22,.15); border-radius: var(--radius); font-weight: 600; font-size: 14.5px; color: var(--ink);
}
.nav__contact svg { width: 18px; height: 18px; fill: var(--ink); }
.nav__contact--wa svg { fill: var(--wa); }
.nav__meta { grid-column: 1 / -1; margin: 14px 0 0; font-size: 14px; color: var(--steel); text-align: center; }

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .nav {
    position: static; flex-direction: row; align-items: center; gap: 30px; padding: 0;
    background: none; overflow: visible; transform: none; visibility: visible; transition: none;
  }
  .nav a:not(.btn):not(.nav__contact) {
    display: inline-block; min-height: 0; padding: 6px 0; position: relative;
    font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--graphite); border: 0;
  }
  .nav a:not(.btn):not(.nav__contact)::after {
    position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border: 0;
    background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease);
  }
  .nav a.is-current { color: var(--graphite) !important; }
  .nav a:not(.btn):hover::after, .nav a.is-current::after { transform: scaleX(1); transform-origin: left; }
  .nav__cta { margin: 0 0 0 6px; min-height: 48px; font-size: 15px; }
  .nav__extra { display: none; }
}
@media (min-width: 960px) and (max-width: 1099px) { .nav { gap: 20px; } }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  display: flex; align-items: flex-end;
  min-height: calc(100svh - var(--header-h) - var(--bar-h));
  padding: 48px 0 88px;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: var(--ink); }
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { opacity: 0; transition: opacity 1.2s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,18,22,.45) 0%, rgba(14,18,22,.72) 45%, rgba(14,18,22,.94) 100%); }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 100%); mask-image: linear-gradient(180deg, transparent 0%, #000 100%);
}
.hero__content { position: relative; }
.hero__title {
  color: #fff; font-size: clamp(38px, 11.5vw, 96px); font-weight: 900; font-stretch: 82%;
  letter-spacing: -.02em; line-height: .98; margin-bottom: 18px; text-transform: uppercase;
}
.hero__title-accent {
  background: linear-gradient(100deg, #F3F5F7 0%, #AEB6BE 40%, #F3F5F7 60%, #9EA7B0 100%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 6s linear infinite;
}
@keyframes sheen { to { background-position: -200% 0; } }
.hero__lead { font-size: 16.5px; color: #D2D8DE; margin-bottom: 26px; max-width: 600px; }
.hero__actions { display: grid; gap: 10px; margin-bottom: 0; }
.hero__tags { display: none; list-style: none; padding: 0; margin: 0; }
.hero__tags li {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; color: #D9DEE3; background: rgba(14,18,22,.3);
}
.hero__videotoggle {
  position: absolute; right: var(--gutter); top: 16px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,18,22,.5); border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center;
}
.hero__videotoggle svg { width: 16px; height: 16px; fill: currentColor; }
.hero__videotoggle .i-play { display: none; }
.hero__videotoggle.is-paused .i-play { display: block; }
.hero__videotoggle.is-paused .i-pause { display: none; }
.hero__scroll { display: none; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12) translate(-1%, -1%); } }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (min-width: 600px) {
  .hero { align-items: center; padding: 72px 0 110px; }
  .hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
  .hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .hero__lead { font-size: 18px; margin-bottom: 34px; }
}
@media (min-width: 960px) {
  .hero { min-height: max(620px, calc(100svh - var(--header-h) - 40px)); padding: 80px 0 120px; }
  .hero__poster { animation: kenburns 24s ease-in-out infinite alternate; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(14,18,22,.92) 0%, rgba(14,18,22,.72) 42%, rgba(14,18,22,.25) 100%),
      linear-gradient(0deg, rgba(14,18,22,.7) 0%, transparent 40%);
  }
  .hero__grid { background-size: 64px 64px; -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 70%); mask-image: linear-gradient(90deg, #000 0%, transparent 70%); }
  .hero__title { margin-bottom: 26px; }
  .hero__lead { font-size: 19.5px; margin-bottom: 36px; }
  .hero__actions { margin-bottom: 44px; }
  .hero__videotoggle { top: auto; right: 24px; bottom: 96px; }
  .hero__scroll {
    display: block; position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%);
    width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px;
  }
  .hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: scrolldot 1.8s infinite; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding: 48px 0 84px; background: var(--ink); }
.page-hero--short { padding-bottom: 72px; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,18,22,.7) 0%, rgba(14,18,22,.9) 100%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 48px 48px;
}
.page-hero__title {
  color: #fff; font-size: clamp(34px, 9.5vw, 76px); font-weight: 900; font-stretch: 82%;
  letter-spacing: -.02em; line-height: 1; text-transform: uppercase; margin: 14px 0 14px; max-width: 900px; text-wrap: balance;
}
.page-hero__lead { font-size: 16px; color: #D2D8DE; max-width: 620px; margin: 0; }
.page-hero__lead em { font-style: normal; color: #F2A07A; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #9AA4AE; }
.breadcrumb a { color: #D2D8DE; padding: 6px 0; }
.breadcrumb [aria-current] { color: #F2A07A; }
@media (hover: hover) { .breadcrumb a:hover { color: #fff; } }
@media (min-width: 600px) {
  .page-hero { padding: 88px 0 120px; }
  .page-hero--short { padding-bottom: 96px; }
  .page-hero__lead { font-size: 18px; }
}
@media (min-width: 960px) {
  .page-hero { padding: 140px 0 150px; }
  .page-hero--short { padding-bottom: 110px; }
  .page-hero__bg { animation: kenburns 30s ease-in-out infinite alternate; }
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(14,18,22,.94) 0%, rgba(14,18,22,.75) 50%, rgba(14,18,22,.4) 100%),
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 64px 64px,
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 64px 64px;
  }
  .page-hero__title { margin: 18px 0; }
  .page-hero__lead { font-size: 19px; }
  .breadcrumb { font-size: 12.5px; }
}

/* ---------- Category bar (sticky chips under the header) ---------- */
.jumpbar {
  position: sticky; top: var(--header-h); z-index: 40; background: #fff;
  border-bottom: 1px solid rgba(14,18,22,.08);
}
.jumpbar__inner {
  position: relative; display: flex; gap: 4px; overflow-x: auto; overscroll-behavior-x: contain;
  padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  /* soft fade at the edges hints that the row scrolls */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 28px), transparent 100%);
}
.jumpbar__inner::-webkit-scrollbar { display: none; }
.jumpbar a {
  position: relative; z-index: 1; flex-shrink: 0; display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 16px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--graphite);
  transition: color .3s var(--ease);
}
.jumpbar a.is-current { color: #fff; }
.jumpbar__pill {
  position: absolute; left: 0; top: 0; z-index: 0; border-radius: 100px; background: var(--ink);
  opacity: 0; pointer-events: none; will-change: transform, width;
  transition: transform .4s var(--ease), width .4s var(--ease), opacity .2s;
}
@media (hover: hover) { .jumpbar a:not(.is-current):hover { color: var(--accent); } }
@media (min-width: 960px) {
  .jumpbar__inner { padding-top: 12px; padding-bottom: 12px; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -48px; }
.stats__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat { position: relative; padding: 22px 16px; }
.stat:nth-child(odd) { border-right: 1px solid var(--mist); }
.stat:nth-child(-n+2) { border-bottom: 1px solid var(--mist); }
.stat::before { content: ""; position: absolute; left: 16px; top: 0; width: 30px; height: 3px; background: var(--accent); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 900; font-stretch: 85%; font-size: clamp(32px, 9vw, 54px); line-height: 1; color: var(--ink); }
.stat__label { display: block; margin-top: 8px; color: var(--steel); font-size: 13px; line-height: 1.4; }
@media (min-width: 960px) {
  .stats { margin-top: -64px; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 34px 28px; border-bottom: 0 !important; border-right: 1px solid var(--mist); }
  .stat:last-child { border-right: 0; }
  .stat::before { left: 28px; width: 34px; }
  .stat__num { font-size: clamp(38px, 4vw, 54px); }
  .stat__label { margin-top: 10px; font-size: 14.5px; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 20px 0; margin-top: 40px; border-block: 1px solid rgba(14,18,22,.08); }
.marquee__track { display: flex; align-items: center; gap: 20px; width: max-content; animation: marquee 40s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 800; font-stretch: 90%; text-transform: uppercase; font-size: 22px; color: var(--ink); white-space: nowrap; letter-spacing: -.01em; }
.marquee span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1.2px var(--steel-2); }
.marquee i { width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (min-width: 960px) {
  .marquee { padding: 30px 0; margin-top: 56px; }
  .marquee__track { gap: 28px; animation-duration: 45s; }
  .marquee span { font-size: clamp(24px, 2.6vw, 34px); }
  .marquee i { width: 12px; height: 12px; }
}

/* ---------- About ---------- */
.about__grid { display: grid; gap: 40px; align-items: center; }
.about__media { position: relative; padding: 0 10% 16% 0; max-width: 560px; }
.about__img { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main { aspect-ratio: 4/4.4; }
.about__img--sub { position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 1; border: 6px solid var(--paper); }
.about__badge {
  position: absolute; left: 0; bottom: 22%;
  background: var(--accent); color: #fff; padding: 12px 16px; border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(224,97,42,.35);
}
.about__badge strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 900; line-height: 1; }
.about__badge span { font-size: 12px; line-height: 1.35; display: block; margin-top: 4px; }
.about__text > p { color: #3E4750; }

.checklist { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 500; font-size: 15px; line-height: 1.45; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E0612A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.about__divisions { display: grid; gap: 12px; }
.division {
  display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid rgba(14,18,22,.08); transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.division:active { border-color: var(--accent); }
.division__no { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }
.division__title { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); }
.division__desc { font-size: 14px; color: var(--steel); line-height: 1.45; }
@media (hover: hover) { .division:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); } }
@media (min-width: 600px) {
  .checklist { grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 26px 0 32px; }
  .about__divisions { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about__badge { left: -12px; padding: 18px 22px; }
  .about__badge strong { font-size: 34px; }
  .about__badge span { font-size: 13px; margin-top: 6px; }
  .about__img--sub { border-width: 8px; }
}
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 6vw, 88px); }
  .about__grid--flip { grid-template-columns: 1.05fr 1fr; }
  .about__media { padding: 0 12% 18% 0; max-width: none; }
  .about__img--main { aspect-ratio: 4/5; }
}

/* ---------- Products (home cards: swipe on phones) ---------- */
.products { background: var(--white); }
.product-grid { display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 16px; scrollbar-width: none; }
.product-grid > * { flex: 0 0 82%; scroll-snap-align: start; }
.product-grid::-webkit-scrollbar { display: none; }
.product {
  display: block; color: inherit; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(14,18,22,.06); transition: transform .35s var(--ease), box-shadow .35s;
}
.product__img { aspect-ratio: 16/11; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product__body { padding: 20px 20px 22px; position: relative; }
.product__code {
  position: absolute; top: -15px; right: 16px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; background: var(--ink); color: #fff;
  padding: 5px 10px; border-radius: 4px; letter-spacing: .06em;
}
.product__code--inline { position: static; display: inline-block; }
.product h3 { font-size: 20px; font-weight: 800; font-stretch: 92%; margin-bottom: 6px; }
.product p { color: var(--steel); font-size: 14.5px; margin: 0; }
a.product h3::after { content: " →"; color: var(--accent); }
@media (hover: hover) {
  .product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .product:hover .product__img img { transform: scale(1.07); }
  a.product h3::after { opacity: 0; transition: opacity .25s; }
  a.product:hover h3::after { opacity: 1; }
}
@media (min-width: 600px) {
  .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; overflow: visible; margin: 0; padding: 0; }
  .product-grid > * { flex: none; }
}
@media (min-width: 960px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .product__body { padding: 22px 24px 26px; }
  .product__code { right: 20px; }
  .product h3 { font-size: 22px; margin-bottom: 8px; }
  .product p { font-size: 15px; }
}

/* ---------- Fabrication cards (home: swipe on phones) ---------- */
.fab-grid { display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 16px; scrollbar-width: none; }
.fab-grid::-webkit-scrollbar { display: none; }
.fab-grid > * { flex: 0 0 82%; height: 380px; scroll-snap-align: start; }
.fab { display: block; color: inherit; position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; }
.fab img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.fab::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(14,18,22,.94) 0%, rgba(14,18,22,.4) 55%, rgba(14,18,22,.05) 100%); }
.fab__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
.fab__no { font-family: var(--font-mono); color: #F2A07A; font-size: 12.5px; letter-spacing: .1em; }
.fab h3 { font-size: 21px; font-weight: 800; font-stretch: 90%; margin: 6px 0 8px; }
.fab p { font-size: 14.5px; color: #C9D0D6; margin: 0; max-width: 460px; }
@media (hover: hover) { .fab:hover img { transform: scale(1.06); } }
@media (min-width: 600px) {
  .fab-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; gap: 20px; overflow: visible; margin: 0; padding: 0; }
  .fab-grid > * { height: auto; }
  .fab--wide { grid-column: span 2; }
  .fab__body { padding: 26px 28px; }
  .fab p { font-size: 15px; }
}
@media (min-width: 960px) {
  .fab-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; }
  .fab h3 { font-size: clamp(21px, 2vw, 26px); }
}

/* ---------- Detail rows (products & services pages) ---------- */
.details { background: var(--white); }
.detail {
  display: grid; gap: 22px; padding: 36px 0; border-bottom: 1px solid rgba(14,18,22,.08);
  scroll-margin-top: 60px; /* adds to html scroll-padding: clears header + category bar */
}
.detail:first-child { padding-top: 0; }
.detail:last-child { border-bottom: 0; padding-bottom: 0; }
.detail__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; box-shadow: var(--shadow); }
.detail__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.detail__title { font-size: clamp(26px, 7vw, 38px); font-weight: 800; font-stretch: 88%; letter-spacing: -.01em; margin: 8px 0 12px; }
.detail__text > p { color: #3E4750; }
.detail .btn { margin-top: 4px; }
.detail .fab__no { color: var(--accent); }
.spec-list { list-style: none; padding: 0; margin: 16px 0 18px; display: grid; gap: 10px; }
.spec-list li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.5; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 2px; background: var(--accent); box-shadow: 0 4px 0 var(--alu); }
.spec-list--light li { color: #C9D0D6; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tags span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; padding: 5px 10px; border-radius: 4px; background: var(--mist); color: var(--graphite); }
@media (hover: hover) { .detail:hover .detail__media img { transform: scale(1.04); } }
@media (min-width: 960px) {
  .detail { grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding: clamp(48px, 5vw, 64px) 0; }
  .detail--flip .detail__media { order: 2; }
  .detail__media { aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
  .detail__title { margin: 10px 0 14px; }
  .detail .btn { margin-top: 8px; }
  .spec-list { margin: 18px 0 20px; }
  .tags { margin-bottom: 20px; }
}

/* ---------- Feature / value cards ---------- */
.values--tight { padding: 40px 0; }
.feature-grid { display: grid; gap: 12px; }
.feature {
  display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; align-items: start;
  background: #fff; border: 1px solid rgba(14,18,22,.07); border-radius: var(--radius-lg); padding: 16px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature svg { grid-row: span 2; width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--ink); fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17px; font-weight: 800; font-stretch: 92%; margin: 2px 0 4px; }
.feature p { font-size: 14px; color: var(--steel); margin: 0; line-height: 1.5; }
@media (hover: hover) { .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); } }
@media (min-width: 600px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature { display: block; padding: 24px 22px; }
  .feature svg { width: 48px; height: 48px; padding: 11px; margin-bottom: 16px; }
  .feature h3 { font-size: 19px; margin: 0 0 8px; }
  .feature p { font-size: 14.5px; line-height: 1.55; }
}
@media (min-width: 960px) { .values--tight { padding: 72px 0; } }
@media (min-width: 1100px) { .feature-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } .feature { padding: 28px 24px; } }

/* ---------- About page: divisions ---------- */
.division-cards { display: grid; gap: 16px; }
.division-card { background: var(--graphite); border: 1px solid #262E37; border-radius: var(--radius-lg); overflow: hidden; }
.division-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.division-card__body { padding: 20px 20px 22px; }
.division-card h3 { font-size: 22px; font-weight: 800; font-stretch: 90%; margin: 8px 0 4px; }
.division-card .link-arrow { margin-top: 0; }
@media (min-width: 960px) {
  .division-cards { grid-template-columns: 1fr 1fr; gap: 24px; }
  .division-card img { aspect-ratio: 16/8; }
  .division-card__body { padding: 28px 30px 32px; }
  .division-card h3 { font-size: 26px; }
}

/* ---------- Interactive window explainer ---------- */
.explainer__grid { display: grid; gap: 24px; grid-template-areas: "head" "visual" "parts"; }
.explainer__head { grid-area: head; }
.explainer__head > p:not(.eyebrow) { color: #3E4750; margin: 0; }
.explainer__visual { grid-area: visual; background: #fff; border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-lg); }
.parts { grid-area: parts; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.parts li { display: flex; gap: 14px; align-items: flex-start; }
.parts b { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-mono); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.parts span { font-size: 15px; color: var(--steel); line-height: 1.5; }
.parts strong { display: block; color: var(--ink); font-size: 16px; }
.window-svg { width: 100%; height: auto; border-radius: var(--radius); }
#shutterA { transition: transform .15s linear; }
.co { fill: var(--accent); stroke: #fff; stroke-width: 2.5; }
.co-t { fill: #fff; }
.slider { display: block; padding: 16px 6px 4px; }
.slider__label { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.slider__label output { font-family: var(--font-mono); color: var(--accent); }
/* big, easy-to-grab slider on touch screens */
.slider input { width: 100%; height: 36px; margin: 0; accent-color: var(--accent); cursor: grab; touch-action: pan-y; }
.finishes { margin-top: 10px; padding: 0 6px 6px; display: flex; flex-direction: column; gap: 10px; }
.finishes__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
.finishes__row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; font-size: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2) 50%, var(--c3));
  box-shadow: 0 0 0 1px rgba(14,18,22,.15); transition: transform .2s, box-shadow .2s;
}
.swatch.is-active { box-shadow: 0 0 0 2px var(--accent); }
.finishes__name { font-weight: 600; font-size: 15px; }
@media (hover: hover) { .swatch:hover { transform: scale(1.08); } }
@media (min-width: 960px) {
  .explainer__grid {
    grid-template-columns: .9fr 1.1fr; grid-template-rows: auto 1fr;
    grid-template-areas: "head visual" "parts visual"; column-gap: clamp(40px, 6vw, 80px); row-gap: 28px; align-items: start;
  }
  .explainer__visual { padding: 22px; align-self: center; }
  .slider { padding: 18px 0 4px; }
  .finishes { padding: 0; margin-top: 12px; }
}

/* ---------- Section library ---------- */
.library { background: var(--white); }
.lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(14,18,22,.1); border: 1px solid rgba(14,18,22,.1); border-radius: var(--radius-lg); overflow: hidden; }
.lib {
  background: var(--white); padding: 16px 14px 18px; position: relative;
  background-image: linear-gradient(rgba(14,18,22,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(14,18,22,.035) 1px, transparent 1px);
  background-size: 16px 16px;
}
.lib__svg { width: 100%; height: auto; aspect-ratio: 6/5; margin-bottom: 10px; }
.lib__svg .prof { fill: url(#hatch); stroke: var(--ink); stroke-width: 2; stroke-linejoin: round; stroke-dasharray: 1200; stroke-dashoffset: 0; }
.lib.is-visible .lib__svg .prof { animation: drawline 1.6s var(--ease) both; }
@keyframes drawline { from { stroke-dashoffset: 1200; } to { stroke-dashoffset: 0; } }
.lib__svg .dim line { stroke: var(--accent); stroke-width: 1.2; }
.lib__svg .dim text { fill: var(--accent); font-family: var(--font-mono); font-size: 12px; text-anchor: middle; }
.lib h3 { font-size: 16px; font-weight: 800; font-stretch: 92%; margin-bottom: 4px; }
.lib__spec { font-family: var(--font-mono); font-size: 11.5px; color: var(--steel); line-height: 1.6; margin: 0; }
@media (min-width: 768px) {
  .lib-grid { grid-template-columns: repeat(3, 1fr); }
  .lib { padding: 26px 24px 28px; }
  .lib__svg { margin-bottom: 14px; }
  .lib h3 { font-size: 19px; margin-bottom: 6px; }
  .lib__spec { font-size: 12.5px; }
}
@media (min-width: 1100px) { .lib-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Finishes (products page) ---------- */
.finishes-sec { background: var(--paper); }
.finish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finish-card { background: #fff; border-radius: var(--radius-lg); padding: 12px; border: 1px solid rgba(14,18,22,.07); transition: transform .3s var(--ease), box-shadow .3s; }
.finish-card__chip {
  display: block; height: 72px; border-radius: 10px; margin-bottom: 12px;
  background: linear-gradient(100deg, var(--c1) 0%, var(--c2) 45%, var(--c1) 60%, var(--c3) 100%);
  box-shadow: inset 0 0 0 1px rgba(14,18,22,.08);
}
.finish-card__chip--any { background: conic-gradient(from 90deg, #E0612A, #E5C04B, #5DA271, #3C7DC4, #7B5BC4, #C44B7B, #E0612A); }
.finish-card h3 { font-size: 16px; font-weight: 800; font-stretch: 92%; margin-bottom: 2px; }
.finish-card p { font-size: 13.5px; color: var(--steel); margin: 0; line-height: 1.4; }
@media (hover: hover) { .finish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); } }
@media (min-width: 600px) { .finish-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } .finish-card { padding: 18px; } .finish-card__chip { height: 96px; margin-bottom: 14px; } .finish-card h3 { font-size: 17px; } .finish-card p { font-size: 14px; } }
@media (min-width: 960px) { .finish-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Comparison chart ---------- */
.compare__grid { display: grid; gap: 32px; align-items: center; }
.compare__intro > p { color: #AEB7C0; }
.compare:not(.dark) .compare__intro > p { color: #3E4750; }
.legend { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 20px 0 12px; font-size: 14px; color: #D5DBE0; }
.compare:not(.dark) .legend { color: var(--graphite); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.lg { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.lg--al { background: var(--accent); }
.lg--upvc { background: #6E7A86; }
.lg--wood { background: #4A545E; }
.lg--ms { background: #333C45; border: 1px solid #56606A; }
.compare__note { font-size: 13px; color: #7F8A95 !important; font-style: italic; margin: 0; }
.compare:not(.dark) .compare__note { color: var(--steel) !important; }
.chart { display: grid; gap: 18px; background: var(--graphite); border: 1px solid #262E37; border-radius: var(--radius-lg); padding: 20px 18px; }
.chart__row { display: grid; gap: 8px; }
.chart__label { font-weight: 600; color: #fff; font-size: 14.5px; line-height: 1.3; }
.chart__bars { display: grid; gap: 4px; }
.chart__bar { position: relative; height: 10px; background: rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; }
.chart__bar i { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 3px; transition: width 1.2s var(--ease); }
.chart__bar--al { height: 16px; }
.chart__bar--al i { background: var(--accent); }
.chart__bar--al em { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-style: normal; font-family: var(--font-mono); font-size: 11px; color: #fff; opacity: 0; transition: opacity .4s 1s; }
.chart.is-visible .chart__bar--al em { opacity: 1; }
.chart__bar--upvc i { background: #6E7A86; }
.chart__bar--wood i { background: #4A545E; }
.chart__bar--ms i { background: #39424B; box-shadow: inset 0 0 0 1px #56606A; }
@media (min-width: 600px) {
  .chart { gap: 22px; padding: 28px; }
  .chart__row { grid-template-columns: 170px 1fr; gap: 18px; align-items: center; }
  .chart__label { font-size: 15px; }
}
@media (min-width: 960px) {
  .compare__grid { grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 88px); }
  .legend { margin: 26px 0 16px; }
  .chart { padding: 36px; }
}

/* ---------- Process (vertical timeline on phones) ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; position: relative; }
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; padding-bottom: 24px; text-align: left; }
.step:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 60px; bottom: 4px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--alu) 0 8px, transparent 8px 14px);
}
.step__icon {
  grid-row: span 3; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--mist); display: grid; place-items: center; box-shadow: var(--shadow);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.step__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.step__no { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .1em; padding-top: 4px; }
.step h3 { font-size: 18px; font-weight: 800; font-stretch: 92%; margin: 2px 0 6px; }
.step p { font-size: 14.5px; color: var(--steel); line-height: 1.5; margin: 0; }
@media (hover: hover) {
  .step:hover .step__icon { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); }
  .step:hover .step__icon svg { stroke: #fff; }
}
@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 40px 18px; }
  .step { display: block; text-align: center; padding: 0 4px; }
  .step::before { display: none; }
  .step__icon { width: 72px; height: 72px; margin: 0 auto 18px; }
  .step__icon svg { width: 30px; height: 30px; }
  .step__no { padding: 0; }
  .step h3 { margin: 4px 0 8px; }
  .step p { font-size: 14px; }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(6, 1fr); }
  .steps::before {
    content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--alu) 0 10px, transparent 10px 18px);
  }
}

/* ---------- Workshop band ---------- */
.workshop { position: relative; height: 420px; overflow: hidden; }
.workshop__images { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr; }
.workshop__images img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) contrast(1.05); }
.workshop__images img:nth-child(n+2) { display: none; }
.workshop__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 40px; background: linear-gradient(180deg, rgba(14,18,22,.45), rgba(14,18,22,.92)); }
.workshop .section-title { color: #fff; max-width: 680px; margin-bottom: 22px; }
@media (min-width: 600px) {
  .workshop__images { grid-template-columns: 1fr 1fr; }
  .workshop__images img:nth-child(2) { display: block; }
  .workshop__overlay { align-items: center; padding-bottom: 0; background: linear-gradient(90deg, rgba(14,18,22,.9), rgba(14,18,22,.55)); }
}
@media (min-width: 960px) {
  .workshop { height: clamp(460px, 42vw, 560px); }
  .workshop__images { grid-template-columns: repeat(3, 1fr); }
  .workshop__images img:nth-child(3) { display: block; }
  .workshop .section-title { margin-bottom: 28px; }
}

/* ---------- Who we serve ---------- */
.serve-grid { display: grid; gap: 12px; }
.serve__item {
  background: #fff; border-radius: var(--radius-lg); padding: 18px; border: 1px solid rgba(14,18,22,.07);
  display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; align-items: start;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.serve__item svg { grid-row: span 2; width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--accent-soft); fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.serve__item h3 { font-size: 17px; font-weight: 800; font-stretch: 92%; margin: 2px 0 4px; }
.serve__item p { margin: 0; font-size: 14px; color: var(--steel); }
@media (hover: hover) { .serve__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); } }
@media (min-width: 600px) { .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 960px) {
  .serve-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .serve__item { padding: 28px; grid-template-columns: 52px 1fr; column-gap: 18px; }
  .serve__item svg { width: 52px; height: 52px; padding: 12px; }
  .serve__item h3 { font-size: 18px; }
  .serve__item p { font-size: 14.5px; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.filters {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; overscroll-behavior-x: contain;
  margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter); max-width: calc(100% + var(--gutter) * 2);
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex-shrink: 0; min-height: 40px; padding: 0 16px; border-radius: 100px;
  border: 1px solid rgba(14,18,22,.15); background: transparent; font-size: 14px; font-weight: 500; color: var(--graphite);
  transition: background .25s, color .25s, border-color .25s;
}
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
@media (hover: hover) { .filter:hover { border-color: var(--ink); } }
@media (min-width: 960px) { .filters { flex-wrap: wrap; overflow: visible; margin: 0; padding: 0; max-width: none; } }

.masonry { columns: 2; column-gap: 10px; }
.tile {
  display: block; position: relative; margin-bottom: 10px; border-radius: var(--radius); overflow: hidden; break-inside: avoid;
  aspect-ratio: 4/3.6; background: var(--mist);
}
.tile--tall { aspect-ratio: 3/4.2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
/* captions are always visible on touch screens (there's no hover) */
.tile span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px;
  background: linear-gradient(0deg, rgba(14,18,22,.8), transparent); color: #fff; font-size: 12.5px; font-weight: 500; line-height: 1.3;
}
.tile.is-hidden { display: none; }
@media (min-width: 600px) { .masonry { columns: 3; column-gap: 14px; } .tile { margin-bottom: 14px; } }
@media (min-width: 960px) { .masonry { columns: 4; column-gap: 16px; } .tile { margin-bottom: 16px; aspect-ratio: 4/3.4; } }
@media (hover: hover) {
  .tile span {
    left: 12px; right: auto; bottom: 12px; padding: 6px 12px; border-radius: 4px;
    background: rgba(14,18,22,.8); font-size: 13px;
    transform: translateY(8px); opacity: 0; transition: transform .35s var(--ease), opacity .35s;
  }
  .tile::after {
    content: ""; position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1216' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center/16px no-repeat;
    opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s;
  }
  .tile:hover img { transform: scale(1.06); }
  .tile:hover span, .tile:focus-visible span { transform: none; opacity: 1; }
  .tile:hover::after { opacity: 1; transform: none; }
}

/* ---------- CTA band ---------- */
.cta { background: var(--accent); color: #fff; padding: 44px 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px); }
.cta__inner { display: grid; gap: 22px; position: relative; }
.cta h2 { color: #fff; font-size: clamp(24px, 6.4vw, 38px); font-weight: 900; font-stretch: 88%; margin-bottom: 8px; }
.cta p { margin: 0; color: #FFE5D8; font-size: 16px; }
.cta__actions { display: grid; gap: 10px; }
@media (min-width: 600px) { .cta__actions { display: flex; flex-wrap: wrap; gap: 12px; } }
@media (min-width: 960px) {
  .cta { padding: 56px 0; }
  .cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .cta p { font-size: 17px; }
}

/* ---------- Wholesale band ---------- */
.wholesale { padding: 48px 0; background: var(--ink) linear-gradient(120deg, transparent 55%, rgba(224,97,42,.16)); }
.wholesale__inner { display: grid; gap: 24px; }
.wholesale .section-title { max-width: 640px; }
.wholesale__inner p:not(.eyebrow) { color: #AEB7C0; margin: 0; max-width: 560px; }
.wholesale__actions { display: grid; gap: 10px; }
@media (min-width: 600px) { .wholesale__actions { display: flex; flex-wrap: wrap; gap: 12px; } }
@media (min-width: 960px) {
  .wholesale { padding: clamp(56px, 7vw, 88px) 0; }
  .wholesale__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
}

/* ---------- Contact ---------- */
.quick { position: relative; z-index: 2; margin-top: -40px; }
.quick__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick__card {
  background: #fff; border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px; min-width: 0; transition: transform .3s var(--ease);
}
.quick__card:active { transform: scale(.98); }
.quick__card .ci { width: 40px; height: 40px; margin-bottom: 6px; }
.quick__card .ci svg { width: 20px; height: 20px; }
.quick__card strong { font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.quick__card span:not(.ci) { font-size: 13px; color: var(--steel); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (hover: hover) { .quick__card:hover { transform: translateY(-4px); } }
@media (min-width: 600px) {
  .quick { margin-top: -56px; }
  .quick__grid { gap: 16px; }
  .quick__card { display: grid; grid-template-columns: 46px 1fr; column-gap: 14px; align-items: center; padding: 20px; }
  .quick__card .ci { grid-row: span 2; width: 46px; height: 46px; margin: 0; }
  .quick__card .ci svg { width: 22px; height: 22px; }
  .quick__card strong { font-size: 17px; }
  .quick__card span:not(.ci) { font-size: 14px; }
}
@media (min-width: 1100px) { .quick__grid { grid-template-columns: repeat(4, 1fr); } }

.contact__grid { display: grid; gap: 36px; align-items: start; }
.contact__info > p { color: #3E4750; }
.contact__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.contact__list span { color: var(--steel); font-size: 15px; }
.contact__list a { display: inline-block; padding: 2px 0; }
@media (hover: hover) { .contact__list a:hover { color: var(--accent); } }
.ci { width: 46px; height: 46px; border-radius: 10px; background: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.ci svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ci--wa { background: var(--wa); }
@media (min-width: 960px) { .contact__grid { grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); } .contact__list { margin-top: 28px; gap: 20px; } }

.form { background: #fff; border-radius: var(--radius-lg); padding: 22px 18px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--accent); }
.form h3 { font-size: 24px; font-weight: 800; font-stretch: 90%; }
.form__hint { color: var(--steel); font-size: 14px; margin: 6px 0 20px; }
.form__row { display: grid; gap: 0; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--graphite); margin-bottom: 16px; }
.form input, .form select, .form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: var(--radius);
  font: inherit; font-weight: 400; font-size: 16px; /* 16px stops iPhones zooming in on focus */
  border: 1.5px solid #DCE0E4; background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(224,97,42,.14); }
.form input.is-invalid { border-color: #D93025; }
.form__error { color: #D93025; font-size: 14px; margin: 10px 0 0; min-height: 1em; }
@media (min-width: 600px) { .form { padding: 32px; } .form__row { grid-template-columns: 1fr 1fr; gap: 16px; } .form h3 { font-size: 26px; } }
@media (min-width: 960px) { .form { padding: clamp(32px, 3.5vw, 40px); } }

.map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; height: 300px; box-shadow: var(--shadow); background: var(--mist); scroll-margin-top: 16px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }
@media (min-width: 960px) { .map { margin-top: 64px; height: 380px; } }

/* ---------- FAQ ---------- */
.faq-sec { background: var(--white); }
.faq__grid { display: grid; gap: 24px; align-items: start; }
.faq__grid > div > p:not(.eyebrow) { color: var(--steel); margin: 0; }
.faq { display: grid; gap: 10px; }
.faq details { background: var(--paper); border: 1px solid rgba(14,18,22,.07); border-radius: var(--radius); padding: 0 16px; transition: border-color .25s; }
.faq details[open] { border-color: var(--accent); background: #fff; }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 32px 16px 0; position: relative; min-height: 56px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px; margin-top: -8px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { color: var(--steel); margin: 0 0 16px; font-size: 15px; }
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); }
  .faq { gap: 12px; }
  .faq details { padding: 0 22px; }
  .faq summary { font-size: 17px; padding: 18px 32px 18px 0; }
  .faq details p { font-size: 15.5px; margin-bottom: 18px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9AA4AE; padding: 48px 0 0; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 32px; }
.footer__brand, .footer__grid > div:last-child { grid-column: 1 / -1; }
.footer__brand p { margin: 16px 0 0; max-width: 320px; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; font-stretch: 110%; margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.footer li a { display: inline-block; padding: 6px 0; }
.footer li { overflow-wrap: anywhere; }
.footer__bottom { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #222A32; padding-top: 20px; padding-bottom: 24px; font-size: 13.5px; }
.footer__links { display: flex; gap: 18px; }
.footer__links a { padding: 4px 0; }
.footer__credit { color: #6B7580; }
@media (hover: hover) { .footer a:hover { color: var(--accent); } .footer__links a:hover { color: #fff; } }
@media (min-width: 600px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid > div:last-child { grid-column: auto; }
}
@media (min-width: 960px) {
  .footer { padding-top: 72px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
  .footer__brand { grid-column: auto; }
  .footer__brand p { margin-top: 18px; }
  .footer h4 { font-size: 15px; margin-bottom: 18px; }
  .footer ul { gap: 6px; }
  .footer li a { padding: 2px 0; }
  .footer__bottom { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; padding-bottom: 26px; }
}

/* ---------- Bottom action bar (phones & tablets) ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 8px;
  padding: 8px var(--gutter) calc(8px + var(--safe-bottom));
  background: rgba(255,255,255,.97); border-top: 1px solid rgba(14,18,22,.08);
  box-shadow: 0 -8px 24px rgba(14,18,22,.08);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 48px;
  border-radius: var(--radius); font-weight: 600; font-size: 14.5px; color: var(--ink); background: var(--mist);
  transition: transform .15s;
}
.mobile-bar a:active { transform: scale(.97); }
.mobile-bar svg { width: 19px; height: 19px; fill: currentColor; }
.mobile-bar svg.stroke { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-bar__wa { background: var(--wa) !important; color: #fff !important; }
.mobile-bar__cta { background: var(--accent) !important; color: #fff !important; }
html.menu-open .mobile-bar { display: none; } /* menu & photo viewer have their own controls */
@media (min-width: 960px) { .mobile-bar { display: none; } }

/* ---------- Floating buttons ---------- */
.float-wa { display: none; }
.to-top {
  position: fixed; right: var(--gutter); bottom: calc(var(--bar-h) + var(--safe-bottom) + 14px); z-index: 59;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .3s, transform .3s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes ping { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
@media (min-width: 960px) {
  .float-wa {
    position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
    background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.45);
    transition: transform .25s var(--ease);
  }
  .float-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ping 2.4s infinite; }
  .float-wa:hover { transform: scale(1.08); }
  .float-wa svg { width: 30px; height: 30px; fill: currentColor; }
  .to-top { right: 30px; bottom: 94px; width: 42px; height: 42px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,10,12,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 8px calc(88px + var(--safe-bottom)); touch-action: pan-y;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox img { max-height: calc(100svh - 190px); max-width: 100%; border-radius: var(--radius); object-fit: contain; }
.lightbox figcaption { color: #C9D0D6; font-size: 14px; text-align: center; }
.lightbox button { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; border-radius: 50%; width: 48px; height: 48px; font-size: 30px; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.lightbox__close { top: 10px; right: 10px; }
.lightbox__prev, .lightbox__next { bottom: calc(20px + var(--safe-bottom)); }
.lightbox__prev { left: calc(50% - 60px); }
.lightbox__next { right: calc(50% - 60px); }
@media (hover: hover) { .lightbox button:hover { background: var(--accent); } }
@media (min-width: 960px) {
  .lightbox { padding: 60px 70px; }
  .lightbox img { max-height: calc(100vh - 140px); }
  .lightbox figcaption { font-size: 15px; }
  .lightbox__close { top: 18px; right: 18px; }
  .lightbox__prev, .lightbox__next { top: 50%; bottom: auto; transform: translateY(-50%); }
  .lightbox__prev { left: 14px; }
  .lightbox__next { right: 14px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (min-width: 960px) {
  .reveal { transform: translateY(26px); transition-duration: .8s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
