/* ============================================================
   ETHOS AUDIO — ethosaudios.com
   Premium dark design system · Bodoni Moda + Jost
   ============================================================ */

:root {
  --bg: #0b0b0d;
  --bg-alt: #101014;
  --surface: #15151a;
  --surface-2: #1c1c23;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f3f1;
  --muted: #a9a7a3;
  --red: #c6202e;
  --red-bright: #e02b3a;
  --red-soft: rgba(198, 32, 46, 0.14);
  --gold: #d3af4e;
  --gold-dim: rgba(211, 175, 78, 0.16);
  --font-display: "Bodoni Moda", "Times New Roman", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; }
ul, ol { padding-left: 1.3em; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4, h5 { font-family: var(--font-body); font-weight: 500; margin: 0 0 0.5em; }

::selection { background: var(--red); color: #fff; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 500;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Layout */
.container { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 110px); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.lead { color: var(--muted); font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 30px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: background 0.22s ease, border-color 0.22s ease,
    color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 28px rgba(198, 32, 46, 0.35); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #14120a; }
.btn-gold:hover { background: #e2c162; transform: translateY(-2px); }

/* ============ Header ============ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: rgba(11, 11, 13, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(11, 11, 13, 0.9); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 148px; height: 34px; object-fit: contain; }
.nav-menu {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px);
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  position: relative; font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  padding: 8px 2px; transition: color 0.2s ease;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { flex: none; min-height: 44px; padding: 10px 20px; font-size: 0.8rem; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 12px; background: none;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 90px));
  padding-bottom: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(58% 68% at 82% 38%, rgba(198, 32, 46, 0.20), transparent 68%),
    radial-gradient(40% 45% at 12% 8%, rgba(211, 175, 78, 0.07), transparent 70%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: 0.45em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: var(--muted); font-size: 1.14rem; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(34px, 4vw, 52px); padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.55rem;
  font-weight: 600; color: var(--text);
}
.hero-stat span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: 8% -6% 0;
  background: radial-gradient(closest-side, rgba(198, 32, 46, 0.32), transparent 72%);
  filter: blur(12px); z-index: 0;
}
.hero-visual img { position: relative; z-index: 1; filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.55)); }
.hero-award-chip {
  position: absolute; z-index: 2; bottom: 4%; left: -2%;
  display: flex; align-items: center; gap: 12px;
  background: rgba(21, 21, 26, 0.88); border: 1px solid var(--border-strong);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 12px 18px; box-shadow: var(--shadow);
}
.hero-award-chip img { width: 92px; height: 26px; object-fit: contain; }
.hero-award-chip span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ============ Awards strip ============ */
.awards-strip { border-block: 1px solid var(--border); background: var(--bg-alt); }
.awards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.award-item {
  background: var(--bg-alt); padding: 26px 22px;
  display: flex; align-items: center; gap: 14px;
}
.award-item svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.award-item strong { display: block; font-weight: 500; font-size: 0.98rem; }
.award-item span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ============ Split (about) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow); width: 100%; object-fit: cover;
}
.split-media .frame-accent {
  content: ""; position: absolute; inset: -16px auto auto -16px; width: 45%; height: 45%;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  border-radius: var(--radius) 0 0 0; opacity: 0.7;
}
.checklist { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.checklist svg { width: 20px; height: 20px; color: var(--red-bright); flex: none; margin-top: 4px; }

/* ============ Category cards ============ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cat-card:hover { transform: translateY(-5px); border-color: rgba(198, 32, 46, 0.5); background: var(--surface-2); }
.cat-card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-bright); margin-bottom: 18px;
}
.cat-card .icon svg { width: 26px; height: 26px; }
.cat-card h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.12rem; letter-spacing: 0.06em; text-transform: uppercase; }
.cat-card p { color: var(--muted); font-size: 0.97rem; }
.cat-card .card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.cat-card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.cat-card:hover .card-link svg { transform: translateX(4px); }
.cat-card > a.stretch::after { content: ""; position: absolute; inset: 0; }

/* ============ Product cards ============ */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.prod-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.prod-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.prod-media { position: relative; background: #000; aspect-ratio: 1; overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(11, 11, 13, 0.78); border: 1px solid var(--border-strong);
  color: var(--gold); padding: 5px 11px; border-radius: 100px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.prod-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-body h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; margin: 0; }
.prod-body .spec { color: var(--muted); font-size: 0.92rem; flex: 1; }
/* Used in BOTH .prod-body (products) and .post-body (blog) cards — do not
   re-scope to .prod-body or the blog arrow loses its size and fills the card. */
.enquire {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright);
}
.enquire svg { width: 15px; height: 15px; flex: none; }
.enquire:hover { color: var(--gold); }

/* Safety net: an inline SVG with no width/height must never expand to fill
   its container if a more specific rule is ever missed. */
a svg, button svg, li svg, p svg { max-width: 100%; }
.enquire svg, .card-link svg, .btn svg { max-height: 1.6em; }

/* Product filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; min-height: 44px; border-radius: 100px;
  background: transparent; border: 1px solid var(--border-strong); color: var(--muted);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--gold); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ============ Feature / why cards ============ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(211, 175, 78, 0.45); }
.feature-card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-dim); color: var(--gold); margin-bottom: 18px;
}
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.08rem; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* ============ Process ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step {
  position: relative; padding: 28px 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.process-step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 600;
  color: var(--red-bright); opacity: 0.85; margin-bottom: 12px;
}
.process-step h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.08rem; }
.process-step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============ Gallery ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 1; background: var(--surface);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset-inline: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-size: 0.86rem; color: #fff; letter-spacing: 0.04em;
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(198, 32, 46, 0.45); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 400; font-size: 1.06rem;
  list-style: none; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  transition: transform 0.25s ease; flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }

/* ============ Contact / visit ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: stretch; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px; display: grid; gap: 22px; align-content: start;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .icon {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  display: grid; place-items: center; background: var(--red-soft); color: var(--red-bright);
}
.info-row .icon svg { width: 21px; height: 21px; }
.info-row strong { display: block; font-weight: 500; margin-bottom: 3px; }
.info-row p, .info-row a { color: var(--muted); margin: 0; }
.info-row a:hover { color: var(--gold); }
.map-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong);
  min-height: 380px; height: 100%; filter: grayscale(0.9) contrast(1.06) brightness(0.92);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table td { padding: 6px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); }

/* ============ CTA band ============ */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(198, 32, 46, 0.22), transparent 70%),
    var(--bg-alt);
  border-block: 1px solid var(--border);
}
.cta-band h2 { max-width: 17em; margin-inline: auto; }
.cta-band .lead { max-width: 38em; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(44px, 6vw, 72px));
  padding-bottom: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(50% 90% at 85% 10%, rgba(198, 32, 46, 0.14), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  list-style: none; padding: 0; margin: 0 0 18px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--border-strong); }
