/* ═══════════════════════════════════════════════
   HS TRADING COMPANY — Landing Page Styles
   Matches the approved PDF mockup:
   dark hero/process/footer, light content sections
   Palette: Coal black / Signal yellow / White
   Type:    Oswald (display) + Inter (body)
   ═══════════════════════════════════════════════ */

:root {
  --coal:        #0b0b0d;
  --coal-2:      #121215;
  --card-dark:   #17171b;
  --line-dark:   #26262c;
  --line-light:  #e8e8ec;
  --yellow:      #f5b301;
  --yellow-deep: #d99a00;
  --white:       #ffffff;
  --paper:       #ffffff;
  --paper-2:     #f7f7f9;
  --ink:         #14141a;
  --ink-soft:    #55555e;
  --grey:        #a2a2ab;
  --grey-dim:    #6d6d76;

  --font-display: "Oswald", sans-serif;
  --font-body:    "Inter", sans-serif;

  --radius: 14px;
  --section-pad: clamp(56px, 8vw, 96px);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: auto; } /* Lenis handles smoothing */

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-soft);
  overflow-x: hidden;
}

h1, h2, h3, h4, .btn { font-family: var(--font-display); }

.text-brand { color: var(--yellow); }

.section-pad { padding-block: var(--section-pad); }

.section-title {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  position: relative;
}

.title-underline {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px;
}
.text-center .title-underline,
.title-underline.mx-auto { margin-inline: auto; }

.section-eyebrow {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Buttons ─────────────────────────────── */
.btn { letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }

.btn-brand {
  --bs-btn-bg: var(--yellow);
  --bs-btn-border-color: var(--yellow);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: var(--yellow-deep);
  --bs-btn-hover-border-color: var(--yellow-deep);
  --bs-btn-hover-color: #111;
  --bs-btn-active-bg: var(--yellow-deep);
  --bs-btn-active-border-color: var(--yellow-deep);
  --bs-btn-active-color: #111;
  border-radius: 8px;
}

.btn-outline-light { border-radius: 8px; }

/* ══════════════ HEADER (dark, like PDF) ══════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11,11,13,.85);
  transition: background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(11,11,13,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}

.brand-logo { height: 44px; width: auto; border-radius: 6px; }

.brand-name {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  letter-spacing: .06em;
}
.brand-name em { color: var(--yellow); font-style: normal; }

.main-nav .nav-link {
  color: #d8d8de;
  font-family: var(--font-display);
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-inline: .9rem;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem; right: .9rem; bottom: 2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--white); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--white);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
}
.nav-phone svg { color: var(--yellow); }
.nav-phone small { display: block; color: var(--grey-dim); font-weight: 400; font-size: .68rem; }
.nav-phone:hover { color: var(--yellow); }

.mobile-nav { background: var(--coal-2); color: var(--white); max-width: 320px; }
.mobile-nav-list a {
  display: block;
  padding: .8rem 0;
  color: #d8d8de;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav-list a:hover { color: var(--yellow); }

/* ══════════════ HERO — scroll-scrubbed frame sequence ══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,13,.88) 0%, rgba(11,11,13,.55) 45%, rgba(11,11,13,.25) 100%),
    linear-gradient(0deg, rgba(11,11,13,.9) 0%, transparent 24%);
}

.hero-content { position: relative; z-index: 1; padding-top: 90px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
  font-family: var(--font-display);
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .85rem;
  font-weight: 500;
}
.eyebrow-line { display: inline-block; width: 64px; height: 2px; background: var(--yellow); }

.hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-block: 1rem 1.1rem;
}

.hero-sub { max-width: 460px; font-size: 1.05rem; color: #cfcfd6; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin-block: 1.8rem;
}

.hstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--yellow);
  font-weight: 600;
  line-height: 1;
}
.hstat span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.glass-panel {
  margin-left: auto;
  max-width: 240px;
  display: grid;
  gap: 12px;
  background: rgba(20, 20, 24, .45);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
}
.glass-ico { font-size: 1.15rem; filter: grayscale(.2); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--grey);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--yellow), transparent);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ══════════════ BRANDS MARQUEE — WHITE strip (per PDF) ══════════════ */
.brands {
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .8;
  transition: filter .3s, opacity .3s;
}
.marquee-track img:hover { filter: none; opacity: 1; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════ WHY CHOOSE — white section, light cards (per PDF) ══════════════ */
.why { background: var(--paper); }

.why-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(20,20,26,.12);
}

.why-ico {
  width: 58px;
  height: 58px;
  margin-inline: auto;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(245,179,1,.14);
  border-radius: 50%;
}

.why-card h3 {
  color: var(--ink);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-card p { font-size: .8rem; margin: 0; color: var(--ink-soft); }

/* ══════════════ MACHINERY — white section, light cards (per PDF) ══════════════ */
.machinery { background: var(--paper); }

.view-all {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}
.view-all:hover { color: var(--yellow-deep); }

.m-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.m-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,179,1,.7);
  box-shadow: 0 16px 38px rgba(20,20,26,.14);
}

