/* KUKA HOME — Premium Furniture Brand
   Main stylesheet */

/* ============================================
   KUKA HOME — Premium Furniture Brand
   Luxury minimal design system
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-black: #0a0a0a;
  --color-white: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-red: #b91c1c;
  --color-red-hover: #991b1b;
  --color-red-light: rgba(185, 28, 28, 0.08);

  --font-heading: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "Montserrat", "Inter", system-ui, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --header-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-2xl); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-3xl); }
}

/* ============================================
   HEADER — Sticky, minimal, premium
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-200);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .header-inner { padding: 0 var(--space-2xl); }
}

.header-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-logo img {
  height: clamp(28px, 4vw, 36px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-logo-placeholder {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-red);
  letter-spacing: 0.02em;
}

/* Navigation */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
  }

  .header-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    letter-spacing: 0.02em;
    position: relative;
  }

  .header-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width var(--transition-base);
  }

  .header-nav a:hover,
  .header-nav a.active {
    color: var(--color-black);
  }

  .header-nav a:hover::after,
  .header-nav a.active::after {
    width: 100%;
  }
}

/* Mobile nav: active page indicator */
.mobile-nav .header-nav a.active {
  color: var(--color-red);
  font-weight: 600;
}

.mobile-nav .header-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1em;
  background: var(--color-red);
  border-radius: 0 2px 2px 0;
}

/* Right block: lang + social */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 0 0 auto;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 10px;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.lang-flag {
  display: block;
  flex: 0 0 auto;
}

