/* ===================================================================
   Dveře a Podlahy s.r.o. — Design System
   =================================================================== */

:root {
  --color-bg: #FAFAFA;
  --color-surface: #F2F3F5;
  --color-dark: #15171F;
  --color-accent: #DC2A1F;
  --color-accent-dark: #B8221A;
  --color-text: #15171F;
  --color-muted: #6B7280;
  --color-line: #E5E7EB;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --header-h: 84px;
  --maxw: 1280px;
  --shadow-sm: 0 2px 10px rgba(21, 23, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(21, 23, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(21, 23, 31, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--color-text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { color: var(--color-text); }
.muted { color: var(--color-muted); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--surface { background: var(--color-surface); }
.section--dark { background: var(--color-dark); color: #fff; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--color-accent); }
.section-head { max-width: 780px; margin-bottom: 60px; }
/* editorial: left-aligned heads, even where markup says .center */
.section-head.center { margin-left: 0; margin-right: 0; text-align: left; }
.section-head p { color: var(--color-muted); font-size: 1.1rem; margin-top: 16px; }
.lead { font-size: 1.18rem; color: var(--color-muted); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  overflow: hidden;
  transition: color var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); }

.btn--dark { background: var(--color-dark); color: #fff; }
.btn--dark::before { background: var(--color-accent); }
.btn--dark:hover { color: var(--color-dark); }

.btn--gold { background: var(--color-accent); color: #fff; }
.btn--gold::before { background: var(--color-dark); }
.btn--gold:hover { color: #fff; }

.btn--ghost { border: 1.5px solid currentColor; color: var(--color-text); }
.btn--ghost::before { background: var(--color-dark); }
.btn--ghost:hover { color: #fff; border-color: var(--color-dark); }

.btn--light { background: #fff; color: var(--color-dark); }
.btn--light::before { background: var(--color-accent); }
.btn--light:hover { color: #fff; }

.btn--hero-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn--hero-ghost::before { background: #fff; }
.btn--hero-ghost:hover { color: var(--color-dark); border-color: #fff; }

.btn--outline { border: 1.5px solid var(--color-line); color: var(--color-text); background: #fff; }
.btn--outline::before { background: var(--color-dark); }
.btn--outline:hover { color: #fff; border-color: var(--color-dark); }

.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 221, 212, 0.55);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(250, 250, 250, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 9px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; position: relative; gap: 20px; }

/* Logo (image wordmark) */
.logo { display: flex; align-items: center; line-height: 0; }
.logo__img { height: 52px; width: auto; display: block; transition: height var(--transition); }
.header.scrolled .logo__img { height: 44px; }

/* Header right-side actions */
.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.header__phone { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-line); background: var(--color-surface); color: var(--color-text); transition: color var(--transition), border-color var(--transition), background var(--transition); }
.header__phone svg { width: 18px; height: 18px; color: var(--color-accent); }
.header__phone span { display: none; }
.header__phone:hover { border-color: var(--color-accent); background: var(--color-surface); }

/* Nav — centered */
.nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover::after,
.nav__item.active > .nav__link::after { transform: scaleX(1); }
.nav__link:hover { color: var(--color-accent); }
.header.transparent:not(.scrolled) .nav__link { color: rgba(255,255,255,0.92); }
.header.transparent:not(.scrolled) .nav__link:hover { color: #fff; }
.nav__caret { width: 10px; height: 10px; transition: transform var(--transition); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border: 1px solid var(--color-line);
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--color-text);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown a:hover { background: var(--color-surface); color: var(--color-accent); padding-left: 22px; }

.nav__cta { padding: 12px 22px; font-size: 0.88rem; }
.nav__cta-ic { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; justify-content: center; z-index: 1100; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--color-text); transition: transform var(--transition), opacity var(--transition), background var(--transition); border-radius: 2px; }
.header.transparent:not(.scrolled) .hamburger span { background: #fff; }
body.menu-open .hamburger span { background: var(--color-dark); }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* keep header (with the X + contact icons) above the open menu */
body.menu-open .header { background: var(--color-bg); box-shadow: none; }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 104px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.5rem; padding: 10px 0; display: block; }
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu .mm-group > span { display: block; color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); margin: 18px 0 4px; }
.mobile-menu .mm-sub a { font-size: 1.05rem; color: rgba(255,255,255,0.75); padding: 5px 0 5px 16px; }

/* ===================================================================
   HERO (homepage)
   =================================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 54px) 0 76px;
  background: var(--color-bg);
  overflow: hidden;
}
/* unused (kept for markup compatibility) */
.hero__pattern { display: none; }
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero__text { padding: 8px 0 24px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); margin-bottom: 22px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.04s; }
.hero__kicker::before { content: ""; width: 28px; height: 1px; background: var(--color-accent); }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.9rem); line-height: 1.05; margin-bottom: 22px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.1s; }
.hero h1 .hl { display: block; white-space: nowrap; }
.hero h1 .accent { color: var(--color-accent); }
.hero__sub { font-size: 1.1rem; color: var(--color-muted); max-width: 480px; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.24s; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.36s; }
.hero__visual { position: relative; opacity: 0; animation: heroFade 1s ease forwards 0.2s; }
.hero__visual::before {
  content: ""; position: absolute; z-index: 0;
  top: -24px; bottom: -24px; left: 38px; right: -8vw;
  background: var(--color-surface); border-radius: var(--radius-lg);
}
.hero__photo { position: relative; z-index: 2; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4.6; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: #fff; padding: 12px 20px; border-radius: var(--radius);
  font-size: 0.84rem; font-weight: 600; box-shadow: var(--shadow-md);
}
.hero__badge b { color: var(--color-accent); }

/* hero feature strip (4 USP cards) — flat, clean */
.hero__features {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 64px; border-top: 1px solid var(--color-line);
}
.feature { padding: 30px 34px 4px 0; }
.feature + .feature { padding-left: 34px; border-left: 1px solid var(--color-line); }
.feature__ic { width: 40px; height: 40px; color: var(--color-accent); margin-bottom: 16px; }
.feature__ic svg { width: 38px; height: 38px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature small { display: block; font-size: 0.74rem; letter-spacing: 0.01em; text-transform: none; color: var(--color-muted); line-height: 1.5; }

@keyframes heroSlide { to { opacity: 1; transform: translateX(0); } }
@keyframes heroFade { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================================================
   CATEGORY CARDS
   =================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative;
  display: block;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.cat-card__img { position: absolute; inset: 0; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(21,23,31,0.85) 0%, rgba(21,23,31,0.15) 55%, rgba(21,23,31,0.05) 100%);
  transition: background var(--transition);
}
.cat-card:hover .cat-card__img img { transform: scale(1.04); }
.cat-card:hover::after { background: linear-gradient(to top, rgba(21,23,31,0.92) 0%, rgba(21,23,31,0.4) 55%, rgba(21,23,31,0.15) 100%); }
.cat-card__body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; }
.cat-card__body h3 { color: #fff; font-size: 1.9rem; margin-bottom: 6px; }
.cat-card__body p { color: rgba(255,255,255,0.85); font-size: 0.98rem; margin-bottom: 16px; }
.cat-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cat-card__link .arrow { transition: transform var(--transition); }
.cat-card:hover .cat-card__link .arrow { transform: translateX(6px); }

/* ===================================================================
   WHY US — USP blocks
   =================================================================== */
.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.usp {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; padding: 34px; border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp__icon { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--color-surface); color: var(--color-accent); }
.usp__icon svg { width: 28px; height: 28px; }
.usp h3 { font-size: 1.25rem; margin-bottom: 8px; }
.usp p { color: var(--color-muted); font-size: 0.97rem; }

/* ===================================================================
   FEATURED PRODUCT STRIPS
   =================================================================== */
.strip { margin-bottom: 56px; }
.strip:last-child { margin-bottom: 0; }
.strip__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.strip__head h3 { font-size: 1.6rem; }
.strip__track {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--color-accent) var(--color-surface);
}
.strip__track::-webkit-scrollbar { height: 6px; }
.strip__track::-webkit-scrollbar-track { background: var(--color-surface); border-radius: 3px; }
.strip__track::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }
.product {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-line); transition: transform var(--transition), box-shadow var(--transition);
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product__img { aspect-ratio: 4/3; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product:hover .product__img img { transform: scale(1.05); }
.product__body { padding: 20px 22px 24px; }
.product__brand { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.product__body h4 { font-family: var(--font-display); font-size: 1.2rem; margin: 6px 0 12px; }
.product__link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--color-dark); }
.product__link .arrow { transition: transform var(--transition); }
.product:hover .product__link .arrow { transform: translateX(4px); }

/* ===================================================================
   SHOWROOM (split layout, light section)
   =================================================================== */
.showroom .split__text h2 { white-space: nowrap; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.showroom__info { display: flex; gap: 40px; flex-wrap: wrap; margin: 26px 0 30px; }
.showroom__info .block { border-left: 2px solid var(--color-accent); padding-left: 18px; }
.showroom__info .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 6px; }
.showroom__info .val { color: var(--color-text); font-weight: 500; font-size: 0.98rem; line-height: 1.5; }

/* ===================================================================
   CLIENTS
   =================================================================== */
.clients { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 26px 52px; }
.clients__logo { display: flex; align-items: center; justify-content: center; height: 64px; }
.clients__logo img { max-height: 56px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: filter var(--transition), opacity var(--transition), transform var(--transition); }
.clients__logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }

/* ===================================================================
   GALLERY TEASER + GRID
   =================================================================== */
.gal-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1/1; cursor: pointer; isolation: isolate;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: rgba(21,23,31,0); transition: background var(--transition); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { background: rgba(21,23,31,0.32); }
.gal-item__zoom { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; opacity: 0; transition: opacity var(--transition); }
.gal-item__zoom svg { width: 38px; height: 38px; color: #fff; }
.gal-item:hover .gal-item__zoom { opacity: 1; }

/* ===================================================================
   CONTACT STRIP (dark)
   =================================================================== */
.contact-strip { background: var(--color-dark); color: #fff; }
.contact-strip .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.contact-strip h2 { color: #fff; }
/* light eyebrow + tick on dark sections (for contrast on navy) */
.contact-strip .eyebrow,
.showroom .eyebrow,
.section--dark .eyebrow { color: rgba(255,255,255,0.6); }
.contact-strip .eyebrow::before,
.showroom .eyebrow::before,
.section--dark .eyebrow::before { background: rgba(255,255,255,0.4); }
.contact-strip__rows { display: flex; flex-wrap: wrap; gap: 28px 50px; margin-top: 26px; }
.cinfo .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 5px; }
.cinfo a, .cinfo .val { color: #fff; font-size: 1.15rem; font-weight: 500; transition: color var(--transition); }
.cinfo a:hover { color: var(--color-accent); }
.contact-strip__cta { display: flex; justify-content: flex-end; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #1f1f1f; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__grid h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer__grid a { display: block; padding: 4px 0; font-size: 0.92rem; transition: color var(--transition); }
.footer__grid a:hover { color: var(--color-accent); }
.footer .logo__main { color: #fff; font-size: 1.3rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; display: inline-block; }
.footer p, .footer__about { color: rgba(255,255,255,0.65); }
.footer__about { font-size: 0.92rem; margin-top: 16px; max-width: 280px; }
.footer__grid a { color: rgba(255,255,255,0.7); }
.footer__bottom { color: rgba(255,255,255,0.55); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }

/* ===================================================================
   SUBPAGE HERO
   =================================================================== */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px;
  min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,23,31,0.85), rgba(21,23,31,0.35)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 640px; }
.breadcrumb { font-size: 0.82rem; letter-spacing: 0.05em; margin-bottom: 16px; color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; font-weight: 500; }

/* ---------- Subcategory cards ---------- */
.subcat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.subcat {
  display: block; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-line); transition: transform var(--transition), box-shadow var(--transition);
}
.subcat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.subcat__img { aspect-ratio: 16/10; overflow: hidden; }
.subcat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.subcat:hover .subcat__img img { transform: scale(1.05); }
.subcat__body { padding: 24px 26px 28px; }
.subcat__body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.subcat__body p { color: var(--color-muted); font-size: 0.96rem; margin-bottom: 14px; }
.subcat__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.85rem; color: var(--color-accent); }
.subcat:hover .subcat__link .arrow { transform: translateX(5px); }
.subcat__link .arrow { transition: transform var(--transition); }

/* ---------- Brand strip ---------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 22px; }
.brand-pill {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  padding: 12px 30px; border: 1px solid var(--color-line); border-radius: 50px;
  background: #fff; color: var(--color-text); transition: all var(--transition);
}
.brand-pill:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }

/* ---------- Services list ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.service { display: flex; gap: 16px; align-items: flex-start; }
.service__ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px; background: var(--color-surface); color: var(--color-accent); display: grid; place-items: center; }
.service__ic svg { width: 22px; height: 22px; }
.service h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.service p { color: var(--color-muted); font-size: 0.92rem; }

/* ---------- Two-column text + image (subcategory body) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split__text h2 { margin-bottom: 18px; }
.split__text p { color: var(--color-muted); margin-bottom: 16px; }
.checklist { margin-top: 20px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--color-text); }
.checklist li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--color-accent); margin-top: 2px; }

/* ---------- Product photo grid (subcategory) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.photo-grid .gal-item { aspect-ratio: 4/3; }

/* ---------- Info / measure CTA box ---------- */
.cta-box {
  background: var(--color-dark); color: #fff; border-radius: var(--radius-lg);
  padding: 46px; text-align: center; box-shadow: var(--shadow-md);
}
.cta-box h3 { color: #fff; font-size: 1.7rem; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.82); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-box .btn { margin: 0 6px 10px; }

/* ---------- Related categories ---------- */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.related a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 26px; background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius); font-family: var(--font-display); font-size: 1.2rem;
  transition: all var(--transition);
}
.related a:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.related a .arrow { transition: transform var(--transition); color: var(--color-accent); }
.related a:hover .arrow { transform: translateX(5px); }

/* ===================================================================
   GALLERY PAGE
   =================================================================== */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--color-line); color: var(--color-muted); background: #fff;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.filter-btn.active { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }

.masonry { columns: 3; column-gap: 16px; }
.masonry .gal-item {
  aspect-ratio: auto; margin-bottom: 16px; break-inside: avoid; width: 100%; display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.masonry .gal-item img { aspect-ratio: auto; }
.gal-item.hide { display: none; }
.gal-item.fade-out { opacity: 0; transform: scale(0.96); }

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(20,20,20,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg);
  transform: scale(0.95); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox.slide-next .lightbox__img { animation: slideFromRight 0.35s ease; }
.lightbox.slide-prev .lightbox__img { animation: slideFromLeft 0.35s ease; }
@keyframes slideFromRight { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideFromLeft { from { transform: translateX(-40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.12);
  color: #fff; display: grid; place-items: center; transition: background var(--transition);
  z-index: 2;
}
.lb-btn:hover { background: var(--color-accent); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center; transition: background var(--transition); z-index: 2; }
.lb-close:hover { background: var(--color-accent); }
.lb-btn svg, .lb-close svg { width: 24px; height: 24px; }
.lb-counter { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 0.9rem; letter-spacing: 0.1em; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-intro__photo { float: none; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 26px; box-shadow: var(--shadow-sm); aspect-ratio: 16/10; }
.contact-intro__photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-side { display: flex; flex-direction: column; gap: 26px; }
.hours-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.hours-card h3 { margin-bottom: 4px; }
.contact-intro h2 { margin-bottom: 18px; }
.contact-intro p { color: var(--color-muted); margin-bottom: 16px; }
.contact-intro .signature { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-text); margin-top: 8px; }
.contact-intro .signature small { display: block; font-family: var(--font-body); font-size: 0.85rem; color: var(--color-muted); }

/* Owner quote — clearly a testimonial/quote */
.owner-quote {
  position: relative;
  margin: 10px 0 4px;
  padding: 30px 30px 26px 64px;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.owner-quote::before {
  content: "\201C";
  position: absolute; top: 6px; left: 18px;
  font-family: Georgia, serif; font-size: 4.4rem; line-height: 1;
  color: var(--color-accent);
}
.owner-quote p { font-size: 1.08rem; line-height: 1.7; font-style: italic; color: var(--color-text); margin: 0 0 18px; }
.owner-quote__by { display: block; font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--color-text); }
.owner-quote__by span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--color-muted); margin-top: 2px; }

.contact-details { margin-top: 30px; display: grid; gap: 18px; }
.cd-row { display: flex; gap: 16px; align-items: flex-start; }
.cd-row__ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px; background: var(--color-surface); color: var(--color-accent); display: grid; place-items: center; }
.cd-row__ic svg { width: 22px; height: 22px; }
.cd-row .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-muted); }
.cd-row a, .cd-row .val { font-size: 1.05rem; font-weight: 500; color: var(--color-text); }
.cd-row a:hover { color: var(--color-accent); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 14px; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-line); }
.hours-table td { padding: 12px 18px; border-bottom: 1px solid var(--color-line); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table .closed { color: var(--color-muted); font-weight: 500; }
.hours-table tr.today { background: var(--color-surface); }
.hours-note { font-size: 0.88rem; color: var(--color-muted); margin-top: 12px; font-style: italic; }

/* Form */
.form { background: #fff; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--color-line); box-shadow: var(--shadow-sm); }
.form h3 { margin-bottom: 8px; }
.form .lead { font-size: 1rem; margin-bottom: 26px; }
.field { position: relative; margin-bottom: 26px; }
.field input, .field textarea {
  width: 100%; padding: 12px 2px; font-size: 1rem; font-family: inherit;
  border: none; border-bottom: 1.5px solid var(--color-line); background: transparent;
  color: var(--color-text); transition: border-color var(--transition);
}
.field textarea { resize: vertical; min-height: 110px; }
.field label { position: absolute; left: 2px; top: 12px; color: var(--color-muted); pointer-events: none; transition: all var(--transition); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--color-accent); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: -12px; font-size: 0.78rem; color: var(--color-accent); letter-spacing: 0.04em;
}
.form-note { font-size: 0.82rem; color: var(--color-muted); margin-top: 10px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form button:disabled { opacity: 0.65; cursor: wait; }

/* Downloads */
.download-wrap { max-width: 920px; }
.download-list { display: grid; gap: 12px; margin-top: 32px; }
.download-item { display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.download-item:hover { transform: translateY(-2px); border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.download-icon { display: grid; place-items: center; width: 54px; height: 54px; flex: 0 0 54px; border-radius: 10px; background: var(--color-surface); color: var(--color-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.download-copy { display: grid; gap: 4px; min-width: 0; }
.download-copy strong { font-family: var(--font-display); font-size: 1.05rem; text-transform: capitalize; }
.download-copy small { color: var(--color-muted); }
.download-action { margin-left: auto; color: var(--color-accent); font-weight: 600; white-space: nowrap; }
.download-empty { margin-top: 32px; padding: 28px; background: var(--color-surface); border-radius: var(--radius-md); color: var(--color-muted); }

@media (max-width: 560px) {
  .download-item { align-items: flex-start; padding: 18px; }
  .download-action { display: none; }
}
.map-wrap { width: 100%; height: 460px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-right.in { opacity: 1; transform: translateX(0); }
[data-stagger] { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero h1, .hero__sub, .hero__cta, .hero__visual { opacity: 1; transform: none; animation: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
}
@media (max-width: 1100px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 560px; }
  .hero__features { grid-template-columns: 1fr 1fr; }
  .feature, .feature + .feature { border-left: none; padding: 26px 22px 26px 0; }
  .feature:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--color-line); }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--color-line); }
}
@media (max-width: 880px) {
  .usp-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .contact-strip .container { grid-template-columns: 1fr; }
  .contact-strip__cta { justify-content: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .gal-teaser { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .masonry { columns: 1; }
  .hero h1 { font-size: clamp(1.6rem, 7.4vw, 2rem); line-height: 1.1; }
  .hero__sub { font-size: 1rem; }
  .showroom .split__text h2 { white-space: normal; }
  .hero__features { grid-template-columns: 1fr; }
  .feature, .feature + .feature { border-left: none !important; padding: 22px 0; border-bottom: 1px solid var(--color-line); }
  .feature:last-child { border-bottom: none; }
  .hero__badge { left: 12px; }
  .form, .cta-box { padding: 28px; }
  /* compact mobile header: smaller logo + icon-only inquiry button */
  .header__inner { gap: 12px; }
  .logo__img, .header.scrolled .logo__img { height: 38px; }
  .header__actions { gap: 10px; }
  .header__phone { width: 40px; height: 40px; }
  .nav__cta { width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; }
  .nav__cta span { display: none; }
  .nav__cta-ic { display: block; width: 19px; height: 19px; }
  .showroom__info { gap: 22px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 46px; height: 46px; }
}
