/* ==========================================================================
   EverBlade Designs — Shared Stylesheet
   Design: Premium dark showroom. Deep purple-black stage (#000000),
   turf green accents (#a5a04a), olive-gold CTAs, Barlow Condensed display type.
   ========================================================================== */

:root {
  --bg: #000000;
  --bg-grad: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  --bg-alt: #000000;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --accent: #a5a04a;
  --accent-soft: #c9c380;
  --gold: #8a8635;
  --gold-bright: #a5a04a;
  --text: #ffffff;
  --text-2: #abb8c3;
  --border: rgba(165, 160, 74, 0.14);
  --shadow-glow: 0 0 0 1px rgba(165, 160, 74, 0.25), 0 18px 50px -12px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

[id] { scroll-margin-top: 96px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease-out); }
a:hover { color: var(--accent-soft); }

::selection { background: rgba(165, 160, 74, 0.35); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); font-weight: 700; }
h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.03em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.7rem; height: 2px;
  background: var(--gold-bright);
}
/* Flush eyebrow variant (no leading dash) — used where the label sits
   flush-left, e.g. CTA bands. Without this, the ::before dash above
   would sit at left:0 with no padding to clear and draw a line straight
   through the first few letters of the text. */
.eyebrow-flush { padding-left: 0; }
.eyebrow-flush::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-2); max-width: 62ch; }

.text-accent { color: var(--accent); }
.text-gold { color: var(--gold-bright); }

/* ---------- Layout ---------- */
.container { width: min(1200px, calc(100% - 3rem)); margin-inline: auto; }
.container-wide { width: min(1400px, calc(100% - 3rem)); margin-inline: auto; }

section { position: relative; padding: clamp(2.75rem, 5vw, 4.5rem) 0; }

.section-dark { background: var(--bg-alt); }
.section-grad { background: var(--bg-grad); }

/* Angled "blade" section edge */
.blade-top { clip-path: polygon(0 2.2rem, 100% 0, 100% 100%, 0 100%); margin-top: -2.2rem; padding-top: calc(clamp(4rem, 8vw, 7rem) + 2.2rem); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.7);
}
.site-header.menu-open { z-index: 1001; background: rgba(0, 0, 0, 0.96); box-shadow: none; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.logo img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.2rem; }
.main-nav > a, .nav-drop > button {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.main-nav > a:hover, .main-nav > a.active, .nav-drop > button:hover { color: var(--accent); }
.main-nav > a.active { position: relative; }
.main-nav > a.active::after {
  content: ""; position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.2rem;
  height: 2px; background: var(--accent);
}

.nav-drop { position: relative; }
.nav-drop > button::after { content: " ▾"; font-size: 0.7em; color: var(--accent-soft); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px) scale(0.98);
  min-width: 230px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out), visibility 0.18s;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1);
}
.nav-drop-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
  border-radius: 8px;
}
.nav-drop-menu a:hover { background: rgba(165, 160, 74, 0.12); color: var(--accent); }