.lang-flag-current {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.lang-flag-option {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.lang-code {
  min-width: 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.lang-name {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
}

.lang-switcher-btn:hover {
  border-color: var(--color-gray-400);
  color: var(--color-black);
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + var(--space-sm));
  right: 0;
  min-width: 160px;
  width: max-content;
  max-width: min(220px, calc(100vw - 24px));
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 100;
}

.lang-switcher.open .lang-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher-dropdown button {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
  border: none;
  background: none;
}

.lang-switcher-dropdown button:hover {
  background: var(--color-gray-100);
  color: var(--color-black);
}

.lang-switcher-dropdown button:hover .lang-code,
.lang-switcher-dropdown button:hover .lang-name {
  color: var(--color-black);
}

.lang-switcher-dropdown button:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

  .lang-switcher-dropdown button:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

@media (max-width: 767px) {
  .lang-switcher-dropdown {
    left: 0;
    right: auto;
    min-width: 0;
    width: min(190px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .lang-switcher-dropdown button {
    padding: 12px 14px;
    gap: 10px;
    white-space: nowrap;
  }

  .lang-name {
    font-size: 0.9rem;
  }
}

/* Social icons header */
.header-social {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.5vw, var(--space-sm));
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 8vw, 40px);
  height: clamp(32px, 8vw, 40px);
  color: var(--color-gray-600);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.header-social a:hover {
  color: var(--color-red);
  background: var(--color-red-light);
  transform: translateY(-2px);
}

.header-social svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu trigger */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 9vw, 44px);
  height: clamp(38px, 9vw, 44px);
  color: var(--color-gray-700);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 12px;
  right: 12px;
  background: var(--color-white);
  padding: var(--space-xl);
  overflow-y: auto;
  max-height: calc(100vh - var(--header-height) - 24px);
  border-radius: 18px;
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
  z-index: 1200;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav .header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.mobile-nav .header-nav a {
  font-size: 1.25rem;
  position: relative;
  padding-left: 14px;
}

/* ============================================
   MAIN CONTENT — Offset for fixed header
   ============================================ */
.main-content {
  min-height: 100vh;
  padding-top: var(--header-height);
}

/* ============================================
   FOOTER — Black, premium, balanced
   ============================================ */
.site-footer {
  background: var(--color-black);
  color: var(--color-gray-300);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-3xl);
}

@media (min-width: 375px) {
  .footer-grid { padding-left: var(--space-xl); padding-right: var(--space-xl); }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.footer-brand .logo-text {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-hours {
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  margin: 0;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-gray-400);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.footer-social a:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-right {
  display: contents;
}

@media (min-width: 1024px) {
  .footer-right {
    display: contents;
  }
}

.footer-col {
  min-width: 0;
}

.footer-pages {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-pages a {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-pages a:hover {
  color: var(--color-white);
}

.footer-contact .phone {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.footer-contact .phone:hover {
  color: var(--color-gray-200);
}

.footer-contact .footer-heading:not(:first-child) {
  margin-top: var(--space-lg);
}

/* Payment methods — clean grid with SVG icons */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.footer-payments a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  padding: 6px 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.footer-payments a:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.footer-payments img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.footer-payments a:hover img {
  opacity: 1;
}

@media (min-width: 390px) {
  .footer-payments {
    gap: var(--space-md);
  }
  .footer-payments a {
    width: 60px;
    height: 38px;
  }
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--color-gray-800);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom { padding-left: var(--space-2xl); padding-right: var(--space-2xl); }
}

@media (min-width: 1024px) {
  .footer-bottom { padding-left: var(--space-3xl); padding-right: var(--space-3xl); }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin: 0;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: calc(var(--space-xl) + 56px + var(--space-md));
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), background var(--transition-fast);
  z-index: 900;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-red);
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   CHAT WIDGET — Premium support component
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 380px;
  max-width: calc(100vw - var(--space-2xl));
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 950;
  display: flex;
  flex-direction: column;
  max-height: 440px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.chat-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-widget.hidden {
  display: none !important;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-black);
  border-radius: 16px 16px 0 0;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red);
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.chat-brand-name {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.chat-brand-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-top: 2px;
}

.chat-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.8);
  border-radius: 10px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.chat-close:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.chat-body {
  padding: var(--space-xl);
  flex: 1;
  overflow-y: auto;
  background: var(--color-white);
}

.chat-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  margin-bottom: var(--space-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: inherit;
}

.chat-form input:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: var(--color-gray-400);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.chat-form textarea {
  min-height: 100px;
  resize: vertical;
}

.chat-submit {
  width: 100%;
  padding: 14px var(--space-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 10px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.chat-submit:hover {
  background: var(--color-red);
}

.chat-submit:active {
  transform: scale(0.98);
}

.chat-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.chat-success,
.chat-error {
  font-size: 0.8125rem;
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 8px;
}

.chat-success:empty,
.chat-error:empty {
  display: none;
}

.chat-success { color: #15803d; background: #dcfce7; }
.chat-error { color: #b91c1c; background: #fee2e2; }

/* Chat trigger */
.chat-trigger {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 940;
}

.chat-trigger:hover {
  background: var(--color-red);
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(185, 28, 28, 0.35);
}

.chat-trigger svg {
  width: 26px;
  height: 26px;
}

.chat-trigger.hidden {
  display: none !important;
}

.chat-trigger.attention {
  animation: chatPulse 1.5s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 12px 32px rgba(185, 28, 28, 0.4); }
}

/* Ripple */
.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  animation: ripple 650ms ease-out forwards;
}

@keyframes ripple {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(22); }
}

.chat-widget.open ~ .chat-trigger {
  display: none !important;
}

@media (max-width: 768px) {
  .chat-trigger {
    width: 52px;
    height: 52px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
  .chat-widget {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    width: auto;
    max-width: none;
    max-height: min(520px, 72vh);
    border-radius: 16px;
  }
  .chat-body {
    padding: var(--space-lg);
  }
}

@media (max-width: 374px) {
  .chat-trigger {
    bottom: var(--space-md);
    right: var(--space-md);
  }
  .chat-widget {
    bottom: var(--space-md);
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

/* ============================================
   HERO SLIDER — Home
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: min(85vh, calc(100vw * 9 / 16));
  min-height: clamp(220px, 42vw, 480px);
  max-height: 900px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: clamp(220px, 56vw, 300px);
    max-height: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.22) 100%);
  }

  .hero-arrows {
    bottom: 28px;
  }

  .hero-dots {
    bottom: 10px;
  }
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease, opacity 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.prev {
  opacity: 1;
  transform: translateX(-100%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero-arrows {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 3;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-black);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--color-white);
  transform: scale(1.08);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-dots {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  transition: background var(--transition-base), transform var(--transition-base);
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.25);
}

/* ============================================
   SECTIONS — Spacing & animations
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-5xl) 0; }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title h2 {
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.section-title p {
  color: var(--color-gray-500);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BRAND MESSAGE — Stats
   ============================================ */
.brand-section {
  background: var(--color-gray-100);
}

.brand-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-black);
}

.stats-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.stats-sub {
  margin-top: var(--space-md);
  color: var(--color-gray-600);
  font-size: 1rem;
}

.stats-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .stats-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-xl);
  }
}

.stat-premium {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(120px 120px at 20% 20%, rgba(185, 28, 28, 0.10), transparent 60%);
  pointer-events: none;
}

.stat-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  border-color: rgba(185, 28, 28, 0.25);
}