.m-card-img { aspect-ratio: 4 / 3; overflow: hidden; background: #dfe2e6; }
.m-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.m-card:hover .m-card-img img { transform: scale(1.06); }

.m-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }

.m-card-body h3 {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.m-type { color: var(--ink-soft); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.m-meta {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 10px 0 12px;
  font-size: .76rem;
  color: var(--ink-soft);
}

.m-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line-light);
  padding-top: 12px;
}

.m-price { font-family: var(--font-display); color: var(--ink); font-size: 1.2rem; font-weight: 700; }
.m-foot .btn { width: 100%; }

/* ══════════════ PROCESS — dark band (per PDF) ══════════════ */
.process { background: var(--coal); }

.process .section-title { color: var(--white); }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }

.steps li {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 14px 0 14px;
}

.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 58px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--line-dark) 100%);
  opacity: .5;
}

.step-num {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245,179,1,.12);
}

.steps h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}
.steps p { margin: 0; font-size: .86rem; color: var(--grey); }

.process-figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.process-figure img { width: 100%; display: block; will-change: transform; }

/* ══════════════ STATS + COUNTRIES — white section, dark map panel (per PDF) ══════════════ */
.countries { background: var(--paper); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

.stat-box {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
}
.stat-wide { grid-column: span 2; }

.stat-box strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-wide strong { color: var(--ink); font-size: 2.8rem; }
.stat-box span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; color: var(--ink-soft); }

.countries-panel {
  height: 100%;
  background: var(--card-dark) url("../images/export-banner.jpg") center / cover no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(13,13,16,.9);
  border-radius: var(--radius);
  padding: 28px;
}
.countries-panel h2 { color: var(--white); }

.flag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px 18px;
}

.flag-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6e6ea;
  font-size: .88rem;
  padding: 5px 0;
}
.flag-list img { width: 26px; height: 18px; object-fit: cover; border-radius: 3px; }

