/* ============================================
   SHINI AUSTRIA — Light Theme (Westwood-style)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg: #ffffff;
  --bg-elevated: #f5f5f7;
  --bg-subtle: #eeeef0;
  --text: #111111;
  --text-dim: #555555;
  --text-faint: #999999;
  --accent: #B8860B;
  --accent-light: #D4A017;
  --accent-bg: rgba(184,134,11,0.06);
  --rule: rgba(0,0,0,0.08);
  --rule-strong: rgba(0,0,0,0.12);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dim);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---- NAV ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(20px, 4vw, 40px);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule);
}
.site-nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-nav__brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--text); display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.site-nav__brand em {
  font-style: normal; font-weight: 400; color: var(--accent);
}
.site-nav__brand-wrap {
  display: flex; flex-direction: column; line-height: 1.2;
}
.site-nav__brand-sub {
  font-size: 0.55rem; font-weight: 500;
  color: var(--text-faint); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 1px;
  max-width: 160px; line-height: 1.4;
}
.site-nav__logo {
  height: 40px; width: auto;
}
.site-nav__mark {
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.site-nav__links {
  display: flex; align-items: center; gap: 32px;
}
.site-nav__link {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: -2px; right: -2px;
  height: 0;
  background: #FFD200;
  transition: height 0.3s ease;
}
.site-nav__link:hover::after {
  height: 2px;
}
.site-nav__link--active::after {
  height: 34px;
  background: rgba(0,0,0,0.05);
  clip-path: polygon(4% 0%, 96% 0%, 100% 100%, 0% 100%);
  bottom: -8px;
  left: -10px;
  right: -10px;
}
.site-nav__link:hover, .site-nav__link--active {
  color: var(--text);
}
.site-nav__cta {
  font-size: 0.78rem; font-weight: 600;
  color: var(--bg); background: var(--text);
  padding: 7px 18px; border-radius: 6px;
  border: none; transition: opacity 0.2s;
  display: inline-block;
}
.site-nav__cta:hover { opacity: 0.8; }
.site-nav__right { display: flex; align-items: center; gap: 14px; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; padding: 6px;
  flex-direction: column; gap: 4px;
}
.mobile-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); border-radius: 1px;
  transition: all 0.25s;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3px,3px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 600;
  padding: 12px 28px; border-radius: 7px;
  border: none; transition: all 0.25s; cursor: pointer;
}
.btn--fill {
  background: var(--text); color: var(--bg);
}
.btn--fill:hover { opacity: 0.8; }
.btn--accent {
  background: var(--accent); color: var(--bg);
}
.btn--accent:hover { background: var(--accent-light); }
.btn--outline {
  background: none; color: var(--text-dim);
  border: 1px solid var(--rule-strong);
}
.btn--outline:hover { border-color: var(--text); color: var(--text); }
.btn--ghost {
  background: none; color: var(--text-dim); padding: 12px 0; border: none;
}
.btn--ghost:hover { color: var(--text); }
.btn svg { width: 14px; height: 14px; }

/* ---- HERO ---- */
.hero {
  min-height: auto;
  display: flex; align-items: flex-end;
  padding: 140px 0 clamp(64px, 8vh, 100px);
  position: relative;
  background: var(--bg-elevated);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__product-img {
  position: absolute;
  right: 8%; bottom: 0;
  height: 75%; max-height: 620px;
  max-width: 45vw;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}
.hero .wrap {
  position: relative; z-index: 2; width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero__title span {
  color: var(--text-faint);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 48px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ---- MARQUEE ---- */
.marquee-bar {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0.5;
}

/* ---- EDITORIAL ---- */
.editorial {
  padding: clamp(80px, 12vw, 160px) 0;
}
.editorial__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.editorial__kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.editorial__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}
.editorial__text {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--text-dim);
}
.editorial__text p + p { margin-top: 16px; }
.editorial__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__media-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 0.7rem; font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 5px;
}

