/* ILEN — dark illuminated showcase (inspired by client reference, multipage) */

:root {
  --bg: #000000;
  --bg-elevated: #191919;
  --bg-warm: #191511;
  --bg-panel: #252527;
  --bg-soft: #13151b;
  --text: #ffffff;
  --muted: #a8a29a;
  --accent: #ff783e;
  --accent-soft: #d78c43;
  --accent-hover: #ff8f5c;
  --accent-dim: rgba(255, 120, 62, 0.16);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 6px;
  --radius-lg: 14px;
  --header-h: 76px;
  --container: 1200px;
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--accent); color: #111; padding: 0.6rem 1rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.eyebrow-slash {
  color: var(--muted);
  letter-spacing: 0.28em;
}
.eyebrow-slash::before,
.eyebrow-slash::after {
  content: "\\";
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.75rem 1.6rem; border-radius: 999px;
  border: 1px solid transparent; font-family: inherit; font-size: 0.9375rem;
  font-weight: 600; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-sm { min-height: 40px; padding: 0.5rem 1.15rem; font-size: 0.875rem; }
.btn-accent {
  background: var(--accent); color: #140a05;
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 0 32px rgba(255, 120, 62, 0.28);
}
.btn-ghost {
  background: transparent; border-color: var(--border-strong); color: var(--text);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--accent); color: var(--accent);
}
.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(0, 0, 0, 0.88);
}
.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-logo { width: auto; height: 38px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  display: block; padding: 0.45rem 0.7rem; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.72); transition: color 0.2s ease;
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: #fff; }
.nav-link.is-active { color: var(--accent); }

.nav-item.has-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nav-item.has-dropdown.is-open .nav-caret,
.nav-item.has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 210px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 120, 62, 0.12);
  color: var(--text);
}

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: var(--radius); background: transparent;
  align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer;
}
.nav-toggle-bar { display: block; width: 18px; height: 2px; background: var(--text); transition: transform 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Hero — reference-like light stage */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid; align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 55%, #000 100%),
    url("../img/ref/hero/ilen-hero-beams.jpg") center / cover no-repeat,
    linear-gradient(180deg, #000 0%, var(--bg-warm) 55%, #000 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 75% 35%, rgba(255,120,62,0.12), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-beams { display: none; }

.hero-inner {
  position: relative; z-index: 1;
  padding: 4rem 0 5rem;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-copy .brand-mark {
  display: block; width: min(260px, 65vw); height: auto; margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 24px rgba(255, 120, 62, 0.3));
}
.hero-title {
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.035em;
  max-width: 14ch; margin-bottom: 1rem;
}
.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted); max-width: 38ch; margin-bottom: 0;
}

.hero-visual { position: relative; justify-self: center; width: min(100%, 420px); }
.hero-spotlight {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(20, 16, 12, 0.65);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 60px rgba(255,120,62,0.1);
  backdrop-filter: blur(8px);
}
.hero-spotlight-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.hero-spotlight img {
  width: 100%; aspect-ratio: 1; object-fit: contain; padding: 2rem 1.5rem 1rem;
  filter: drop-shadow(0 20px 40px rgba(255, 140, 60, 0.25));
}
.hero-spotlight-meta {
  padding: 0 1.5rem 1.5rem;
}
.hero-spotlight-meta h2 {
  font-size: 1.15rem; margin: 0 0 0.75rem;
}
.hero-spotlight-meta .link-accent {
  color: var(--accent); font-weight: 600; font-size: 0.9rem;
}
.hero-spotlight-meta .link-accent:hover { text-decoration: underline; }

/* Sections */
.section { padding: 5rem 0; position: relative; }
.section-tight { padding: 3.5rem 0; }
.section-dark { background: var(--bg); }
.section-elevated { background: var(--bg-elevated); }
.section-panel { background: var(--bg-panel); }
.section-warm { background: linear-gradient(180deg, var(--bg-warm), var(--bg)); }
.section-soft { background: linear-gradient(135deg, #000, var(--bg-soft)); }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.section-head p { color: var(--muted); margin-bottom: 0; }
.section-head.split {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: end; gap: 1.5rem; max-width: none;
}
.section-head.split > div { max-width: 640px; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.two-col { display: grid; gap: 2.5rem; }
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
}

.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem;
}
@media (min-width: 700px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-card { padding: 1.25rem 1rem; border-top: 1px solid var(--border-strong); }
.stat-value {
  font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin: 0.35rem 0 0; }

/* Feature checklist (ref-like) */
.feature-split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .feature-split { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
}
.check-list { display: grid; gap: 0.85rem; margin: 1.5rem 0 0; }
.check-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem;
  color: var(--muted); font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  width: 10px; height: 10px; margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,120,62,0.5);
}
.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: #0a0a0a;
}
.feature-visual img {
  width: 100%; height: 100%; object-fit: cover; min-height: 360px;
  filter: brightness(0.9);
}