/* ══════════════ RENTAL CTA — yellow strip (per PDF) ══════════════ */
.rental { background: var(--yellow); color: #111; }
.rental h2 { color: #111; text-transform: uppercase; letter-spacing: .04em; }
.rental p { color: rgba(0,0,0,.7); font-size: .9rem; }
.rental-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
}
.rental .btn-dark { border-radius: 8px; }

/* ══════════════ FOOTER — black (per PDF) ══════════════ */
.footer { background: #0a0a0c; color: var(--grey); }

.footer-logo { height: 56px; width: auto; border-radius: 8px; }
.footer-text { font-size: .86rem; color: var(--grey); }

.footer-head {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: .86rem; transition: color .25s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact li { font-size: .84rem; color: var(--grey); }

.footer-bottom { border-top: 1px solid var(--line-dark); font-size: .8rem; color: var(--grey-dim); }
.footer-bottom a { color: var(--grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ══════════════ REVEAL DEFAULTS (JS enhances) ══════════════ */
[data-reveal] { will-change: transform, opacity; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .hero-content { padding-top: 110px; padding-bottom: 70px; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 1.1rem 1.6rem; }
  .brand-logo { height: 38px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════ REDUCED MOTION ══════════════ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .scroll-hint span { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════
   PRODUCTS PAGE — extra styles
   Loads AFTER style.css — reuses the same
   :root variables (colours / fonts / radius).
   Do NOT redefine --coal, --yellow etc. here.
   ═══════════════════════════════════════════════ */

/* ══════════════ PAGE HERO (dark, image bg, per site hero) ══════════════ */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--coal);
  padding-top: 110px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/products/hero-bg.jpg") center / cover no-repeat;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.75) 55%, var(--coal) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  width: 100%;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.breadcrumb-nav li { display: flex; align-items: center; gap: 8px; color: var(--grey); }
.breadcrumb-nav a { color: var(--grey); text-decoration: none; transition: color .25s; }
.breadcrumb-nav a:hover { color: var(--yellow); }
.breadcrumb-nav li.active { color: var(--yellow); }
.breadcrumb-nav li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--grey-dim); }

.page-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 8px;
}

.page-hero-sub { max-width: 520px; color: #cfcfd6; font-size: 1rem; margin: 0; }

/* ══════════════ PRODUCTS LAYOUT ══════════════ */
.products-section { background: var(--paper); }

/* ── Sidebar filters ── */
.filters-sidebar {
  position: sticky;
  top: 96px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px 20px 26px;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.filters-head h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.filters-clear {
  background: none;
  border: none;
  padding: 0;
  color: var(--ink-soft);
  font-size: .78rem;
  text-decoration: underline;
  cursor: pointer;
}
.filters-clear:hover { color: var(--yellow-deep); }

.filter-search {
  position: relative;
  margin: 16px 0 22px;
}

.filter-search input {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 10px 40px 10px 14px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--ink);
  background: var(--paper-2);
  outline: none;
  transition: border-color .25s;
}
.filter-search input:focus { border-color: var(--yellow); background: var(--paper); }

.filter-search svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.filter-group { border-top: 1px solid var(--line-light); padding-top: 16px; margin-top: 16px; }
.filter-group:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.filter-group h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.filter-options { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.filter-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--yellow);
  cursor: pointer;
  flex: 0 0 16px;
}

.filter-check span.f-label { flex: 1; }
.filter-check span.f-count { color: var(--grey-dim); font-size: .76rem; }
.filter-check:hover span.f-label { color: var(--ink); }

.filter-apply-wrap { margin-top: 24px; display: grid; gap: 10px; }
.filter-apply-wrap .btn { width: 100%; }

/* ── Toolbar (mobile filter toggle + result count) ── */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.products-count { font-size: .88rem; color: var(--ink-soft); }
.products-count strong { color: var(--ink); font-weight: 700; }

.filters-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-chips:empty { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,179,1,.14);
  color: var(--ink);
  border: 1px solid rgba(245,179,1,.5);
  border-radius: 999px;
  padding: 5px 10px 5px 12px;
  font-size: .78rem;
  font-weight: 500;
}
.chip button {
  background: none; border: none; padding: 0; line-height: 1;
  color: var(--ink-soft); font-size: 1rem; cursor: pointer;
}
.chip button:hover { color: var(--yellow-deep); }

.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line-light);
  border-radius: var(--radius);
  color: var(--ink-soft);
}
.no-results h3 { color: var(--ink); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.no-results.is-visible { display: block; }

.m-card[hidden] { display: none !important; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .filters-toggle-btn { display: inline-flex; }

  .filters-sidebar {
    position: fixed;
    inset: 0 20% 0 0;
    z-index: 1050;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform .35s ease;
  }
  .filters-sidebar.is-open { transform: translateX(0); box-shadow: 20px 0 50px rgba(0,0,0,.25); }

  .filters-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,11,13,.55);
    z-index: 1040;
  }
  .filters-backdrop.is-open { display: block; }
}



/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE — extra styles
   Loads AFTER style.css — reuses the same
   :root variables (colours / fonts / radius / etc).
   No JS anywhere on this page — the quote popup
   below is a pure CSS checkbox-toggle modal.
   ═══════════════════════════════════════════════ */

.pd-page { background: var(--paper); padding-top: 90px; }

/* ── Back link ── */
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 26px 0 8px;
}
.pd-back:hover { color: var(--yellow-deep); }

/* ── Top: gallery + info ── */
.pd-top { padding-block: 30px 10px; }