/* ---- PRODUCTS ---- */
.products {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--rule);
}
.products__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.products__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--text); line-height: 1.15;
}
.products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.products__list--two-col {
  grid-template-columns: 1fr 1fr;
  width: calc((200% + 1px) / 3);
  border-radius: 0 0 12px 12px;
}
.product-item {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column;
  transition: background 0.3s;
  position: relative;
  cursor: pointer;
}
.product-item:hover { background: var(--bg-elevated); }
.product-item__image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.product-item__image img {
  max-width: 75%; max-height: 75%; object-fit: contain;
  position: relative; z-index: 1;
  transition: transform 0.4s ease;
}
.product-item:hover .product-item__image img { transform: scale(1.05); }
.product-item__image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 140px;
  background: #FFD200;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
.product-item__num {
  font-family: 'Space Grotesk', var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.3;
}
.product-item__name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-item__desc {
  font-size: 0.875rem; line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 28px;
  flex: 1;
}
.product-item__link {
  font-size: 0.8rem; font-weight: 600;
  color: var(--text); display: inline-flex;
  align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.product-item__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
}
.product-item__link:hover { gap: 10px; color: var(--accent); }
.product-item__link svg { width: 12px; height: 12px; }

/* ---- FEATURE BANNER ---- */
.feature-banner {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--rule);
}
.feature-banner__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature-banner__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.feature-banner__visual img { max-width: 85%; max-height: 85%; object-fit: contain; }
.feature-banner__visual::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 140px;
  background: #FFD200;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
.feature-banner__kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.feature-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.1;
  margin-bottom: 24px;
}
.feature-banner__text {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--text-dim); margin-bottom: 36px;
}
.feature-banner__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 36px;
}
.spec { padding: 16px 0; border-top: 1px solid var(--rule); }
.spec__val {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent); margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.spec__label {
  font-size: 0.72rem; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---- SERVICES / REGIONS ---- */
.regions {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg-elevated);
}
.regions__top {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px;
  margin-bottom: 48px;
}
.regions__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--text); line-height: 1.15;
}
.regions__sub {
  font-size: 0.9rem; max-width: 400px;
  text-align: right; color: var(--text-dim);
}
.regions__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.region-tag {
  padding: 10px 20px;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-dim);
  transition: all 0.2s;
  background: var(--bg);
}
.region-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- CTA ---- */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--rule);
  text-align: center;
  background: var(--bg-elevated);
}
.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.1;
  margin-bottom: 20px;
}
.cta__text {
  font-size: 1rem; color: var(--text-dim);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 60px 0 36px;
  background: var(--bg);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.site-footer__brand em { font-style: normal; font-weight: 400; color: var(--accent); }
.site-footer__desc {
  font-size: 0.82rem; color: var(--text-dim);
  max-width: 280px; line-height: 1.65;
}
.site-footer__col-title {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-faint); margin-bottom: 16px;
}
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a {
  font-size: 0.82rem; color: var(--text-dim); transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--accent); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--rule);
  font-size: 0.72rem; color: var(--text-faint);
}
.site-footer__bottom a { transition: color 0.2s; }
.site-footer__bottom a:hover { color: var(--text-dim); }

/* ---- PAGE HEADERS (subpages) ---- */
.page-header {
  padding-top: 140px; padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-elevated);
}
.page-header__kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.1;
  margin-bottom: 16px;
}
.page-header__desc {
  font-size: 1rem; color: var(--text-dim);
  max-width: 560px; line-height: 1.7;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-faint); margin-bottom: 24px;
}
.breadcrumb-nav a { color: var(--text-faint); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--text-dim); }

/* ---- CONTACT ---- */
.contact-section { padding: clamp(60px, 10vw, 120px) 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.contact-info-item { display: flex; gap: 14px; }
.contact-info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 8px;
  color: var(--accent);
}
.contact-info-label {
  font-size: 0.68rem; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
}
.contact-info-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-dim); margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1px solid var(--rule-strong);
  border-radius: 7px; color: var(--text);
  font-family: var(--font-body); font-size: 0.88rem;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- PRODUCT DETAIL (subpages) ---- */