.header-cta { margin-left: 0.4rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  padding: calc(5.4rem + env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-home { color: var(--accent) !important; }
.mobile-nav-group { border-bottom: 1px solid rgba(255, 255, 255, 0.11); }
.mobile-nav-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 1rem 0;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-plus { color: var(--accent); font-size: 1.55rem; line-height: 1; transition: transform 0.2s var(--ease-out); }
.mobile-nav-group[open] > summary .mobile-nav-plus, .mobile-nav-subgroup[open] > summary .mobile-nav-plus { transform: rotate(45deg); }
.mobile-nav-links { display: grid; gap: 0.65rem; padding: 0.15rem 0 1rem; }
.mobile-nav-subgroup { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; background: rgba(255, 255, 255, 0.025); }
.mobile-nav-subgroup summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.4rem; padding: 0.75rem 0.9rem; color: var(--accent-soft); cursor: pointer; font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; list-style: none; text-transform: uppercase; }
.mobile-nav-subgroup summary::-webkit-details-marker { display: none; }
.mobile-nav-subgroup .mobile-nav-plus { font-size: 1.25rem; }
.mobile-nav-subgroup-links { display: grid; gap: 0.1rem; padding: 0 0.9rem 0.7rem; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.mobile-nav-subgroup-links a { color: var(--text-2); font-size: 1rem; font-weight: 600; letter-spacing: 0.035em; }
.mobile-nav-contact { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s var(--ease-out), color 0.2s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, #96912f 0%, #7a761f 100%);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(150, 145, 47, 0.55);
}
.btn-gold:hover { background: linear-gradient(135deg, #a8a340 0%, #8a8629 100%); color: #fff; box-shadow: 0 14px 34px -10px rgba(150, 145, 47, 0.75); transform: translateY(-2px); }

.btn-green {
  background: linear-gradient(135deg, #96912f 0%, #7a761f 100%);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(150, 145, 47, 0.55);
}
.btn-green:hover { background: linear-gradient(135deg, #a8a340 0%, #8a8629 100%); color: #fff; box-shadow: 0 14px 34px -10px rgba(150, 145, 47, 0.75); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(165, 160, 74, 0.5);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(165, 160, 74, 0.07); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
  isolation: isolate;
}
.hero.hero-short { min-height: 62vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.92) 88%, #000000 100%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.hero-content { max-width: 780px; }
.hero-content h1 { margin: 0.6rem 0 1.1rem; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.hero-content .lead { margin-bottom: 2rem; color: #d5dde2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Ghost numerals benefit rows ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.benefit {
  position: relative;
  padding: 2.4rem 1.8rem 1.9rem;
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.65) 0%, rgba(12, 12, 12, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: rgba(165, 160, 74, 0.4); }
.benefit .num {
  position: absolute;
  top: -1.4rem; right: 0.4rem;
  font-family: var(--font-display);
  font-size: 6.4rem;
  font-weight: 800;
  color: rgba(165, 160, 74, 0.1);
  line-height: 1;
  pointer-events: none;
}
.benefit h4 { color: var(--accent-soft); margin-bottom: 0.7rem; }
.benefit p { color: var(--text-2); font-size: 1rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; margin-top: 3rem; }
.card {
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(165, 160, 74, 0.45); }
.card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.card-body h3 { border-left: 3px solid var(--gold-bright); padding-left: 0.8rem; }
.card-body p { color: var(--text-2); font-size: 0.98rem; flex: 1; }
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link::after { content: "→"; transition: transform 0.2s var(--ease-out); }
.card:hover .card-link::after { transform: translateX(5px); }

/* Product spec cards (blades, pavers) */
.product-card {
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(165, 160, 74, 0.4); box-shadow: var(--shadow-glow); }
.product-card .product-img {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-img.contain img { object-fit: contain; padding: 0.8rem; }
.product-card .product-img.turf-sample {
  aspect-ratio: 4/3;
  background: transparent;
  overflow: visible;
}
.product-card .product-img.contain.turf-sample img {
  padding: 0;
  transform: scale(1.2);
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.55));
}
.product-card h4 { color: var(--accent-soft); margin-bottom: 0.5rem; }
.product-card p { color: var(--text-2); font-size: 0.95rem; }
.product-card .spec { margin-top: 0.8rem; font-size: 0.85rem; color: var(--gold-bright); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.9rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(165, 160, 74, 0.2);
}
.product-specs li { min-width: 0; display: flex; flex-direction: column; gap: 0.14rem; }
.product-specs span { color: var(--text-3); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em; line-height: 1.2; text-transform: uppercase; }
.product-specs strong { color: var(--accent-soft); font-size: 0.82rem; font-weight: 700; line-height: 1.25; }
.pro-spec-note { max-width: 760px; margin: 1.5rem auto 0; color: var(--text-3); font-size: 0.84rem; text-align: center; }
@media (max-width: 420px) {
  .product-specs { gap: 0.65rem; }
  .product-specs strong { font-size: 0.77rem; }
}

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.15fr; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7); position: relative; }
.split-img::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(165, 160, 74, 0.18); border-radius: var(--radius); pointer-events: none; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Blade product image carousels ---------- */
.product-image-carousel { overflow: visible; }
.product-image-carousel::after { z-index: 3; }
.product-image-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(310px, 32vw, 430px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, rgba(45, 68, 27, 0.25), rgba(4, 4, 4, 0.96) 67%);
  touch-action: pan-y;
  cursor: ew-resize;
}
.product-image-carousel .product-image-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 2.2rem);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.24s var(--ease-out), transform 0.32s var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}
.product-image-carousel .product-image-stage img.is-active { opacity: 1; transform: none; }
.product-image-carousel .product-image-stage img[data-product-image-kind="turf"] { padding: clamp(0.35rem, 1vw, 0.85rem); }
.product-image-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(165, 160, 74, 0.58);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  color: var(--accent-soft);
  cursor: pointer;
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.product-image-prev { left: 0.85rem; }
.product-image-next { right: 0.85rem; }
.product-image-arrow:hover, .product-image-arrow:focus-visible { background: var(--accent); color: #090909; transform: translateY(-50%) scale(1.05); }
.product-image-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.product-image-count { position: absolute; z-index: 2; top: 0.8rem; right: 0.8rem; padding: 0.38rem 0.55rem; border-radius: 999px; background: rgba(0, 0, 0, 0.64); color: var(--accent-soft); font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; }
.product-image-hint { margin: 0.7rem 0 0; color: var(--text-2); font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.075em; text-align: center; text-transform: uppercase; }

/* ---------- Gallery + Lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 3rem; }
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0714;
  padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease-out), opacity 0.3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "⛶";
  position: absolute;
  right: 0.7rem; bottom: 0.6rem;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  color: var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }
.sport-project-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------- Media page project carousels ---------- */
.media-directory { padding-bottom: 0; position: relative; z-index: 4; }
.media-directory-links { display: flex; justify-content: center; gap: 0.65rem; flex-wrap: wrap; }
.media-directory-links .btn { min-width: 0; }
.media-gallery { margin-top: 2.6rem; }
.media-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-template-columns: none;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.2rem 0.1rem 1rem;
  outline: none;
}
.media-gallery-track::-webkit-scrollbar { display: none; }
.media-gallery-track:focus-visible { box-shadow: 0 0 0 2px var(--accent); border-radius: 14px; }
.media-gallery-track:has(> .gallery-item:only-child) { grid-auto-columns: 100%; }
.media-gallery .gallery-item {
  aspect-ratio: 1.23 / 1;
  scroll-snap-align: start;
  box-shadow: 0 18px 42px -25px rgba(0, 0, 0, 0.9);
}
.media-gallery .gallery-item::before {
  content: "View project";
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 0.9rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.media-gallery .gallery-item::after { z-index: 1; }
.media-gallery .gallery-item:hover::before,
.media-gallery .gallery-item:focus-visible::before { opacity: 1; transform: translateY(0); }
.media-gallery .gallery-item:hover::after,
.media-gallery .gallery-item:focus-visible::after { opacity: 1; }
.media-gallery .gallery-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.media-gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.media-gallery-hint { margin: 0; color: var(--text-2); font-size: 0.88rem; }
.media-gallery-controls { display: flex; align-items: center; gap: 0.55rem; flex: 0 0 auto; }
.media-gallery-count {
  min-width: 4.7rem;
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-align: right;
}
.media-gallery-arrow {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(165, 160, 74, 0.5);
  background: rgba(255, 255, 255, 0.035);
  color: var(--accent);
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out), opacity 0.2s;
}
.media-gallery-arrow:hover:not(:disabled), .media-gallery-arrow:focus-visible:not(:disabled) { background: var(--accent); color: #090909; transform: translateY(-2px); }
.media-gallery-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.media-gallery-arrow:disabled { cursor: not-allowed; opacity: 0.3; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease-out), visibility 0.22s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  transform: scale(0.96);
  transition: transform 0.25s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute;
  top: max(1.2rem, env(safe-area-inset-top));
  right: 1.4rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.16s var(--ease-out);
  z-index: 2;
}
.lb-close:hover { background: rgba(165, 160, 74, 0.25); }
.lb-close:active { transform: scale(0.94); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 76px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lb-nav:hover { background: rgba(165, 160, 74, 0.22); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter {
  position: absolute;
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-2);
}

/* ---------- Tabs (blades section) ---------- */
.tabs { margin-top: 2.6rem; }
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}
.tab-btn {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.16s var(--ease-out);
}
.tab-btn:hover { color: var(--text); background: rgba(165, 160, 74, 0.08); }
.tab-btn:active { transform: scale(0.97); }
.tab-btn.active {
  color: #241f0a;
  background: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(165, 160, 74, 0.6);
}
.tab-panel { display: none; animation: tabIn 0.35s var(--ease-out); }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
@keyframes tabIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tab-panel .split-img { max-height: 420px; }
.tab-panel .split-img img { max-height: 420px; }
.tab-tagline { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--gold-bright); letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.tab-panel p { color: var(--text-2); margin-bottom: 0.9rem; }
.tab-perfect { color: var(--accent-soft); font-weight: 600; font-style: italic; }

/* ---------- Logo bar ---------- */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 1rem 0;
}
.logo-bar img {
  height: 58px;
  width: 100%;
  opacity: 0.92;
  filter: grayscale(10%);
  transition: opacity 0.25s var(--ease-out), filter 0.25s, transform 0.25s var(--ease-out);
}
.logo-bar img:hover { opacity: 1; filter: none; transform: translateY(-3px); }