.pd-gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: 0 10px 30px rgba(20,20,26,.08);
}
.pd-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.pd-actions .btn { flex: 1 1 180px; }

.btn-brochure {
  --bs-btn-bg: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-color: var(--white);
  --bs-btn-hover-bg: #2a2a31;
  --bs-btn-hover-border-color: #2a2a31;
  --bs-btn-hover-color: var(--white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pd-title {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.pd-tagline { color: var(--ink-soft); font-size: 1rem; margin: 0 0 16px; }

.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pd-tag {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
}

.pd-description { color: var(--ink-soft); font-size: .95rem; line-height: 1.75; margin-bottom: 24px; }

.pd-price-block {
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
  margin-top: 4px;
}
.pd-price-label {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.pd-price-row { display: flex; align-items: center; gap: 10px; }
.pd-price-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex: none;
}
.pd-price-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
}
.pd-price-note { font-size: .78rem; color: var(--grey-dim); margin: 6px 0 0 44px; }

/* ── Features & Highlights ── */
.pd-features { background: var(--paper-2); }

.pd-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.pd-feature-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}
.pd-feature-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(245,179,1,.16);
  color: var(--yellow-deep);
  display: grid;
  place-items: center;
  flex: none;
  font-size: .9rem;
}

/* ── Technical Specifications ── */
.pd-specs { background: var(--paper); }

.pd-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
}

.pd-spec-row {
  background: var(--paper-2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .86rem;
  color: var(--ink-soft);
}
.pd-spec-row strong { color: var(--ink); font-weight: 600; }

/* ── CTA band (call / whatsapp) ── */
.pd-cta-band {
  background: var(--coal);
  padding-block: 34px;
}

.pd-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.btn-call, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-call { background: var(--yellow); color: #111; }
.btn-call:hover { background: var(--yellow-deep); color: #111; }
.btn-whatsapp { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-whatsapp:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── FAQ (pure HTML <details>, zero JS) ── */
.pd-faq { background: var(--paper-2); }

.pd-faq-sub { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: .92rem; }

.pd-faq-list { display: grid; gap: 10px; max-width: 820px; margin: 28px auto 0; }

.pd-faq-item {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  overflow: hidden;
}

.pd-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
}
.pd-faq-item summary::-webkit-details-marker { display: none; }

.pd-faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--yellow-deep);
  flex: none;
  transition: transform .25s ease;
}
.pd-faq-item[open] summary::after { transform: rotate(45deg); }

.pd-faq-answer { padding: 0 18px 16px; color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }

/* ── Bottom CTA: Request a Post ── */
.pd-final-cta {
  background: var(--paper);
  text-align: center;
  padding-block: 20px 10px;
}
.pd-final-cta h2 {
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 8px;
}
.pd-final-cta p { color: var(--ink-soft); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════
   QUOTE / POST REQUEST MODAL — pure CSS, no JS.
   Any <label for="pdQuoteModal"> opens it;
   the backdrop label and the close (×) label
   both close it by unchecking the hidden input.
   ═══════════════════════════════════════════════ */
.pd-modal-toggle { display: none; }

.pd-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.pd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,.65);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.pd-modal {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 440px;
  margin: 6vh auto 0;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  transform: translateY(-16px);
  transition: transform .3s ease;
  max-height: 88vh;
  overflow-y: auto;
}

.pd-modal-toggle:checked ~ .pd-modal-overlay {
  opacity: 1;
  visibility: visible;
}
.pd-modal-toggle:checked ~ .pd-modal-overlay .pd-modal { transform: translateY(0); }

.pd-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.pd-modal-close:hover { background: var(--yellow); color: #111; }

.pd-modal-head { margin-bottom: 18px; padding-right: 30px; }
.pd-modal-head h3 {
  font-family: var(--font-display);
  color: var(--ink);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.pd-modal-head p { color: var(--ink-soft); font-size: .84rem; margin: 0; }

.pd-form { display: grid; gap: 14px; }

.pd-field label {
  display: block;
  font-family: var(--font-display);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.pd-field input,
.pd-field textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink);
  background: var(--paper-2);
  outline: none;
  transition: border-color .25s, background .25s;
}
.pd-field input:focus,
.pd-field textarea:focus { border-color: var(--yellow); background: var(--paper); }

.pd-field textarea { resize: vertical; min-height: 90px; }

.pd-form .btn { width: 100%; margin-top: 4px; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .pd-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .pd-feature-grid { grid-template-columns: 1fr; }
  .pd-spec-grid { grid-template-columns: 1fr; }
  .pd-actions .btn { flex: 1 1 100%; }
  .pd-price-note { margin-left: 0; }
}



/* ═══════════════════════════════════════════════
   ABOUT PAGE — extra styles
   Reuses the same :root palette/fonts from style.css
   All custom classes prefixed with "about-"
   Load this AFTER style.css
   ═══════════════════════════════════════════════ */

/* ══════════════ INTRO / STORY ══════════════ */
.about-intro { background: var(--paper); }

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-deep);
  font-family: var(--font-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--yellow-deep); display: inline-block; }