.breadcrumb [aria-current] { color: var(--gold); }

/* ============ Article / blog ============ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.post-card .prod-media { aspect-ratio: 16 / 9; }
.post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-body .meta { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.post-body h2, .post-body h3 { font-size: 1.35rem; margin: 0; }
.post-body p { color: var(--muted); flex: 1; }
.article {
  max-width: 760px; margin-inline: auto;
}
.article-hero-img { border-radius: var(--radius); border: 1px solid var(--border-strong); margin: 34px 0; box-shadow: var(--shadow); }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 1.8em; }
.article h3 { margin-top: 1.5em; }
.article p, .article li { color: #cfcdc9; }
.article .article-meta {
  display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted);
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.article blockquote {
  margin: 1.6em 0; padding: 18px 24px; border-left: 3px solid var(--gold);
  background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text); font-style: italic;
}
.article .tip {
  background: var(--red-soft); border: 1px solid rgba(198, 32, 46, 0.35);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 1.6em 0;
}
.article .tip strong { color: var(--red-bright); }
.article table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.97rem; }
.article th, .article td { text-align: left; padding: 11px 14px; border: 1px solid var(--border); }
.article th { background: var(--surface); font-weight: 500; color: var(--text); }
.article td { color: var(--muted); }
.table-wrap { overflow-x: auto; }

/* ============ Footer ============ */
.site-footer { background: #070708; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px); padding-block: clamp(48px, 7vw, 76px);
}
.footer-grid h4 {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-grid a { color: var(--muted); transition: color 0.2s ease; font-size: 0.97rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand img { width: 168px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 30em; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.02rem; margin-bottom: 12px; }
.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--red-bright); }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--border-strong); color: var(--muted);
  transition: all 0.2s ease;
}
.social-row a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 22px; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.22s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ============ Responsive ============ */
@media (max-width: 1023px) {
  .prod-grid, .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 11, 13, 0.98);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 24px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-menu.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu a { display: block; padding: 15px 4px; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-menu li:last-child a { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .split-media { order: -1; }
  .hero { padding-top: calc(var(--header-h) + 34px); }
}

@media (max-width: 599px) {
  body { font-size: 1rem; }
  .prod-grid, .feature-grid, .process-grid, .cat-grid, .blog-grid,
  .gallery-grid, .gallery-grid.cols-4, .awards-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-award-chip { position: static; margin-top: 18px; width: fit-content; }
  .brand img { width: 128px; height: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