/* ---------- Home page refinements ---------- */
.home-logo-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.7rem, 4vw, 3.8rem) clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}
.home-logo-item {
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.home-logo-bar img {
  display: block;
  max-width: 100%;
  max-height: 118px;
  width: 100%;
  height: auto;
  object-fit: contain;
  justify-self: center;
  opacity: 0.96;
  transition: opacity 0.25s var(--ease-out), filter 0.25s, transform 0.25s var(--ease-out);
}
.home-logo-bar img:hover { opacity: 1; filter: none; transform: translateY(-3px); }

.home-category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.home-category-grid .card-body { padding: 1.15rem 1rem 1.3rem; }
.home-category-grid .card-body h3 { font-size: clamp(1.2rem, 1.6vw, 1.55rem); padding-left: 0.65rem; }
.home-category-grid .card-body p { font-size: 0.9rem; }
.home-category-grid .card-link { font-size: 0.9rem; }

.blade-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: 2.6rem;
}
.blade-accordion { display: grid; gap: 0.7rem; }
.blade-option {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.56), rgba(0, 0, 0, 0.9));
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.blade-option.active { border-color: rgba(165, 160, 74, 0.65); box-shadow: 0 12px 28px -22px rgba(165, 160, 74, 0.8); }
.blade-toggle {
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.blade-toggle span:last-child { color: var(--gold-bright); font-size: 1.35rem; line-height: 1; }
.blade-option.active .blade-toggle { color: var(--accent-soft); }
.blade-option.active .blade-toggle span:last-child { transform: rotate(45deg); }
.blade-detail {
  max-height: 0;
  padding: 0 1rem;
  color: var(--text-2);
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s var(--ease-out), padding 0.3s var(--ease-out), opacity 0.22s;
}
.blade-option.active .blade-detail { max-height: 30rem; padding: 0 1rem 1rem; opacity: 1; }
.blade-detail p { margin-bottom: 0.75rem; }
.blade-detail .blade-perfect { color: var(--accent-soft); font-style: italic; font-weight: 600; }
.blade-preview {
  position: sticky;
  top: 7rem;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: clamp(0.65rem, 2vw, 1.25rem);
  border: 1px solid rgba(165, 160, 74, 0.28);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 38%, rgba(39, 57, 21, 0.25), rgba(4, 4, 4, 0.92) 65%);
  overflow: hidden;
}
.blade-preview img {
  width: 210%;
  max-width: 960px;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.6));
  transition: opacity 0.18s var(--ease-out), transform 0.28s var(--ease-out);
}
.blade-preview img.is-changing { opacity: 0.25; transform: scale(0.97); }