.stat-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-red);
  letter-spacing: 0.01em;
}

.stat-label {
  margin-top: 6px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-gray-700);
  line-height: 1.35;
}

/* ============================================
   NEW PRODUCTS — Cards with hover
   ============================================ */
.products-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

.products-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  margin-top: calc(var(--space-3xl) * -1);
  color: var(--color-black);
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gray-300);
}

.product-card .product-gallery {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}

.product-card .product-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), transparent 32%, transparent 68%, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card .product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease, opacity 420ms ease;
}

.product-card .product-gallery.is-switching::after {
  opacity: 1;
}

.product-card .product-gallery.is-switching img {
  transform: scale(1.04);
  filter: blur(4px);
  opacity: 0.86;
}

.product-card:hover .product-gallery img {
  transform: scale(1.05);
}

.product-card .product-info {
  padding: var(--space-lg);
}

.product-card .product-info h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.product-card .product-info p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.product-gallery-dots {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.product-gallery-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: background var(--transition-fast), width var(--transition-fast);
}

.product-gallery-dots span.active {
  background: var(--color-white);
  width: 18px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
}

.product-lightbox.open {
  display: block;
}

.product-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
}

.product-lightbox-dialog {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-dialog img {
  max-width: min(92vw, 1240px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.product-lightbox-close,
.product-lightbox-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.product-lightbox-close {
  top: 6px;
  right: 6px;
}

.product-lightbox-nav.prev {
  left: 12px;
}

.product-lightbox-nav.next {
  right: 12px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-red);
}

.benefit-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), color var(--transition-base);
}

.benefit-card:hover .icon-wrap {
  background: var(--color-red);
  color: var(--color-white);
}

.benefit-card .icon-wrap svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--color-gray-100);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--color-gray-600);
  font-size: 1.125rem;
}

.page-hero--image {
  position: relative;
  background: none;
  padding: clamp(5rem, 12vw, 8.5rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(0.92) contrast(1.04);
}

.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.5) 100%);
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero--image h1 {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.page-hero--image p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  font-size: 1.0625rem;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.page-hero--showrooms-rich {
  background-color: #d8d8d8;
}

.page-hero--showrooms-rich::before {
  display: none;
}

.page-hero--showrooms-rich::after {
  display: none;
}

.page-hero--showrooms-rich .container {
  max-width: 760px;
}

.page-hero--showrooms-rich h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  margin-bottom: 1rem;
}

.page-hero--showrooms-rich p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.96);
}

.page-hero--about .page-hero__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  text-shadow: none;
}

.about-section-title {
  margin-bottom: var(--space-md);
}

.about-intro .lead {
  max-width: 520px;
}

.split {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
  }
  .split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.media-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-red);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.0625rem;
  color: var(--color-gray-700);
  line-height: 1.75;
}

.values-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.value-card {
  padding: 22px 18px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.10);
  border-color: rgba(185, 28, 28, 0.22);
}

