/* ============================================================
   TimberMax Supply — Main Stylesheet
   Fonts: Oswald (headings) / Montserrat (body)
   Palette: White-dominant / Amber #fbb615 accent / thin dark bars
   BRICS-inspired light theme
   ============================================================ */

:root {
  color-scheme: only light;   /* light-only — stop browser auto dark-mode recolouring the site */
  /* Brand */
  --yellow:        #fbb615;   /* bright amber — CTA buttons, accent bands, fills */
  --yellow-hover:  #e0a000;   /* darker amber — hover/pressed */
  --yellow-deep:   #9a6500;   /* deep ochre — accent TEXT/icons on white (AA-safe) */
  --coral:         #d64000;   /* badge colour — popular/featured tags */
  --dark:          #1a1a1a;   /* near-black — info bar, headlines, text */
  --dark-nav:      #1a1a1a;   /* near-black — info bar background */

  /* Surfaces */
  --bg-primary:    #ffffff;
  --bg-secondary:  #f7f6f4;
  --bg-card:       #ffffff;
  --bg-card-hover: #f0efec;

  /* Text */
  --text-primary:  #1a1a1a;
  --text-secondary:#444444;
  --text-muted:    #767676;

  /* Lines */
  --border:        #e5e5e5;
  --shadow:        0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 30px rgba(0,0,0,0.15);

  /* Shape */
  --radius:        4px;
  --radius-lg:     8px;
  --transition:    0.3s ease;

  /* Typography */
  --font-body:    'Montserrat', sans-serif;
  --font-heading: 'Oswald', sans-serif;

  /* Legacy compat (used by inner pages) */
  --accent:        #fbb615;
  --accent-btn:    #000000;
  --accent-hover:  #e0a000;
  --accent-light:  rgba(251,182,21,0.10);
  --border-accent: rgba(251,182,21,0.30);
}

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

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--yellow); color: #000; padding: 8px 16px; font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.bg-alt     { background: var(--bg-secondary); }
.products-3d.bg-alt { background: transparent; }
.text-center{ text-align: center; }
.text-accent{ color: var(--yellow-deep); }

.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 500; text-transform: none; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 10px; color: var(--text-primary); }
.section-subtitle { color: var(--text-muted); font-size: 0.92rem; }
.section-header   { margin-bottom: 36px; }
.section-header.center { text-align: center; }