/* Mobile-only Signature Blade Explorer */
.blade-mobile-explorer { display: none; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.6rem; display: grid; gap: 1rem; max-width: 900px; }
.faq-item {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(165, 160, 74, 0.45); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  padding: 1.15rem 1.4rem;
  cursor: pointer;
}
.faq-q h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; }
.faq-q .faq-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(165, 160, 74, 0.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.25s var(--ease-out), background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(165, 160, 74, 0.28); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out); }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--text-2); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; margin-top: 3rem; }
.testimonial {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial .stars { color: var(--gold-bright); letter-spacing: 0.2em; font-size: 1.05rem; }
.testimonial p { color: var(--text-2); font-style: italic; flex: 1; }
.testimonial .who { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-soft); }
.testimonial .who span { display: block; font-family: var(--font-body); font-size: 0.82rem; color: var(--text-2); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--bg-grad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(165, 160, 74, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { max-width: 760px; margin: 0.6rem auto 1rem; }
.cta-band .lead { margin: 0 auto 2.2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0714;
  border-top: 1px solid rgba(165, 160, 74, 0.1);
  padding: 4rem 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer-grid h4 { color: var(--accent-soft); font-size: 1.05rem; margin-bottom: 1.1rem; letter-spacing: 0.1em; }
.footer-about img { height: 54px; margin-bottom: 1.2rem; }
.footer-about p { color: var(--text-2); font-size: 0.92rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 1.4rem; }
.footer-links a { color: var(--text-2); padding: 0.22rem 0; display: block; font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: var(--text-2); margin-bottom: 0.55rem; }
.footer-contact a { color: var(--text); font-weight: 600; }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, transform 0.16s var(--ease-out);
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(171, 184, 195, 0.7);
  font-size: 0.85rem;
}

/* ---------- Scroll animations ---------- */
/* Reveal-on-scroll fade-in was removed: on slower connections or fast
   scrolling it could leave sections sitting at opacity:0 (looking like
   blank/black gaps) for a moment before the IntersectionObserver fired.
   Content is now always visible immediately; no fade/translate on scroll. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    animation: heroIn 0.8s var(--ease-out) both;
  }
  .hero-content > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.24s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.36s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
}

/* ---------- Forms / embeds ---------- */
.contact-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 2.5rem; align-items: start; }
.contact-layout > * { min-width: 0; }
.embed-frame {
  position: relative;
  min-height: 820px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.embed-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 820px;
  height: 820px !important;
  border: none;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  left: auto !important;
  pointer-events: auto !important;
}

.info-card {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.info-card h3 { color: var(--accent-soft); margin-bottom: 0.8rem; font-size: 1.25rem; }
.info-card p { color: var(--text-2); margin-bottom: 0.4rem; }
.info-card a { font-weight: 600; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.stat {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%);
}
.stat .value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat .label { margin-top: 0.6rem; color: var(--text-2); font-size: 0.95rem; }

/* ---------- Prose (warranty text etc.) ---------- */
.prose { max-width: 860px; color: var(--text-2); }
.prose h2, .prose h3 { color: var(--text); margin: 2.2rem 0 0.9rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0.6rem 0 1.2rem 1.4rem; }
.prose li { margin-bottom: 0.45rem; }
.prose strong { color: var(--accent-soft); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1rem; letter-spacing: 0.04em; }
.breadcrumbs a { color: var(--accent-soft); }
.breadcrumbs span { margin: 0 0.45rem; color: rgba(171,184,195,0.5); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.section-head { max-width: 820px; }
.section-head.center { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.flag-note { font-size: 0.8rem; color: rgba(171,184,195,0.55); font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 1230px) {
  .main-nav > a, .nav-drop > button { font-size: 0.94rem; padding: 0.5rem 0.55rem; }
}
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .split, .split.reverse, .tab-panel.active, .grid-2, .contact-layout { grid-template-columns: 1fr; }
  /* Keep each blade story together when the desktop split stacks vertically. */
  .split.reverse > .reveal { order: 1; }
  .split.reverse > .product-image-carousel { order: 2; }
  .product-image-stage { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .hero { min-height: 74vh; }
  .home-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blade-showcase { grid-template-columns: 1fr; }
  .blade-preview { position: static; min-height: 320px; }
  .media-gallery-track { grid-auto-columns: calc((100% - 1rem) / 2); }
  .sport-project-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .blade-showcase { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr); align-items: start; }
  .blade-preview { position: sticky; top: 6.3rem; min-height: 340px; }
}
@media (max-width: 767px) {
  .blade-showcase { display: block; margin-top: 1.8rem; }
  .blade-showcase.mobile-explorer-ready > .blade-accordion,
  .blade-showcase.mobile-explorer-ready > .blade-preview { display: none; }
  .blade-showcase.mobile-explorer-ready .blade-mobile-explorer { display: block; }
  .blade-mobile-stage {
    position: relative;
    min-height: 285px;
    display: grid;
    place-items: center;
    overflow: hidden;
    touch-action: pan-y;
    cursor: ew-resize;
    border: 1px solid rgba(165, 160, 74, 0.34);
    border-radius: var(--radius);
    background: radial-gradient(circle at 50% 38%, rgba(39, 57, 21, 0.27), rgba(4, 4, 4, 0.96) 67%);
  }
  .blade-mobile-stage img {
    width: 205%;
    max-width: none;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.6));
    transition: opacity 0.18s var(--ease-out), transform 0.28s var(--ease-out);
  }
  .blade-mobile-stage img.is-changing { opacity: 0.25; transform: scale(0.97); }
  .blade-mobile-count {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.38rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.64);
    color: var(--accent-soft);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
  .blade-mobile-heading { display: grid; grid-template-columns: 2.9rem 1fr 2.9rem; align-items: center; gap: 0.7rem; margin: 1.15rem 0 0.8rem; }
  .blade-mobile-heading h3 { margin: 0; color: var(--accent-soft); font-size: clamp(1.45rem, 7vw, 1.9rem); text-align: center; text-transform: uppercase; }
  .blade-mobile-arrow {
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(165, 160, 74, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
    cursor: pointer;
    font-size: 1.2rem;
  }
  .blade-mobile-arrow:focus-visible, .blade-mobile-picker:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
  .blade-mobile-explorer > p { margin-bottom: 0.8rem; color: var(--text-2); }
  .blade-mobile-explorer > .blade-perfect { color: var(--accent-soft); font-style: italic; font-weight: 600; }
  .blade-mobile-picker-label { display: block; margin: 1.5rem 0 0.45rem; color: var(--text-2); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
  .blade-mobile-picker { width: 100%; min-height: 3.25rem; padding: 0 0.9rem; border: 1px solid rgba(165, 160, 74, 0.46); border-radius: 9px; background: #121212; color: var(--text); font: inherit; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .sport-project-gallery { grid-template-columns: 1fr; }
  .lb-nav { width: 46px; height: 62px; }
  .logo img { height: 38px; }
  .hero { min-height: 66vh; }
  .site-header { background: rgba(0, 0, 0, 0.82); }
  .header-inner { padding: 0.7rem 0; }
  .hero { padding-top: calc(4.4rem + env(safe-area-inset-top)); }
  .hero.hero-short { min-height: 60vh; }
  .mobile-nav-links { grid-template-columns: 1fr; }
  .home-logo-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .home-logo-item { min-height: 112px; padding: 0.5rem; }
  .home-logo-bar img { width: 100%; max-width: 100%; max-height: 94px; object-fit: contain; }
  .embed-frame { min-height: 400px !important; }
  #contact-form > #cyxseqUrRBtex2yUuTyy { min-height: 400px !important; height: 400px !important; }
  .home-category-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .home-category-grid .card-body { padding: 1.25rem; }
  .blade-toggle { font-size: 1.1rem; }
  .blade-preview { min-height: 260px; }
  .media-directory-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; padding: 0.2rem 0; }
  .media-directory-links .btn { width: 100%; min-height: 3.15rem; padding: 0.65rem 0.45rem; font-size: 0.9rem; line-height: 1.15; text-align: center; white-space: normal; }
  .media-gallery { margin-top: 2rem; }
  .media-gallery-track { grid-auto-columns: min(calc(100% - 2.75rem), 430px); padding-bottom: 0.7rem; }
  .media-gallery .gallery-item { aspect-ratio: 1.16 / 1; }
  .media-gallery-footer { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .media-gallery-hint { max-width: none; line-height: 1.35; }
  .media-gallery-controls { width: 100%; justify-content: flex-end; }
  .media-gallery-count { margin-right: auto; text-align: left; }
}