.about-heading {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 18px;
}

.about-para { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.about-para:last-child { margin-bottom: 0; }
.about-para strong { color: var(--ink); font-weight: 600; }

/* ══════════════ DUAL BRAND ROW (KV + Unique Equipments) ══════════════ */
.about-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.about-brand-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  background: var(--paper-2, #f5f5f2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .3s ease, transform .3s ease;
}
.about-brand-chip:hover { border-color: var(--yellow-deep); transform: translateY(-3px); }

.about-brand-flag {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-brand-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .88rem;
  line-height: 1.3;
}
.about-brand-loc {
  color: var(--ink-soft);
  font-size: .76rem;
  letter-spacing: .04em;
}

.about-signature-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.about-signature-ico {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(245,179,1,.14);
  border-radius: 50%;
  font-size: 1.4rem;
}
.about-signature-name { color: var(--ink); font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .92rem; }
.about-signature-role { color: var(--ink-soft); font-size: .82rem; }

.about-media { position: relative; }
.about-media-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20,20,26,.16);
}
.about-media-figure img { width: 100%; display: block; }

.about-media-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--yellow);
  color: #111;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(217,154,0,.35);
  text-align: center;
}
.about-media-badge strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.about-media-badge span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* ══════════════ MISSION / VISION — dark band ══════════════ */
.about-mv { background: var(--coal); }

.about-mv-card {
  height: 100%;
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.about-mv-card:hover { transform: translateY(-6px); border-color: var(--yellow); }

.about-mv-ico {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: rgba(245,179,1,.14);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.about-mv-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-mv-card p { color: var(--grey); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ══════════════ VALUES / WHY (light, reuses .why-card look) ══════════════ */
.about-values { background: var(--paper); }

/* ══════════════ REFURBISHMENT PROCESS ══════════════ */
.about-refurb { background: var(--paper-2); }

.about-refurb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-refurb-step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.about-refurb-step:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-deep);
  box-shadow: 0 14px 34px rgba(20,20,26,.1);
}

.about-refurb-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--yellow);
  opacity: .6;
  line-height: 1;
}

.about-refurb-ico {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(245,179,1,.14);
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.about-refurb-step h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-refurb-step p {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

/* connecting line between steps on wider screens */
@media (min-width: 992px) {
  .about-refurb-grid::before {
    content: "";
    display: none; /* using card-based flow instead of a literal connector line to avoid layout fragility */
  }
}

/* ══════════════ OUR LOCATIONS ══════════════ */
.about-locations { background: var(--paper); }

.about-location-card {
  height: 100%;
  background: var(--paper-2, #f5f5f2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
}
.about-location-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-deep);
  box-shadow: 0 16px 38px rgba(20,20,26,.1);
}

.about-location-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.about-location-flag {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-location-brand {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.3;
}
.about-location-tag {
  color: var(--yellow-deep);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-location-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.about-location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.about-location-list li:last-child { margin-bottom: 0; }

.about-location-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: rgba(245,179,1,.14);
  border-radius: 50%;
  font-size: .9rem;
}

.about-location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 3px;
  transition: color .3s ease, gap .3s ease;
}
.about-location-link:hover { color: var(--yellow-deep); gap: 10px; }

/* ══════════════ TIMELINE / MILESTONES ══════════════ */
.about-timeline { background: var(--paper-2); }

.about-timeline-track {
  position: relative;
  padding-left: 28px;
}
.about-timeline-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line-light);
}

