*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0e0e0e;
    --near-black: #141414;
    --dark: #1a1a1a;
    --mid: #2c2c2c;
    --gray-dark: #444;
    --gray-mid: #888;
    --gray-light: #bbb;
    --off-white: #f2f0ec;
    --white: #ffffff;
    --section-light: #f5f4f1;
    --accent: #c8a96e;
    --accent-dim: rgba(200,169,110,0.15);
    --font-head: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-head);
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(14,14,14,0.82);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    transition: background 0.4s;
  }

  .nav-logo {
    font-family: var(--font-head);
    font-weight: 200;
    font-size: 15px;
    letter-spacing: 0.28em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
  }
  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    text-transform: lowercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-icon {
    width: 18px; height: 18px;
    stroke: rgba(255,255,255,0.6);
    fill: none;
    cursor: pointer;
    transition: stroke 0.2s;
  }
  .nav-icon:hover { stroke: var(--white); }
  .nav-lang {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    cursor: pointer;
  }

  /* ── HERO SLIDER ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--near-black);
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  }
  .hero-slide.active { opacity: 1; }

  .hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45);
  }

  /* Placeholder hero backgrounds using CSS for prototype */
  .slide-1 { background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 40%, #222 100%); }
  .slide-2 { background: linear-gradient(135deg, #111 0%, #1c1c1c 50%, #222 100%); }
  .slide-3 { background: linear-gradient(135deg, #0d0d0d 0%, #181818 60%, #1e1e1e 100%); }

  .hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Simulated hero images with divs */
  .hero-visual {
    width: 100%; height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.3) 60%, rgba(14,14,14,0.1) 100%),
                linear-gradient(to top, rgba(14,14,14,0.6) 0%, transparent 50%);
  }

  .h1-bg { background: url('https://images.unsplash.com/photo-1565814329452-e1efa11c5b89?w=1600&q=80') center/cover; }
  .h2-bg { background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1600&q=80') center/cover; }
  .h3-bg { background: url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?w=1600&q=80') center/cover; }

  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 10;
    max-width: 480px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
  }
  .hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-project-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 400;
  }

  .hero-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 200;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.2;
    text-transform: lowercase;
    margin-bottom: 4px;
  }
  .hero-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-transform: lowercase;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
  }

  .hero-btn {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    border: 0.5px solid rgba(255,255,255,0.4);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .hero-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
  }

  .hero-arrows {
    position: absolute;
    bottom: 80px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .hero-arrow {
    width: 40px; height: 40px;
    border: 0.5px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .hero-arrow:hover { border-color: var(--accent); background: var(--accent-dim); }
  .hero-arrow svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; }

  .hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .hero-dot {
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }
  .hero-dot.active {
    background: var(--accent);
    width: 40px;
  }

  /* ── SECTION SHARED ── */
  section { position: relative; }

  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading .line1 {
    display: block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--gray-mid);
  }
  .section-heading .line2 {
    display: block;
    font-size: 26px;
    font-weight: 200;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: var(--black);
    line-height: 1.1;
  }
  .section-heading.dark .line1 { color: rgba(255,255,255,0.4); }
  .section-heading.dark .line2 { color: var(--white); }

  /* ── PRODUCT TABS ── */
  .product-tabs-section {
    background: var(--near-black);
    padding: 0;
  }

  .tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }

  .tab-btn {
    padding: 22px 28px;
    background: transparent;
    border: none;
    border-right: 0.5px solid rgba(255,255,255,0.06);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: background 0.2s;
  }
  .tab-btn:last-child { border-right: none; }
  .tab-btn:hover { background: rgba(255,255,255,0.03); }
  .tab-btn.active { background: rgba(255,255,255,0.04); }
  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
  }

  .tab-label-top {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: lowercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 3px;
  }
  .tab-label-main {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: var(--white);
  }
  .tab-btn.active .tab-label-main { color: var(--accent); }
  .tab-count {
    display: inline-block;
    font-size: 9px;
    background: var(--accent);
    color: var(--black);
    padding: 1px 5px;
    margin-left: 6px;
    font-weight: 500;
    letter-spacing: 0.05em;
    vertical-align: middle;
  }

  .tabs-grid-wrapper { position: relative; }

  .tab-panel {
    display: none;
    grid-template-columns: repeat(4, 1fr);
  }
  .tab-panel.active { display: grid; }

  .tab-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
  }
  .tab-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.75) 0%, transparent 55%);
    transition: opacity 0.3s;
  }
  .tab-card:hover::after { opacity: 0.6; }

  .tab-card-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .tab-card:hover .tab-card-bg { transform: scale(1.04); }

  /* placeholder bgs */
  .tc-1 { background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=600&q=80') center/cover; }
  .tc-2 { background: url('https://images.unsplash.com/photo-1565814329452-e1efa11c5b89?w=600&q=80') center/cover; }
  .tc-3 { background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80') center/cover; }
  .tc-4 { background: url('https://images.unsplash.com/photo-1567016432779-094069958ea5?w=600&q=80') center/cover; }
  .tc-5 { background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=600&q=80') center/cover; }
  .tc-6 { background: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=600&q=80') center/cover; }
  .tc-7 { background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=600&q=80') center/cover; }
  .tc-8 { background: url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?w=600&q=80') center/cover; }

  .tab-card-label {
    position: absolute;
    bottom: 20px; left: 20px;
    z-index: 2;
    color: var(--white);
  }
  .tab-card-line { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
  .tab-card-name { font-size: 13px; font-weight: 300; letter-spacing: 0.08em; text-transform: lowercase; }

  /* ── CATEGORY GRID ── */
  .category-grid-section { background: var(--black); }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-cell {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
  }
  .cat-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.8) 0%, rgba(14,14,14,0.1) 50%, transparent 100%);
    transition: opacity 0.4s;
  }
  .cat-cell:hover::after { opacity: 0.7; }

  .cat-bg {
    width: 100%; height: 100%;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  .cat-cell:hover .cat-bg { transform: scale(1.05); }

  .cat-indoor { background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=700&q=80') center/cover; }
  .cat-outdoor { background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=700&q=80') center/cover; }
  .cat-deco { background: url('https://images.unsplash.com/photo-1578898887932-dce23a595ad4?w=700&q=80') center/cover; }

  .cat-label {
    position: absolute;
    bottom: 28px; left: 28px;
    z-index: 2;
    color: var(--white);
  }
  .cat-type {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .cat-name {
    font-size: 22px;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    line-height: 1;
  }
  .cat-desc {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    letter-spacing: 0.06em;
  }

  /* ── COMPANY INTRO ── */
  .company-intro-section {
    background: var(--section-light);
    padding: 80px 60px;
  }

  .company-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .company-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
  }

  .company-col { text-align: center; }

  .company-icon {
    width: 40px; height: 40px;
    margin: 0 auto 20px;
    opacity: 0.5;
  }

  .company-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
  }

  .company-col-text {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray-dark);
    line-height: 1.8;
  }

  .company-cta {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--black);
    border: 0.5px solid var(--black);
    padding: 10px 28px;
    text-decoration: none;
    margin-top: 48px;
    transition: background 0.2s, color 0.2s;
  }
  .company-cta:hover { background: var(--black); color: var(--white); }

  /* ── PRODUCT GRID ── */
  .products-section {
    background: var(--white);
    padding: 72px 60px;
  }
  .products-section.dark-section {
    background: var(--near-black);
  }

  .products-inner { max-width: 1200px; margin: 0 auto; }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .product-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #ebebeb;
  }
  .dark-section .product-card { background: #1c1c1c; }

  .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.72) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .product-card:hover::after { opacity: 1; }

  .product-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
  }
  .product-card:hover .product-img-placeholder { transform: scale(1.03); }

  .product-img-placeholder svg {
    width: 48px; height: 48px;
    stroke: rgba(0,0,0,0.15);
    fill: none;
  }
  .dark-section .product-img-placeholder svg { stroke: rgba(255,255,255,0.1); }

  .product-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .product-card:hover .product-label {
    opacity: 1;
    transform: translateY(0);
  }

  .product-line {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
  }
  .product-name {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.07em;
    text-transform: lowercase;
    color: var(--white);
  }

  .load-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
  .load-more-btn {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gray-dark);
    background: transparent;
    border: 0.5px solid rgba(0,0,0,0.2);
    padding: 10px 24px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .load-more-btn:hover { border-color: var(--black); color: var(--black); }
  .dark-section .load-more-btn { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.15); }
  .dark-section .load-more-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

  /* Product card actual images from unsplash */
  .pc-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
  }
  .product-card:hover .pc-img { transform: scale(1.04); }

  /* ── PARTNERS LOGIN ── */
  .partners-section {
    background: var(--near-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .partners-form-side {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 0.5px solid rgba(255,255,255,0.06);
  }

  .partners-img-side {
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&q=80') center/cover;
    filter: grayscale(40%) brightness(0.4);
  }

  .partners-form-side .section-heading { margin-bottom: 28px; }

  .partners-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
  }

  .form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.18);
    padding: 10px 0;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input::placeholder { color: rgba(255,255,255,0.3); }
  .form-input:focus { border-bottom-color: var(--accent); }

  .form-submit {
    margin-top: 8px;
    width: 120px;
    background: transparent;
    border: 0.5px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .form-submit:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

  .form-register {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
  }
  .form-register a {
    color: var(--accent);
    text-decoration: none;
  }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--section-light);
    padding: 72px 60px;
  }
  .contact-inner { max-width: 1200px; margin: 0 auto; }
  .contact-form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0;
    border: 0.5px solid rgba(0,0,0,0.12);
    margin-top: 36px;
  }
  .contact-input {
    background: transparent;
    border: none;
    border-right: 0.5px solid rgba(0,0,0,0.1);
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--black);
    outline: none;
  }
  .contact-input::placeholder { color: rgba(0,0,0,0.3); }
  .contact-select {
    background: transparent;
    border: none;
    border-right: 0.5px solid rgba(0,0,0,0.1);
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(0,0,0,0.4);
    outline: none;
    appearance: none;
    cursor: pointer;
  }
  .contact-submit {
    background: var(--black);
    border: none;
    padding: 16px 32px;
    font-family: var(--font-head);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .contact-submit:hover { background: var(--accent); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 64px 60px 40px;
    border-top: 0.5px solid rgba(255,255,255,0.05);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;   /* 3 cols: brand, navigate, newsletter */
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 0.5px solid rgba(255,255,255,0.07);
  }

  .footer-logo {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 0.28em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 30px;   /* was 16px; absorbs the removed tagline spacing */
    display: block;
  }
  .footer-logo span { color: var(--accent); }

  .footer-tagline {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .footer-cta {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border: 0.5px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
  }
  .footer-cta:hover { color: var(--accent); border-color: var(--accent); }

  .footer-col-title {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
  }

  .footer-col-text {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
  }

  .footer-newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
    padding: 8px 0;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }
  .footer-newsletter-input::placeholder { color: rgba(255,255,255,0.2); }
  .footer-newsletter-btn {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: transparent;
    border: 0.5px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    cursor: pointer;
    font-family: var(--font-head);
    transition: color 0.2s, border-color 0.2s;
  }
  .footer-newsletter-btn:hover { color: var(--accent); border-color: var(--accent); }

  .footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
  }
  .footer-social a {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--accent); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
  }

  .footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .badge-placeholder {
    width: 44px; height: 44px;
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    font-weight: 400;
  }

  .footer-copyright {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.08em;
  }

  /* ── SCROLL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── DIVIDER LINE ── */
  .accent-line {
    width: 32px; height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
  }