.value-card h3 {
  font-family: var(--font-heading);
  color: var(--color-black);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

/* Showrooms */
.showrooms-list {
  display: grid;
  gap: var(--space-2xl);
}

.showroom-card {
  display: grid;
  gap: var(--space-xl);
  padding: 18px;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

@media (min-width: 1024px) {
  .showroom-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.showroom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.10);
  border-color: rgba(185, 28, 28, 0.22);
}

.showroom-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
}

.showroom-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-info h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 10px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.info-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-gray-700);
}

.info-row .icon {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: var(--color-red-light);
  color: var(--color-red);
}

.info-row .icon svg {
  width: 16px;
  height: 16px;
}

.info-row .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 2px;
}

.info-row .value {
  color: var(--color-gray-800);
  font-size: 0.95rem;
}

.map-preview {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  height: 200px;
  margin-top: 14px;
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Videos modal */
.video-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.video-tile {
  cursor: pointer;
}

.video-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-tile .card-content h3 {
  line-height: 1.4;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.video-modal.open {
  display: block;
}

.video-modal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.video-modal .dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  background: #0a0a0a;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 120px rgba(0,0,0,0.45);
}

.video-modal .dialog-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 12px;
  background: rgba(255,255,255,0.04);
}

.video-modal .dialog-header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255,255,255,0.88);
  transition: background var(--transition-fast);
}

.video-modal .dialog-header button:hover {
  background: rgba(255,255,255,0.08);
}

.video-modal .frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form .form-group {
  margin-bottom: var(--space-lg);
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-gray-700);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red-light);
}

.contact-info-card {
  background: var(--color-gray-100);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  height: fit-content;
}

.contact-info-card h3 {
  margin-bottom: var(--space-lg);
  color: var(--color-black);
}

.contact-info-card a,
.contact-info-card p {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--color-gray-700);
}

.contact-info-card a:hover {
  color: var(--color-red);
}

.contact-layout {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
  }
}

.contact-panel {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.contact-panel h2 {
  margin-bottom: 14px;
  color: var(--color-black);
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-meta .row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-meta .row .icon {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: var(--color-red-light);
  color: var(--color-red);
}

.contact-meta .row .icon svg {
  width: 16px;
  height: 16px;
}

.contact-meta .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 2px;
}

.contact-meta .value {
  color: var(--color-gray-800);
  font-size: 0.98rem;
}

.contact-map {
  margin-top: 18px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   SHOWROOMS / VIDEOS / FURNITURE — Cards
   ============================================ */
.cards-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.card-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-item .card-content {
  padding: var(--space-lg);
}

.card-item .card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}

.card-item .card-content p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

.video-card {
  position: relative;
}

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  transition: background var(--transition-base);
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.video-card .play-overlay svg {
  width: 64px;
  height: 64px;
  opacity: 0.9;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero--about-rich {
  background-color: #d8d8d8;
}

.page-hero--about-rich::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.34) 0%, rgba(12, 12, 12, 0.48) 100%);
}

.page-hero--about-rich::before {
  display: none;
}

.page-hero__content--wide {
  max-width: 760px;
}

.page-hero__subtitle {
  max-width: 560px;
}

.page-hero--about-rich .page-hero__label,
.page-hero--about-rich h1,
.page-hero--about-rich .page-hero__subtitle {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.about-overview-section,
.about-design-section {
  background: #f5f5f5;
}

.about-overview-grid,
.about-legacy-grid,
.about-design-grid,
.about-records-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .about-overview-grid,
  .about-legacy-grid,
  .about-design-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .about-records-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-copy .lead,
.about-design-copy .lead,
.about-legacy-grid .lead {
  margin-top: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-700);
}

.about-facts {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-lg);
}