.about-timeline-item {
  position: relative;
  padding-bottom: 34px;
}
.about-timeline-item:last-child { padding-bottom: 0; }

.about-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245,179,1,.18);
}

.about-timeline-year {
  font-family: var(--font-display);
  color: var(--yellow-deep);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.about-timeline-item h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.about-timeline-item p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

/* ══════════════ STATS STRIP ══════════════ */
.about-stats { background: var(--paper); }

.about-stat-box {
  text-align: center;
  padding: 26px 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  height: 100%;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
}
.about-stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-box span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* ══════════════ TEAM ══════════════ */
.about-team { background: var(--paper); }

.about-team-card { text-align: center; }
.about-team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: #dfe2e6;
  box-shadow: 0 10px 30px rgba(20,20,26,.1);
}
.about-team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.about-team-card:hover .about-team-photo img { transform: scale(1.06); }

.about-team-name { color: var(--ink); font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 2px; }
.about-team-role { color: var(--yellow-deep); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

/* ══════════════ CTA BAND (reuses rental yellow style) ══════════════ */
.about-cta { background: var(--yellow); color: #111; }
.about-cta h2 { color: #111; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.about-cta p { color: rgba(0,0,0,.7); font-size: .92rem; margin: 0; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .about-media-badge { left: 14px; bottom: -16px; padding: 14px 18px; }
}

@media (max-width: 767.98px) {
  .about-refurb-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .about-signature-row { flex-wrap: wrap; }
  .about-brand-row { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE — extra styles
   Reuses the same :root palette/fonts from style.css
   All custom classes prefixed with "contact-"
   Load this AFTER style.css
   ═══════════════════════════════════════════════ */

/* ══════════════ MAIN SECTION ══════════════ */
.contact-section { background: var(--paper); }

/* ══════════════ INFO CARDS (top row) ══════════════ */
.contact-info-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(20,20,26,.12);
}

.contact-info-ico {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--yellow-deep);
  background: rgba(245,179,1,.14);
  border-radius: 50%;
}
.contact-info-ico svg { width: 22px; height: 22px; }

.contact-info-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-text { font-size: .86rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.contact-info-text a { color: var(--ink-soft); text-decoration: none; transition: color .25s; }
.contact-info-text a:hover { color: var(--yellow-deep); }

/* ══════════════ FORM + SIDE PANEL ══════════════ */
.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
}

.contact-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-deep);
  font-family: var(--font-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-form-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--yellow-deep); display: inline-block; }

.contact-form-title {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 8px;
}

.contact-form-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 28px; }

.contact-form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.contact-form-row.contact-form-2col { grid-template-columns: 1fr 1fr; }

.contact-form-group { display: flex; flex-direction: column; gap: 8px; }

.contact-form-label {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-form-label span { color: var(--yellow-deep); }

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .92rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-2);
  outline: none;
  transition: border-color .25s, background .25s;
}
.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus { border-color: var(--yellow); background: var(--paper); }
.contact-form-input::placeholder,
.contact-form-textarea::placeholder { color: var(--grey); }

.contact-form-textarea { resize: vertical; min-height: 130px; }

.contact-form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2355555e' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.contact-form-check input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--yellow-deep);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form-check label { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }

.contact-form-submit { width: 100%; }
.contact-form-submit.btn { padding: .75rem 1.5rem; font-size: .88rem; }

/* ── Side panel (map + hours) ─────────────────────────────── */
.contact-side-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  min-height: 260px;
  flex: 1;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; filter: grayscale(.15); }

.contact-hours-card {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: var(--white);
}
.contact-hours-title {
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-hours-title svg { width: 18px; height: 18px; color: var(--yellow); }

.contact-hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--grey);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}
.contact-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours-list li span:last-child { color: var(--white); font-weight: 500; }
.contact-hours-list li.contact-hours-closed span:last-child { color: var(--yellow); }

/* ══════════════ OFFICE LOCATIONS ══════════════ */
.contact-offices { background: var(--paper-2); }