.feature-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent 60%);
  transition: border-color 0.3s ease;
}
.feature-card:hover { border-color: rgba(255,120,62,0.35); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Applications — photo cards */
.app-photo-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .app-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .app-photo-grid { grid-template-columns: repeat(4, 1fr); }
}
.app-photo {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  isolation: isolate;
}
.app-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.55);
  transition: transform 0.7s var(--ease), filter 0.4s ease;
}
.app-photo:hover img { transform: scale(1.05); filter: brightness(0.7); }
.app-photo-body {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92));
}
.app-photo h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.app-photo p { color: rgba(255,255,255,0.72); font-size: 0.85rem; margin: 0; }

/* Service range cards */
.service-grid {
  display: grid; gap: 1.15rem;
}
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #0c0c0c;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.service-card:hover {
  border-color: rgba(255,120,62,0.4);
  transform: translateY(-3px);
}
.service-card img {
  width: 56px; height: 56px; object-fit: contain; margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(255,120,62,0.25));
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.service-card ul { display: grid; gap: 0.35rem; }
.service-card li {
  font-size: 0.85rem; color: var(--muted);
  padding-left: 0.85rem; position: relative;
}
.service-card li::before {
  content: "•"; position: absolute; left: 0; color: var(--accent);
}

/* Collections */
.collection-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}
.collection-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: #0c0c0c;
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease);
}
.collection-card:hover {
  border-color: rgba(255,120,62,0.45);
  box-shadow: 0 0 36px rgba(255,120,62,0.12);
}
.collection-card-media { aspect-ratio: 1; overflow: hidden; background: #111; }
.collection-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
  filter: brightness(0.85);
}
.collection-card:hover .collection-card-media img {
  transform: scale(1.05); filter: brightness(1);
}
.collection-card-body { padding: 1.35rem 1.35rem 1.5rem; }
.collection-card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.collection-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Category cards */
.cat-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: #0d0d0d;
  isolation: isolate; min-height: 280px;
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease);
}
.cat-card:hover, .cat-card:focus-visible {
  border-color: rgba(255,120,62,0.45);
  box-shadow: 0 0 40px rgba(255,120,62,0.12);
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s ease;
  filter: brightness(0.5);
}
.cat-card:hover img { transform: scale(1.06); filter: brightness(0.68); }
.cat-card-body {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92)); z-index: 1;
}
.cat-card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.cat-card p { color: rgba(244,241,236,0.75); font-size: 0.9rem; margin: 0; }

/* Product tiles */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1000px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-tile {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: #0c0c0c;
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.product-tile:hover {
  border-color: rgba(255,120,62,0.5);
  box-shadow: 0 0 28px rgba(255,120,62,0.16);
  transform: translateY(-3px);
}
.product-tile-media {
  aspect-ratio: 1; overflow: hidden; background: #1a1a1a;
  display: grid; place-items: center;
}
.product-tile-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 0.75rem;
  transition: filter 0.4s ease, transform 0.6s var(--ease);
  filter: brightness(1);
}
.product-tile:hover .product-tile-media img {
  filter: brightness(1.1); transform: scale(1.04);
}
.product-tile-body {
  padding: 0.9rem 1rem 1.1rem; border-top: 1px solid var(--border);
}
.product-tile-body h3 { font-size: 0.92rem; font-weight: 600; margin: 0; }
.product-tile-meta {
  font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* Marquee strip */
.marquee {
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .product-tile { width: 220px; flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Page hero */
.page-hero {
  position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(255,120,62,0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-warm), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); max-width: 18ch; }
.page-hero p { color: var(--muted); max-width: 52ch; margin: 0; }

.page-hero-split { padding-bottom: 2.5rem; }
.page-hero-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 901px) {
  .page-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .category-hero-visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}
.category-hero-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #141414;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 40px rgba(255,120,62,0.08);
  position: relative;
}
.category-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,120,62,0.08), transparent 45%);
}
.category-hero-visual img {
  width: 100%; aspect-ratio: 1; object-fit: cover; padding: 0;
}
.category-hero-visual.is-fixture {
  background: #121212;
}
.category-hero-visual.is-fixture img {
  object-fit: contain;
  padding: 1.5rem;
}