.about-facts-stats {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .about-facts-stats {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.fact-number-block {
  padding: 28px 24px;
  text-align: center;
}

.fact-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: #c1181d;
}

.fact-number-block p {
  margin-top: 8px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #1c1c1c;
  font-weight: 600;
}

.fact-divider {
  width: 1px;
  height: 82px;
  background: rgba(0, 0, 0, 0.16);
  display: none;
}

@media (min-width: 640px) {
  .fact-divider {
    display: block;
  }
}

.about-principles-list {
  padding: 28px 24px;
  display: grid;
  gap: 28px;
}

.about-principles-list h3 {
  color: #c1181d;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-principles-list p {
  color: #151515;
  line-height: 1.6;
  font-size: 1rem;
}

.about-quote {
  margin: var(--space-xl) 0 0;
  padding-left: 20px;
  border-left: 3px solid #c1181d;
  color: var(--color-gray-700);
  line-height: 1.8;
  font-size: 1rem;
}

.about-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-gallery img,
.about-design-visuals img,
.about-record-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.about-gallery img[data-about-zoom],
.about-design-visuals img[data-about-zoom],
.about-record-item img[data-about-zoom] {
  cursor: zoom-in;
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base), opacity var(--transition-base);
}

.about-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.about-gallery img:not(:first-child) {
  aspect-ratio: 1 / 1;
}

.about-design-visuals {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-design-visuals img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.about-design-visuals img:not(:first-child) {
  aspect-ratio: 1 / 1;
}

.about-records-grid--stacked {
  grid-template-columns: 1fr;
}

.about-record-item {
  display: grid;
  gap: 18px;
}

.about-record-item img {
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .about-records-grid--stacked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-awards-stats {
  margin-top: var(--space-3xl);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .about-awards-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.award-stat {
  text-align: center;
  background: #fff;
  border-radius: 22px;
  padding: 28px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

.award-stat-value {
  color: #c1181d;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 10px;
}

.award-stat p {
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.5;
}

.record-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
  .about-gallery,
  .about-design-visuals {
    gap: 14px;
  }

  .about-gallery img:first-child,
  .about-design-visuals img:first-child {
    aspect-ratio: 4 / 3;
  }

  .about-record-item img {
    aspect-ratio: auto;
  }

  .record-card {
    border-radius: 20px;
    padding: 20px 18px;
  }
}

.record-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.record-card p {
  color: var(--color-gray-700);
  line-height: 1.7;
}

.about-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 3000;
}

.about-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-lightbox img {
  max-width: min(92vw, 1500px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.42);
  object-fit: contain;
  cursor: zoom-out;
  transform: scale(0.96);
  transition: transform var(--transition-base);
}

.about-lightbox.open img {
  transform: scale(1);
}

.about-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 374px) {
  .container { padding: 0 var(--space-md); }
  .header-inner { padding: 0 var(--space-md); }
  .footer-grid { padding-left: var(--space-md); padding-right: var(--space-md); }
  .hero { min-height: 400px; }
.scroll-to-top { bottom: var(--space-lg); right: var(--space-lg); }
  .section { padding: var(--space-3xl) 0; }
}

@media (min-width: 375px) and (max-width: 413px) {
  .container { padding: 0 var(--space-lg); }
}

@media (min-width: 414px) and (max-width: 767px) {
  .container { padding: 0 var(--space-xl); }
}

.mobile-bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  border-radius: 24px;
  z-index: 1300;
}

.mobile-bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--color-gray-500);
  font-size: 0.64rem;
  text-decoration: none;
  text-align: center;
}

.mobile-bottom-nav a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.mobile-bottom-nav a svg {
  width: 22px;
  height: 22px;
}

.mobile-bottom-nav a.active {
  color: var(--color-red);
  font-weight: 600;
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: grid;
  }

  .mobile-bottom-nav,
  .mobile-bottom-nav * {
    pointer-events: auto;
  }

  body {
    padding-bottom: 94px;
  }

  .chat-trigger {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .page-hero--image { padding-top: clamp(5.5rem, 11vw, 7rem); }
}

@media (min-width: 1024px) {
  .header-nav { gap: var(--space-xl); }
}

@media (min-width: 1440px) {
  .container { max-width: 1440px; }
  .header-inner { max-width: 1440px; }
  .footer-grid { max-width: 1440px; }
  .footer-bottom { max-width: 1440px; }
}