.footer-col-text a:hover { color: var(--accent); }


/* ── Dynamic homepage additions ─────────────────────────────────────────── */
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hero-visual{position:relative;overflow:hidden}
.hero-content--center{left:50%;transform:translateX(-50%);text-align:center}
.hero-content--right{left:auto;right:6vw;text-align:right}

/* Cards are links now — keep the design, drop the link styling */
a.tab-card, a.product-card, a.cat-cell{text-decoration:none;color:inherit;display:block}
a.tab-card:focus-visible, a.product-card:focus-visible, a.cat-cell:focus-visible{
  outline:2px solid var(--accent);outline-offset:3px}

/* Fallback background for application cells beyond the original three */
.cat-bg{background:linear-gradient(135deg,#1a1a1a 0%,#2c2c2c 100%)}
.cat-bg.cat-indoor{background:linear-gradient(135deg,#1f2933 0%,#3b4a5a 100%)}
.cat-bg.cat-outdoor{background:linear-gradient(135deg,#1e2a20 0%,#3a4a3c 100%)}
.cat-bg.cat-decorative{background:linear-gradient(135deg,#2b2118 0%,#4a3a28 100%)}
.product-img-placeholder{display:block;width:100%;aspect-ratio:4/3;background:linear-gradient(135deg,#1a1a1a,#2c2c2c)}

/* ── Full-screen menu overlay ─────────────────────────────────────────── */
.ill-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0 clamp(32px, 10vw, 170px);
  background: var(--near-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}
.ill-menu.is-open { opacity: 1; visibility: visible; }
body.ill-menu-open { overflow: hidden; }

.ill-menu-close {
  position: absolute;
  top: 20px; right: 40px;
  width: 26px; height: 26px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.ill-menu-close svg {
  width: 100%; height: 100%;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  transition: stroke 0.2s;
}
.ill-menu-close:hover svg { stroke: var(--white); }

.ill-menu-inner { width: 100%; }
.ill-menu-main,
.ill-menu-sub { list-style: none; margin: 0; padding: 0; }

.ill-menu-main a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.38;
  letter-spacing: 0.005em;
  color: var(--gray-light);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.25s;
}
.ill-menu-main a:hover,
.ill-menu-main a:focus-visible { color: var(--white); }
.ill-menu-main .current-menu-item > a { color: var(--accent); }

.ill-menu-sub { margin-top: clamp(22px, 4vh, 46px); }
.ill-menu-sub a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--gray-mid);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.25s;
}
.ill-menu-sub a:hover,
.ill-menu-sub a:focus-visible { color: var(--white); }
.ill-menu-sub .current-menu-item > a { color: var(--accent); }

.js-menu-open { cursor: pointer; }
.sel-menu { margin-left: 18px; }

@media (max-width: 640px) {
  .ill-menu { align-items: flex-start; padding-top: 96px; }
}

/* ── Generic page fallback (page.php) ─────────────────────────────────── */
.ill-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 150px 40px 120px;
  min-height: 70vh;
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
}
.ill-page h1 {
  font-weight: 200;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: lowercase;
}
.ill-page a { color: var(--accent); }
.ill-page .ill-page-note {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.03);
  font-size: 14px;
  color: var(--gray-mid);
}

/* Primary links inside the slim tool-page header (52px tall, tighter than the
   64px homepage nav). Collapse to the hamburger on narrow screens. */
.sel-links { gap: 28px; }
.sel-links a { font-size: 10px; letter-spacing: 0.16em; }
@media (max-width: 900px) {
  .sel-links { display: none; }
}

/* ── Brand mark ───────────────────────────────────────────────────────────
   The logo is inlined SVG using fill:currentColor, so it takes its colour
   from the surrounding rule. Sizing is by height; width follows the 13:1
   aspect ratio. display:block removes the inline baseline gap. */
.nav-logo svg,
.sel-logo svg,
.footer-logo svg,
.fl svg {
  display: block;
  width: auto;
  height: 15px;
}
.nav-logo svg    { height: 15px; }
.sel-logo svg    { height: 11px; }
.footer-logo svg,
.fl svg          { height: 18px; }

/* The logo replaces letter-spaced text, so drop the text metrics that were
   shaping it and let the SVG size itself. */
.nav-logo,
.sel-logo,
.footer-logo,
.fl { letter-spacing: 0; font-size: 0; line-height: 0; }

.nav-logo svg    { color: var(--white); }
.sel-logo svg    { color: #fff; }
.footer-logo svg,
.fl svg          { color: var(--white); }

@media (max-width: 640px) {
  .nav-logo svg { height: 13px; }
  .sel-logo svg { height: 10px; }
}

/* ── Footer navigation ────────────────────────────────────────────────────
   Driven by the Primary and Secondary menus. The colour is stated explicitly
   for every link state, including :visited — without that, a link falls back
   to the browser default and renders purple once visited. */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav + .footer-nav { margin-top: 8px; }

.footer-nav a,
.footer-nav a:link,
.footer-nav a:visited {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a:active {
  color: var(--white);
}
.footer-nav .current-menu-item > a { color: var(--white); }

/* Same guard for the other footer links, so none of them can fall back to a
   browser default colour after being visited. */
.footer-cta:link,
.footer-cta:visited      { color: rgba(255,255,255,0.45); }
.footer-social a:link,
.footer-social a:visited { color: rgba(255,255,255,0.3); }
.footer-logo:link,
.footer-logo:visited,
.fl:link,
.fl:visited              { color: var(--white); }

/* ── Header search ────────────────────────────────────────────────────────
   Collapsed to an icon; expands in place on click. Submits to the Product
   Selector, which owns the actual filtering. */
.ill-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ill-search-toggle {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.ill-search-input {
  width: 0;
  padding: 0;
  border: 0;
  border-bottom: 0.5px solid transparent;
  background: none;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0;
  transition: width 0.32s ease, opacity 0.32s ease, border-color 0.32s ease;
}
.ill-search.is-open .ill-search-input {
  width: clamp(150px, 20vw, 230px);
  padding: 4px 2px;
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.28);
}
.ill-search-input::placeholder { color: rgba(255,255,255,0.32); }
.ill-search-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
/* Chrome's default clear button fights the dark chrome. */
.ill-search-input::-webkit-search-cancel-button { -webkit-appearance: none; }

@media (max-width: 900px) {
  .ill-search.is-open .ill-search-input { width: clamp(120px, 42vw, 200px); }
}