.export-grid {
  display: grid; gap: 1.15rem;
}
@media (min-width: 700px) { .export-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .export-grid { grid-template-columns: repeat(4, 1fr); } }
.export-card {
  padding: 1.5rem;
  border-top: 2px solid var(--accent);
  background: rgba(255,255,255,0.02);
  border-radius: 0 0 var(--radius) var(--radius);
}
.export-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.export-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 32px rgba(37,211,102,0.35); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: currentColor; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a:hover { color: var(--accent); }

/* CTA */
.cta-band {
  position: relative; padding: 4.5rem 0; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 100% at 20% 50%, rgba(255,120,62,0.14), transparent 55%),
    linear-gradient(135deg, #0c0b0a, #151311 50%, #0a0a0a);
  border-block: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 18ch; }
.cta-band p { color: var(--muted); max-width: 42ch; }

.cta-band-photo {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: #080808;
}
.cta-band-media {
  position: absolute;
  inset: 0 0 0 35%;
  pointer-events: none;
}
.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.95);
}
.cta-band-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #080808 0%,
    rgba(8, 8, 8, 0.92) 18%,
    rgba(8, 8, 8, 0.55) 45%,
    rgba(8, 8, 8, 0.25) 70%,
    rgba(8, 8, 8, 0.35) 100%
  );
}
.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,0.35), transparent 30%, transparent 70%, rgba(8,8,8,0.5));
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: min(560px, 100%);
}

@media (max-width: 860px) {
  .cta-band-media {
    inset: 0;
    opacity: 0.45;
  }
  .cta-band-media::before {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.88) 0%,
      rgba(8, 8, 8, 0.72) 45%,
      rgba(8, 8, 8, 0.9) 100%
    );
  }
  .cta-band-inner {
    max-width: none;
  }
}

/* Forms */
.form-layout { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .form-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}
.contact-meta { display: grid; gap: 1.25rem; }
.contact-block { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-block h3 {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.4rem;
}
.contact-block p { margin: 0; color: var(--muted); }

.enquiry-form {
  padding: 1.75rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: rgba(255,255,255,0.02);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border-radius: var(--radius);
  border: 1px solid var(--border-strong); background: #0a0a0a;
  color: var(--text); font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .error { display: block; margin-top: 0.35rem; font-size: 0.8rem; color: #ff8a7a; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { padding: 0.9rem 1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.95rem; }
.alert-success {
  background: rgba(80,180,120,0.12); border: 1px solid rgba(80,180,120,0.35); color: #b8f0c8;
}
.alert-error {
  background: rgba(200,80,60,0.12); border: 1px solid rgba(200,80,60,0.35); color: #ffc4b8;
}

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2rem 1.25rem 0;
  font-weight: 600; font-size: 1.05rem; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 1.2rem;
  color: var(--accent); font-size: 1.25rem; font-weight: 500;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p { color: var(--muted); padding-bottom: 1.25rem; margin: 0; max-width: 60ch; }

/* Footer */
.site-footer {
  position: relative; padding: 4rem 0 2rem; background: #080808;
  border-top: 1px solid var(--border); overflow: hidden;
}
.footer-glow {
  position: absolute; width: 50%; height: 200px; left: 25%; top: -100px;
  background: radial-gradient(ellipse, rgba(255,120,62,0.1), transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; gap: 2.5rem; position: relative; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}
.footer-logo { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-weight: 600; margin-bottom: 0.35rem; }
.footer-location { color: var(--muted); font-size: 0.9rem; margin: 0; }
.footer-heading {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--text); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between;
  font-size: 0.85rem; color: var(--muted);
}
.footer-bottom p { margin: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 1.25rem 1.5rem; background: rgba(8,8,8,0.97);
    border-bottom: 1px solid var(--border);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--border); width: 100%; text-align: left; }
  .nav-item.has-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    margin: 0.25rem 0 0.5rem;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
  }
  .nav-item.has-dropdown.is-open .nav-dropdown { display: block; }
  .header-cta { margin-top: 1rem; width: 100%; }
  .hero-inner { padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-title { max-width: 16ch; }
  .hero-visual { width: min(100%, 360px); margin-inline: auto; }
  .app-photo { min-height: 260px; }
  .page-hero-grid { text-align: left; }
  .category-hero-visual { max-width: 420px; margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-tile-body h3 { font-size: 0.82rem; }
  .section { padding: 3.5rem 0; }
  .marquee .product-tile { width: 180px; }
  .whatsapp-fab { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 1.5rem, var(--container)); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .btn-row .btn { width: 100%; }
  .hero-spotlight-meta h2 { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .product-tile, .cat-card img, .marquee-track, .collection-card-media img, .app-photo img {
    animation: none !important; transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { width: auto; flex-wrap: wrap; }
}