.product-detail { padding: clamp(60px, 10vw, 120px) 0; }
.product-detail__split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.product-detail__image {
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-detail__image img { max-width: 80%; max-height: 80%; object-fit: contain; }

.product-series { padding: clamp(60px, 10vw, 100px) 0; border-top: 1px solid var(--rule); }
.product-series__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  border-radius: 12px; overflow: hidden; margin-top: 48px;
}
.series-item {
  background: var(--bg); padding: clamp(24px, 3vw, 40px);
  transition: background 0.3s;
  display: grid; grid-template-columns: 180px 1fr; gap: 32px;
  align-items: start;
}
.series-item:hover { background: var(--bg-elevated); }
.series-item__image {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-elevated);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
}
.series-item__image img {
  max-width: 80%; max-height: 80%; object-fit: contain;
  mix-blend-mode: multiply;
}
.series-item__image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 32px;
  background: #FFD200;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.series-item__content { min-width: 0; }
.series-item__name {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.series-item__subtitle {
  font-size: 0.82rem; color: var(--accent); font-weight: 500;
  margin-bottom: 12px;
}
.series-item__desc { font-size: 0.875rem; line-height: 1.65; color: var(--text-dim); margin-bottom: 12px; }
.series-item__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.series-badge {
  font-size: 0.68rem; font-weight: 600;
  background: var(--accent-bg); color: var(--accent);
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.series-item__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px;
  list-style: none;
}
.series-item__features li {
  font-size: 0.82rem; color: var(--text-dim);
  padding-left: 16px; position: relative; line-height: 1.6;
}
.series-item__features li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: 0.75rem;
}
.series-item__actions {
  margin-top: 16px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.series-item__pdf {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px; transition: all 0.2s;
}
.series-item__pdf:hover {
  background: var(--accent); color: var(--bg);
}
.series-item__pdf svg { width: 14px; height: 14px; }
.series-item__inquiry {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--bg); padding: 8px 16px;
  background: var(--text); border: 1px solid var(--text);
  border-radius: 6px; transition: all 0.2s;
}
.series-item__inquiry:hover { opacity: 0.8; }
.series-item__inquiry svg { width: 14px; height: 14px; }

/* ---- IMPRESSUM MODAL ---- */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg); max-width: 560px; width: 90%;
  max-height: 80vh; overflow-y: auto;
  padding: 40px; border-radius: 12px; position: relative;
}
.modal h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 24px;
}
.modal h3 {
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 20px 0 6px;
}
.modal p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; background: none; border: none;
  cursor: pointer; font-size: 1.2rem; color: var(--text-faint);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

/* ---- COOKIE ---- */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px;
  max-width: 400px; background: var(--bg);
  border: 1px solid var(--rule); border-radius: 10px;
  padding: 20px; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: none;
}
.cookie-banner.show { display: block; animation: fadeUp 0.3s ease-out; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 0.8rem; color: var(--text-dim);
  line-height: 1.55; margin-bottom: 14px;
}
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-banner__actions .btn { padding: 8px 16px; font-size: 0.75rem; }

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal="1"] { transition-delay: 0.08s; }
[data-reveal="2"] { transition-delay: 0.16s; }
[data-reveal="3"] { transition-delay: 0.24s; }
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__product-img { right: 0%; }
  .editorial__split { grid-template-columns: 1fr; }
  .feature-banner__inner { grid-template-columns: 1fr; }
  .feature-banner__visual { max-width: 480px; }
  .products__list { grid-template-columns: 1fr; }
  .products__list--two-col { grid-template-columns: 1fr; width: 100%; border-radius: 0 0 12px 12px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-detail__split { grid-template-columns: 1fr; gap: 48px; }
  .series-item { grid-template-columns: 140px 1fr; gap: 24px; }
  .series-item__features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .series-item { grid-template-columns: 1fr; gap: 16px; }
  .series-item__image { max-width: 160px; }
}

@media (max-width: 768px) {
  .site-nav__links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column;
    padding: 24px; gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--rule);
  }
  .site-nav__links.open { transform: none; }
  .site-nav__link { font-size: 1rem; padding: 10px 0; }
  .mobile-toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero__product-img { height: 35%; max-width: 55vw; right: 0%; opacity: 0.25; }
  .products__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .regions__top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .regions__sub { text-align: left; }
  .cta__actions { flex-direction: column; align-items: center; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
}