.contact-office-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(20,20,26,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-office-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(20,20,26,.12); }

.contact-office-flag {
  height: 6px;
  background: var(--yellow);
}

.contact-office-body { padding: 26px 24px; }

.contact-office-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-office-name svg { width: 18px; height: 18px; color: var(--yellow-deep); }

.contact-office-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-office-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink-soft);
}
.contact-office-list li svg { width: 15px; height: 15px; color: var(--grey-dim); margin-top: 2px; flex-shrink: 0; }
.contact-office-list li a { color: var(--ink-soft); text-decoration: none; }
.contact-office-list li a:hover { color: var(--yellow-deep); }

/* ══════════════ FAQ (accordion, dark band) ══════════════ */
.contact-faq { background: var(--coal); }
.contact-faq .section-title { color: var(--white); }

.contact-faq-item {
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-dark);
}

.contact-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .92rem;
  letter-spacing: .03em;
  text-align: left;
  cursor: pointer;
}
.contact-faq-question svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; transition: transform .3s ease; }
.contact-faq-item.is-open .contact-faq-question svg { transform: rotate(45deg); }

.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.contact-faq-answer-inner { padding: 0 22px 20px; color: var(--grey); font-size: .86rem; line-height: 1.7; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 767.98px) {
  .contact-form-row.contact-form-2col { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .contact-info-card { flex-direction: column; text-align: center; align-items: center; }
}



/* ═══════════════════════════════════════════════
   GALLERY PAGE — extra styles
   Reuses the same :root palette/fonts from style.css
   All custom classes prefixed with "gallery-"
   Load this AFTER style.css
   ═══════════════════════════════════════════════ */

/* ══════════════ SECTION ══════════════ */
.gallery-section { background: var(--paper); }

/* ══════════════ FILTER TABS ══════════════ */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-tab {
  border: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .55rem 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.gallery-tab:hover { border-color: var(--yellow); color: var(--ink); }
.gallery-tab.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

/* ══════════════ MASONRY-STYLE GRID ══════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: #dfe2e6;
  box-shadow: 0 4px 18px rgba(20,20,26,.06);
}

/* size variety for a masonry feel */
.gallery-item.gallery-span-2x2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.gallery-span-2x1 { grid-column: span 2; }
.gallery-item.gallery-span-1x2 { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,13,.85) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-cat {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-item-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0;
}

.gallery-item-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(11,11,13,.55);
  color: var(--white);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s ease, transform .3s ease, background .25s;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: scale(1); }
.gallery-item-zoom:hover { background: var(--yellow); color: #111; }
.gallery-item-zoom svg { width: 16px; height: 16px; }

/* hidden state when filtered out */
.gallery-item.is-hidden { display: none; }

/* ══════════════ LOAD MORE ══════════════ */
.gallery-load-more { text-align: center; margin-top: 40px; }

/* ══════════════ LIGHTBOX ══════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,10,.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-lightbox.is-open { display: flex; opacity: 1; }

.gallery-lightbox-inner {
  position: relative;
  width: min(90vw, 1000px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(.94);
  transition: transform .3s ease;
}
.gallery-lightbox.is-open .gallery-lightbox-inner { transform: scale(1); }

.gallery-lightbox-figure {
  margin: 0;
  max-height: 76vh;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.gallery-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-lightbox-caption {
  text-align: center;
  margin-top: 18px;
}
.gallery-lightbox-cat {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-lightbox-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0;
}
.gallery-lightbox-count {
  color: var(--grey);
  font-size: .78rem;
  margin-top: 6px;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.gallery-lightbox-close {
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
}
.gallery-lightbox-close svg { width: 18px; height: 18px; }

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.gallery-lightbox-prev { left: -64px; }
.gallery-lightbox-next { right: -64px; }
.gallery-lightbox-prev svg,
.gallery-lightbox-next svg { width: 20px; height: 20px; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
  .gallery-lightbox-close { top: 8px; right: 8px; }
}

@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.gallery-span-2x2,
  .gallery-item.gallery-span-2x1 { grid-column: span 2; }
  .gallery-item.gallery-span-1x2 { grid-row: span 1; }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .gallery-lightbox-inner { width: 94vw; }
}