.badge  { display: inline-block; background: rgba(251,182,21,0.15); color: var(--yellow-deep); border: 1px solid var(--yellow); border-radius: 20px; padding: 4px 14px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.badge-popular { display:inline-block; background: var(--coral); color:#fff; font-size:0.68rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:4px 10px; border-radius:3px; }
.eyebrow{ font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 10px; display: block; }
.divider{ height: 1px; background: var(--border); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer;
}
.btn-primary { background: var(--yellow); color: #000; }
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-dark    { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-white   { background: #fff; color: var(--dark); }
.btn-white:hover { background: #eee; transform: translateY(-1px); }
.btn-white-outline { border: 2px solid rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-ghost   { color: inherit; font-weight: 600; text-transform: none; letter-spacing: 0; background: transparent; }
.btn-ghost:hover { text-decoration: underline; }
.btn-lg      { padding: 16px 40px; font-size: 0.95rem; }
.btn:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 3px; }

/* ── Info Bar (thin dark top bar — template keeps this) ──────── */
.info-bar { background: var(--dark-nav); color: #b8b8b8; font-size: 0.78rem; padding: 8px 0; }
.info-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.info-bar-left  { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.info-bar-item  { display: flex; align-items: center; gap: 6px; }
.info-bar-item a{ color: inherit; }
.info-bar-item a:hover { color: var(--yellow); }
.info-bar-item svg { width: 12px; height: 12px; color: var(--yellow); flex-shrink: 0; }
.info-bar-right { display: flex; align-items: center; gap: 14px; }
.info-bar-hours { display: flex; align-items: center; gap: 6px; }
.info-bar-hours svg { width: 12px; height: 12px; color: var(--yellow); }
.info-bar-socials { display: flex; align-items: center; gap: 8px; }
.social-link { width: 26px; height: 26px; border: 1px solid #333; border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #999; transition: all var(--transition); }
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }
.social-link svg { width: 11px; height: 11px; }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header { background: #ffffff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }

/* Logo */
.logo       { display: flex; align-items: center; flex-shrink: 0; }
.logo img   { height: 54px; width: auto; display: block; }

/* Search */
.header-search { flex: 1; max-width: 400px; position: relative; margin: 0 16px; }
.search-input  { width: 100%; height: 40px; padding: 0 42px 0 14px; border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-body); font-size: 0.87rem; color: var(--text-primary); background: var(--bg-secondary); outline: none; transition: border-color var(--transition); }
.search-input:focus { border-color: var(--yellow); background: #fff; }
.search-input::placeholder { color: var(--text-muted); }
.search-btn { position: absolute; right: 0; top: 0; height: 40px; width: 40px; background: var(--yellow); border-radius: 0 3px 3px 0; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.search-btn:hover { background: var(--yellow-hover); }
.search-btn svg { width: 16px; height: 16px; color: #000; }

/* Header CTA */
.btn-contact { background: var(--yellow); color: #000; font-family: var(--font-body); font-size: 0.83rem; font-weight: 700; padding: 10px 22px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px; transition: all var(--transition); display: inline-block; flex-shrink: 0; }
.btn-contact:hover { background: var(--yellow-hover); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #000; border-radius: 2px; transition: all var(--transition); display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Search dropdown ─────────────────────────────────────────── */
.search-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 2000; overflow: hidden; }
.search-dropdown.open { display: block; }
.search-result-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; gap: 12px; text-decoration: none; color: var(--text-primary); border-bottom: 1px solid var(--border); transition: background var(--transition); cursor: pointer; }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover, .search-result-item.active { background: rgba(251,182,21,0.10); }
.sr-name { font-size: 0.87rem; font-weight: 600; color: var(--text-primary); }
.sr-cat  { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.search-no-result { padding: 12px 14px; font-size: 0.85rem; color: var(--text-muted); }

/* ── Product Nav Bar (light grey — like template) ────────────── */
.product-nav { background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.product-nav-list { display: flex; align-items: center; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.product-nav-list::-webkit-scrollbar { display: none; }
.product-nav-list li a { display: block; color: var(--text-secondary); font-size: 0.75rem; font-weight: 600; padding: 11px 13px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; transition: all var(--transition); border-right: 1px solid var(--border); }
.product-nav-list li:last-child a { border-right: none; }
.product-nav-list li a:hover,
.product-nav-list li a.active { color: var(--text-primary); background: rgba(251,182,21,0.22); box-shadow: inset 0 -3px 0 var(--yellow); }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; background: #fff; z-index: 1100; overflow-y: auto; padding: 64px 24px 24px; }
.mobile-nav.open { display: block; }
.mobile-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); border-radius: 4px; color: #000; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.04em; }
.mobile-nav-link svg { width: 14px; height: 14px; color: var(--text-muted); }
.mobile-dropdown { padding: 6px 0 6px 16px; background: var(--bg-secondary); }
.mobile-dropdown a { display: block; padding: 9px 0; font-size: 0.87rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.mobile-dropdown a:hover { color: var(--yellow-deep); }
.mobile-nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ── Hero Banner (full-width photo background, amber panel overlay) ── */
.hero-banner { position: relative; display: flex; align-items: stretch; min-height: 520px; overflow: hidden; }
.hero-image { position: absolute; top: 0; bottom: 0; right: 0; left: clamp(480px, 52%, 680px); z-index: 0; background: #e8e0d4; }
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-panel { position: relative; z-index: 1; background: var(--yellow); display: flex; align-items: center; padding: 64px clamp(24px, 5vw, 80px); width: clamp(480px, 52%, 680px); }
.hero-content { max-width: 560px; }
.hero-panel .eyebrow { color: rgba(0,0,0,0.6); }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 700; color: #1a1a1a; line-height: 1.1; text-transform: uppercase; margin-bottom: 18px; }
.hero-content p { color: rgba(0,0,0,0.78); font-size: 1.02rem; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-badge-item { display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.14); border-radius: var(--radius); padding: 10px 16px; }
.hero-badge-item svg { width: 22px; height: 22px; color: #1a1a1a; flex-shrink: 0; }
.hero-badge-item span { font-size: 0.8rem; color: #1a1a1a; font-weight: 600; }

/* ── Promo Strip (dark photo-style cards — template keeps these) */
.promo-strip { padding: 50px 0 14px; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 130px; display: flex; align-items: center; padding: 26px; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); color: #fff; gap: 16px; }
.promo-card.alt { background: linear-gradient(135deg, var(--yellow), #d99a00); color: #000; }
.promo-icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--yellow); }
.promo-card.alt .promo-icon { color: #000; }
.promo-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.promo-sub { font-size: 0.8rem; opacity: 0.85; }

/* ── Our Products Section ────────────────────────────────────── */
.products-section { padding: 84px 0; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 26px; margin-top: 10px; }

/* Filter tabs (Habitat-style text tabs with amber underline) */
.filter-tabs { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 36px 0 6px; }
.filter-tab  { font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; color: var(--text-muted); background: transparent; padding: 6px 2px; position: relative; transition: color var(--transition); cursor: pointer; }
.filter-tab:hover { color: var(--text-primary); }
.filter-tab.active { color: var(--text-primary); font-weight: 700; }
.filter-tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--yellow); }
.filter-tab:focus-visible { outline: 2px solid var(--yellow-deep); outline-offset: 3px; border-radius: 2px; }

.products-more { text-align: center; margin-top: 48px; }
.products-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
.range-note { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 0.9rem; }
.range-note a { color: var(--yellow-deep); font-weight: 600; }
.range-note a:hover { text-decoration: underline; }

.shop-row-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
.shop-row-head .view-all { font-size: 0.83rem; font-weight: 700; color: var(--yellow-deep); text-transform: uppercase; letter-spacing: 0.05em; }
.shop-row-head .view-all:hover { text-decoration: underline; }

/* Product card — minimal, photo-led (Habitat-style) */
.product-card { display: block; color: inherit; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); border-color: transparent; }

.card-badge { position: absolute; top: 10px; left: 10px; background: var(--coral); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; z-index: 2; }
.card-badge.out { background: #1a1a1a; }
.card-badge.in  { background: #16a34a; }

/* Landscape product image (default — framing, pine, hardware, sheets) */
.product-card-img { position: relative; width: 100%; aspect-ratio: 4 / 3; height: auto; overflow: hidden; border-radius: 0; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; }
.product-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }

/* Portrait variant — doors and architraves (tall product shots) */
.products-grid--portrait .product-card-img { aspect-ratio: 3 / 4; background: var(--bg-secondary); }
.products-grid--portrait .product-card-img img { object-fit: contain; object-position: center; padding: 8px; }

.product-card-body { padding: 14px 14px 16px; text-align: left; }

/* CSS gradient placeholders — swap with <img> when photos arrive */
.product-card-img.pp-structural  { background: linear-gradient(135deg, #8B5A2B, #5C3A1A); }
.product-card-img.pp-furniture   { background: linear-gradient(135deg, #6B4C3B, #3E2723); }
.product-card-img.pp-decking     { background: linear-gradient(135deg, #A07850, #7A5838); }
.product-card-img.pp-doors       { background: linear-gradient(135deg, #5C3A1A, #4A2E18); }
.product-card-img.pp-cladding    { background: linear-gradient(135deg, #7A6040, #5C4830); }
.product-card-img.pp-treatedpine { background: linear-gradient(135deg, #A09060, #7A7040); }
.product-card-img.pp-flooring    { background: linear-gradient(135deg, #C49568, #A07048); }
.product-card-img.pp-lvl         { background: linear-gradient(135deg, #7A5A38, #5C3A1A); }
.product-card-img.pp-sheets      { background: linear-gradient(135deg, #787878, #505050); }
.product-card-img.pp-architraves { background: linear-gradient(135deg, #C4B898, #A09070); }
.product-card-img.pp-screening   { background: linear-gradient(135deg, #8B7355, #6B5A40); }
.product-card-img.pp-benchtops   { background: linear-gradient(135deg, #D4A060, #B07A38); }
.product-card-img.pp-posts       { background: linear-gradient(135deg, #5C4030, #3E2820); }

.product-card-cat { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 6px; }
.product-card-body h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text-primary); margin-bottom: 8px; line-height: 1.3; }
.product-card-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 10px; }
.product-card-cta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--yellow-deep); display: inline-block; }
.product-card:hover .product-card-cta { text-decoration: underline; }

.btn-explore { display: inline-block; background: var(--yellow); color: #000; font-size: 0.78rem; font-weight: 700; padding: 9px 22px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.06em; transition: all var(--transition); border: none; cursor: pointer; }
.btn-explore:hover { background: var(--yellow-hover); transform: translateY(-1px); }

/* ── Shop by Category (icon grid) ───────────────────────────── */
.shop-cat-section { padding: 64px 0; }
.shop-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; margin-top: 32px; }
.shop-cat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 10px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition); background: var(--bg-card); }
.shop-cat-item:hover { border-color: var(--yellow); box-shadow: var(--shadow); transform: translateY(-3px); }
.shop-cat-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--dark); transition: all var(--transition); }
.shop-cat-icon svg { width: 28px; height: 28px; }
.shop-cat-item:hover .shop-cat-icon { background: var(--yellow); color: #000; }
.shop-cat-name { font-size: 0.83rem; font-weight: 600; color: var(--text-primary); }

/* ── Service band (3-col, light) ──────────────────────────────── */
.service-band { background: var(--bg-secondary); padding: 64px 0; color: var(--text-primary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-item { text-align: center; padding: 0 16px; }
.service-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--yellow); color: #000; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 28px; height: 28px; }
.service-item h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; color: var(--text-primary); }
.service-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Brands We Stock (logo strip) ────────────────────────────── */
.brands-section { padding: 50px 0; border-top: 1px solid var(--border); background: #fff; }
.brands-eyebrow { text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px; }
.brands-row { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 60px); flex-wrap: wrap; }
.brand-logo { display: inline-flex; align-items: center; justify-content: center; width: 160px; height: 64px; }
.brand-logo img { width: 160px; height: 64px; object-fit: contain; object-position: center; opacity: 0.88; transition: opacity var(--transition), transform var(--transition); }
.brand-logo img:hover { opacity: 1; transform: translateY(-2px); }
.brand-name { display: none; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Get A Free Quote (light panel) ──────────────────────────── */
/* ── Get a Free Quote — two side-by-side cards ── */
.quote-wrap   { padding: 72px 0; position: relative; }
.quote-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; position: relative; z-index: 2; }
.quote-img-card  { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.quote-img-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; }
.quote-img-card { position: relative; }
.quote-form-card { background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 20px; padding: 52px 44px; box-shadow: 0 16px 48px rgba(0,0,0,0.10); display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,0.6); }

.quote-form-panel { background: rgba(255,255,255,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.quote-form-panel h2 { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; text-transform: uppercase; color: var(--text-primary); margin-bottom: 6px; }
.quote-form-panel h2 span,
.quote-form-panel .text-accent { color: var(--yellow-deep); }
.quote-form-panel > p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.q-input, .q-select, .q-textarea {
  width: 100%; padding: 11px 14px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.86rem;
  outline: none; transition: border-color var(--transition);
}
.q-input::placeholder { color: var(--text-muted); }
.q-input:focus, .q-select:focus, .q-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(251,182,21,0.15); }
.q-select { appearance: none; cursor: pointer; color: var(--text-muted); background-color: #fff; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.q-select option { background: #fff; color: #333; }
.q-textarea { resize: vertical; min-height: 90px; }
.btn-submit { background: var(--yellow); color: #000; font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; padding: 13px 36px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; border: none; transition: all var(--transition); align-self: flex-start; }
.btn-submit:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: default; transform: none; }

/* ── Footer pre-CTA banner (amber band) ─────────────────────── */
.footer-cta { background: var(--yellow); padding: 56px 0; text-align: center; }
.footer-cta h2 { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; color: #1a1a1a; }
.footer-cta p { color: rgba(0,0,0,0.72); margin-bottom: 22px; }
.footer-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Scroll to Top ───────────────────────────────────────────── */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--yellow); color: #000; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all var(--transition); z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--yellow-hover); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Footer (white — like template) ──────────────────────────── */
.site-footer { background: #fff; padding: 40px 0 0; color: var(--text-secondary); border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 24px 32px; padding-bottom: 28px; }

.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-top: 2px; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; background: var(--yellow); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #000; transition: all var(--transition); }
.footer-social a:hover { background: var(--yellow-hover); }
.footer-social a svg { width: 14px; height: 14px; }

.footer-heading { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.83rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a::before { content: '» '; color: var(--yellow-deep); font-size: 0.7rem; }
.footer-links a:hover { color: var(--yellow-deep); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 8px; align-items: flex-start; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--yellow-deep); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.5; }
.footer-contact-item a { color: var(--text-secondary); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--yellow-deep); }

.footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 0.77rem; color: var(--text-muted); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.55s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Inner page: Page Hero (light) ───────────────────────────── */
.page-hero { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 60px 0 44px; position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--yellow-deep); }
.breadcrumb span { color: var(--border); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--text-primary); margin-bottom: 12px; }
.page-hero p  { color: var(--text-secondary); font-size: 1rem; max-width: 600px; }
.page-hero .badge { background: rgba(251,182,21,0.15); color: var(--yellow-deep); border-color: var(--yellow); }
.page-hero .text-accent { color: var(--yellow-deep); }

/* ── Inner page: Product Table ───────────────────────────────── */
.product-section { margin-bottom: 52px; }
.product-section-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
.product-section-title::before { content: ''; width: 4px; height: 22px; background: var(--yellow); border-radius: 2px; display: inline-block; }
.product-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.product-table th { background: var(--bg-secondary); color: var(--text-muted); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 11px 16px; text-align: left; border-bottom: 2px solid var(--border); }
.product-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; }
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:hover td { background: var(--bg-secondary); }
.product-table td:first-child { color: var(--text-primary); font-weight: 600; }
.badge-stock { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-in    { background: rgba(34,197,94,0.1);  color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.badge-out   { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.15); }
.badge-order { background: rgba(251,182,21,0.15); color: var(--yellow-deep); border: 1px solid rgba(251,182,21,0.4); }

/* ── Inner page: Categories grid ────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px; }
.category-card { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.category-img { height: 140px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; }
.category-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cat-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: #666; }
.cat-icon svg { width: 100%; height: 100%; }
.category-body { padding: 14px 16px; }
.category-name { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.category-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.category-arrow { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--yellow-deep); margin-top: 8px; font-weight: 600; }

/* ── Inner page: Contact ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 18px; box-shadow: var(--shadow); }
.contact-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(251,182,21,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; color: var(--yellow-deep); }
.contact-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-value { font-size: 0.9rem; color: var(--text-primary); line-height: 1.5; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; margin-bottom: 22px; color: var(--text-primary); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px; font-size: 0.88rem;
  color: var(--text-primary); font-family: inherit; outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(251,182,21,0.15); }
.form-select { appearance: none; cursor: pointer; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

/* ── Map embed ───────────────────────────────────────────────── */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Inner page: About ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr 0.9fr; gap: 48px; align-items: start; }
.about-images { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-img-placeholder { aspect-ratio: 4/3; background: linear-gradient(135deg, #d4b898, #a07850); }
.about-checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.about-check-item { display: flex; align-items: flex-start; gap: 12px; }
.about-check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.about-check-icon svg { width: 12px; height: 12px; color: #000; }
.about-check-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.about-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); transition: all var(--transition); }
.about-stat-card:hover { transform: translateX(4px); }
.about-stat-icon { width: 44px; height: 44px; color: var(--yellow-deep); flex-shrink: 0; }
.about-stat-num  { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.about-stat-lbl  { font-size: 0.74rem; color: var(--text-muted); }

/* ── Inner page: Values ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: all var(--transition); }
.value-card:hover { box-shadow: var(--shadow); }
.value-icon { width: 44px; height: 44px; margin-bottom: 12px; color: var(--yellow-deep); }
.value-icon svg { width: 100%; height: 100%; }
.value-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: var(--text-primary); }
.value-desc  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Inner page: Mission tabs ────────────────────────────────── */
.mission-tabs { display: flex; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 24px; }
.mission-tab { flex: 1; padding: 12px 20px; text-align: center; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); background: var(--bg-card); cursor: pointer; transition: all var(--transition); border: none; font-family: inherit; text-transform: uppercase; letter-spacing: 0.05em; }
.mission-tab.active { background: var(--yellow); color: #000; }
.mission-panel { display: none; }
.mission-panel.active { display: block; }
.mission-content p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.8; }

/* ── Inner page: Process ─────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; background: var(--border); }
.process-step { text-align: center; position: relative; }
.process-num  { width: 56px; height: 56px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #000; position: relative; z-index: 1; }
.process-title{ font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.process-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Inner page: Features ────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 24px; }
.feature-card  { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--transition); }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon  { width: 48px; height: 48px; background: rgba(251,182,21,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 24px; height: 24px; color: var(--yellow-deep); }
.feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.feature-desc  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Inner page: Stats Strip (light) ─────────────────────────── */
.stats-strip { background: var(--bg-secondary); padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item   { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon   { width: 44px; height: 44px; border: 1px solid var(--yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--yellow-deep); }
.stat-icon svg { width: 22px; height: 22px; }
.stat-value  { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-label  { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Inner page: Testimonials ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card  { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); transition: all var(--transition); display: flex; flex-direction: column; gap: 14px; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--yellow); }
.testimonial-quote { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; flex: 1; }
.testimonial-author{ display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial-avatar{ width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: #000; font-size: 0.78rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name  { font-size: 0.87rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role  { font-size: 0.73rem; color: var(--text-muted); margin-top: 1px; }

/* ── Inner page: CTA banner (amber) ──────────────────────────── */
.cta-banner { background: var(--yellow); border-radius: var(--radius-lg); padding: 60px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-banner-title { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; text-transform: uppercase; color: #1a1a1a; margin-bottom: 8px; }
.cta-banner-sub   { font-size: 0.95rem; color: rgba(0,0,0,0.72); }
.cta-banner-actions { display: flex; gap: 14px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }

/* ── Hours table ─────────────────────────────────────────────── */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: 0.85rem; }
.hours-day  { color: var(--text-secondary); }
.hours-time { color: var(--text-primary); font-weight: 500; text-align: right; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr 1fr; }
  .about-images    { display: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .process-grid    { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .stat-item       { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .header-search   { max-width: 260px; }
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .promo-grid      { grid-template-columns: 1fr 1fr; }
  .service-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .info-bar-item:nth-child(3) { display: none; }
  .header-search   { display: none; }
  .nav-toggle      { display: flex; }
  .product-nav     { display: none; }
  .hero-banner     { min-height: auto; flex-direction: column; }
  .hero-panel      { padding: 40px 20px; width: 100%; }
  .hero-image      { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 100%; height: 260px; }
  .products-grid   { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .quote-wrap      { padding: 40px 0; }
  .quote-inner     { grid-template-columns: 1fr; gap: 18px; }
  .quote-img-card  { min-height: 220px; border-radius: 14px; }
  .quote-form-card { padding: 32px 24px; border-radius: 14px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner      { flex-direction: column; padding: 36px 20px; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .btn-contact     { padding: 8px 14px; font-size: 0.78rem; }
  .promo-grid      { grid-template-columns: 1fr; }
  .service-grid    { grid-template-columns: 1fr; }
  .footer-cta-actions { flex-direction: column; }
  /* ── Spacing & typography ── */
  .section          { padding: 44px 0; }
  .section-sm       { padding: 28px 0; }
  .products-section { padding: 44px 0; }
  .section-header   { margin-bottom: 22px; }
  .filter-tabs      { gap: 14px; margin: 20px 0 4px; }
  .hero-content p   { font-size: 0.93rem; margin-bottom: 18px; }
  .hero-actions     { gap: 10px; }
  .hero-badges      { margin-top: 18px; gap: 8px; }
  .hero-badge-item  { padding: 8px 12px; }
  .hero-badge-item svg  { width: 18px; height: 18px; }
  .hero-badge-item span { font-size: 0.76rem; }
  .btn-lg           { padding: 13px 26px; font-size: 0.88rem; }
  .page-hero        { padding: 36px 0 26px; }
  .brands-section   { padding: 30px 0; }
  .brands-row       { gap: 14px; }
  .range-note       { margin-top: 24px; }
  .footer-cta       { padding: 36px 0; }
  .map-embed        { height: 300px; }
}

@media (max-width: 480px) {
  .products-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .process-grid    { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .feature-card    { padding: 16px 12px; }
  .feature-icon    { width: 36px; height: 36px; margin-bottom: 10px; border-radius: 8px; }
  .feature-icon svg{ width: 18px; height: 18px; }
  .feature-title   { font-size: 0.78rem; margin-bottom: 5px; }
  .feature-desc    { font-size: 0.72rem; line-height: 1.55; }
  .hero-image      { height: 200px; }
  .quote-form-row  { grid-template-columns: 1fr; }
  .logo img        { height: 44px; }
  .info-bar-item:nth-child(2) { display: none; }
  .footer-grid     { grid-template-columns: 1fr; }
  .shop-cat-grid   { grid-template-columns: repeat(2, 1fr); }
  /* ── Extra small — tighten everything further ── */
  .container        { padding: 0 14px; }
  .section          { padding: 28px 0; }
  .section-sm       { padding: 18px 0; }
  .products-section { padding: 28px 0; }
  .products-grid    { gap: 10px 8px; }
  .products-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .section-header   { margin-bottom: 14px; }
  .section-title    { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.8rem; }
  .filter-tabs      { gap: 8px; margin: 14px 0 4px; }
  .filter-tab       { font-size: 0.78rem; padding: 4px 2px; }
  .product-card-body      { padding: 9px 9px 11px; }
  .product-card-body h3   { font-size: 0.85rem; line-height: 1.25; margin-bottom: 4px; }
  .product-card-cat       { font-size: 0.62rem; margin-bottom: 3px; }
  .product-card-desc      { font-size: 0.76rem; margin-bottom: 5px; line-height: 1.45; }
  .product-card-cta       { font-size: 0.68rem; }
  .brand-logo             { width: 80px; height: 38px; }
  .brand-logo img         { width: 80px; height: 38px; }
  .brands-row             { gap: 10px; }
  .brands-section         { padding: 22px 0; }
  .btn-lg                 { padding: 12px 18px; font-size: 0.82rem; }
  .hero-content h1        { font-size: clamp(1.6rem, 7vw, 2rem); }
  .hero-content p         { font-size: 0.88rem; margin-bottom: 14px; }
  .hero-actions           { gap: 8px; flex-direction: column; }
  .hero-actions .btn      { width: 100%; justify-content: center; }
  .hero-badges            { margin-top: 14px; gap: 6px; }
  .hero-badge-item        { padding: 7px 10px; }
  .hero-badge-item svg    { width: 16px; height: 16px; }
  .hero-badge-item span   { font-size: 0.7rem; }
  .page-hero              { padding: 24px 0 18px; }
  .page-hero h1           { font-size: 1.55rem; }
  .page-hero p            { font-size: 0.87rem; }
  .breadcrumb             { font-size: 0.72rem; gap: 5px; margin-bottom: 12px; }
  .cta-banner             { padding: 26px 14px; gap: 18px; }
  .cta-banner-title       { font-size: 1.25rem; }
  .cta-banner-sub         { font-size: 0.82rem; }
  .range-note             { margin-top: 16px; font-size: 0.8rem; }
  .footer-cta             { padding: 26px 0; }
  .footer-cta p           { font-size: 0.85rem; }
  .map-embed              { height: 220px; }
  .quote-form-card        { padding: 24px 18px; border-radius: 12px; }
  .quote-img-card         { min-height: 200px; border-radius: 12px; }
  .hw-card .product-card-img { padding: 12px; }
  .hw-finishes            { gap: 6px; margin-bottom: 7px; }
  .hw-swatch              { width: 24px; height: 24px; min-width: 24px; min-height: 24px; aspect-ratio: 1 / 1; }
  .product-card-brand     { font-size: 0.68rem; margin-top: 4px; }
}

/* ════════════════════════════════════════════════════════════════
   EDITORIAL ELEVATION — hero atmosphere + refined product cards
   (light/amber system only — additive, no theme change)
═══════════════════════════════════════════════════════════════════ */

/* — Amber hero panel: atmosphere & depth — */
.hero-panel { position: relative; overflow: hidden; isolation: isolate; }

/* layered texture: fine sawn-grain hairlines + a soft top-left sheen */
.hero-panel::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,255,255,0.38), rgba(255,255,255,0) 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(154,101,0,0.20), rgba(154,101,0,0) 60%),
    repeating-linear-gradient(122deg, rgba(0,0,0,0.045) 0 1px, transparent 1px 9px);
}

/* signature: a tape-measure ruler running down the amber/photo seam */
.hero-panel::after {
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0; width: 26px; z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,0.06), rgba(0,0,0,0.06)) left / 1px 100% no-repeat,
    repeating-linear-gradient(rgba(0,0,0,0.42) 0 1.5px, transparent 1.5px 16px) left 6px top 0 / 11px 100% no-repeat,
    repeating-linear-gradient(rgba(0,0,0,0.42) 0 1.5px, transparent 1.5px 48px) left 6px top 0 / 18px 100% no-repeat;
}

/* tape-tick rule under the eyebrow — small, characterful */
.hero-content .eyebrow { position: relative; padding-bottom: 12px; }
.hero-content .eyebrow::after {
  content: '';
  position: absolute; left: 0; bottom: 2px; width: 84px; height: 7px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)) bottom left / 100% 1.5px no-repeat,
    repeating-linear-gradient(90deg, rgba(0,0,0,0.55) 0 1.5px, transparent 1.5px 11px) bottom left / 100% 7px no-repeat;
}

/* editorial staggered load-in for the hero copy */
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: heroRise 0.7s cubic-bezier(.22,.61,.36,1) backwards; }
.hero-content > .eyebrow { animation-delay: 0.05s; }
.hero-content > h1       { animation-delay: 0.14s; }
.hero-content > p        { animation-delay: 0.26s; }
.hero-content > .hero-actions { animation-delay: 0.38s; }
.hero-content > .hero-badges  { animation-delay: 0.50s; }

/* refined trust badges */
.hero-badge-item { transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.hero-badge-item:hover { transform: translateY(-2px); background: rgba(0,0,0,0.10); border-color: rgba(0,0,0,0.28); }

/* — Product cards: tighter, more intentional hover — */
.product-card:hover .product-card-img img { transform: scale(1.06); }

/* photo gets a faint amber wash on hover to lift the label below */
.product-card-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(154,101,0,0.16), rgba(154,101,0,0) 45%);
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-card-img::before { opacity: 1; }

/* CTA: arrow that steps forward, with a growing amber underline */
.product-card-cta { position: relative; transition: color var(--transition); }
.product-card:hover .product-card-cta { text-decoration: none; }
.product-card-cta::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--yellow-deep); transition: width 0.35s cubic-bezier(.22,.61,.36,1);
}
.product-card:hover .product-card-cta::after { width: 100%; }

/* ── 3D glass card section (homepage + all category pages) ─────── */
.products-3d { position: relative; overflow: hidden; background: transparent; }
.products-3d .container { position: relative; z-index: 2; }
.products-3d .product-card { background: rgba(255,255,255,.76); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(251,182,21,.20); border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.products-3d .product-card:hover { transform: translateY(-6px); border-color: rgba(251,182,21,.60); box-shadow: 0 20px 48px rgba(251,182,21,.18); }
.products-3d .product-card h3 { color: var(--text-primary); }
.products-3d .product-card-cta { color: var(--yellow-deep); }
.products-3d .product-card-img { position: relative; }

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-in { animation: none; opacity: 1; }
  .reveal      { opacity: 1; transform: none; }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .product-card:hover .product-card-img img { transform: none; }
}
