/* ============================================================
   SUXINE LEWAYI — CUSTOM CSS
   Split Contrast Design System
   ============================================================ */


:root {
  --color-dark: #111118;
  --color-dark-2: #1c1c26;
  --color-dark-3: #252532;
  --color-light: #f7f5f0;
  --color-light-2: #ede9e1;
  --color-white: #ffffff;
  --color-accent: #e8a045;
  --color-accent-light: #f5c07a;
  --color-accent-dark: #c4832a;
  --color-text-dark: #1c1c26;
  --color-text-muted: #6b6880;
  --color-text-light: #f0ece4;
  --color-text-light-muted: rgba(240,236,228,0.65);

  --shadow-sm: 0 1px 3px rgba(17,17,24,0.08), 0 1px 2px rgba(17,17,24,0.06);
  --shadow-md: 0 4px 12px rgba(17,17,24,0.10), 0 2px 4px rgba(17,17,24,0.06);
  --shadow-lg: 0 8px 24px rgba(17,17,24,0.12), 0 4px 8px rgba(17,17,24,0.08);
  --shadow-xl: 0 20px 48px rgba(17,17,24,0.16), 0 8px 16px rgba(17,17,24,0.10);
  --shadow-accent: 0 4px 20px rgba(232,160,69,0.30), 0 2px 6px rgba(232,160,69,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 7rem);

  --nav-height: 72px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; font-size: 16px; height: fit-content; }

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--color-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


.cookie-bar {
  background: var(--color-dark);
  border-bottom: 1px solid rgba(232,160,69,0.25);
  padding: 10px 0;
  transition: max-height var(--transition-slow), opacity var(--transition-base), padding var(--transition-base);
  overflow: hidden;
  max-height: fit-content;
}
.cookie-bar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.cookie-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-bar__text {
  font-size: 0.82rem;
  color: var(--color-text-light-muted);
  flex: 1;
  min-width: 200px;
}
.cookie-bar__text a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.cookie-bar__text a:hover { color: var(--color-accent-light); }
.cookie-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-bar__btn {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: inherit;
  transition: all var(--transition-fast);
  min-height: 32px;
}
.cookie-bar__btn--accept {
  background: var(--color-accent);
  color: var(--color-dark);
}
.cookie-bar__btn--accept:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.cookie-bar__btn--decline {
  background: transparent;
  color: var(--color-text-light-muted);
  border: 1px solid rgba(240,236,228,0.2);
}
.cookie-bar__btn--decline:hover {
  color: var(--color-text-light);
  border-color: rgba(240,236,228,0.4);
}


.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: none;
  transition: box-shadow var(--transition-base);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo { width: 36px; height: 36px; }
.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}
.nav-link:hover, .nav-link.active { color: var(--color-text-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark-2);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at calc(100% - 44px) 36px);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-overlay.open {
  clip-path: circle(150% at calc(100% - 44px) 36px);
  pointer-events: all;
}
.mobile-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.4rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.mobile-overlay__close:hover { color: var(--color-accent); transform: rotate(90deg); }
.mobile-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
}
.mobile-overlay.open .mobile-overlay__nav {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay__link {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}
.mobile-overlay__link:hover { color: var(--color-accent); }


.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.content-block { padding: var(--space-2xl) 0; }
.content-block--light { background: var(--color-light); }
.content-block--dark { background: var(--color-dark); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.section-eyebrow--light { color: var(--color-accent); }
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
}
.section-heading--light { color: var(--color-text-light); }
.section-sub {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.section-sub--light { color: var(--color-text-light-muted); }


.hero-block {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,24,0.88) 0%,
    rgba(17,17,24,0.65) 50%,
    rgba(17,17,24,0.40) 100%
  );
}
.hero-block__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  padding-top: calc(var(--nav-height) + var(--space-xl));
}
.hero-block__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.hero-block__heading {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text-light);
  letter-spacing: -0.04em;
  max-width: 720px;
  margin-bottom: var(--space-lg);
}
.highlight-text {
  color: var(--color-accent);
  position: relative;
}
.hero-block__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-light-muted);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.hero-block__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero-block__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
  min-height: 48px;
}
.primary-action:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,160,69,0.40), 0 2px 8px rgba(232,160,69,0.20);
}
.primary-action--inverted {
  background: var(--color-accent);
  color: var(--color-dark);
}
.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text-light);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(240,236,228,0.35);
  transition: all var(--transition-base);
  min-height: 48px;
}
.secondary-action:hover {
  border-color: rgba(240,236,228,0.7);
  background: rgba(240,236,228,0.08);
}
.ghost-action {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text-light-muted);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(240,236,228,0.25);
  transition: all var(--transition-base);
  min-height: 48px;
}
.ghost-action:hover {
  color: var(--color-text-light);
  border-color: rgba(240,236,228,0.5);
}
.ghost-action--dark {
  color: var(--color-text-muted);
  border-color: rgba(28,28,38,0.3);
}
.ghost-action--dark:hover {
  color: var(--color-text-dark);
  border-color: rgba(28,28,38,0.6);
}
.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.card-action::after { content: '→'; transition: transform var(--transition-fast); }
.card-action:hover { color: var(--color-accent); gap: 10px; }
.card-action:hover::after { transform: translateX(3px); }


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.intro-grid__lead h2 { margin-bottom: var(--space-md); }
.intro-grid__body {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.intro-grid__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(28,28,38,0.06);
  transition: all var(--transition-base);
  cursor: default;
}
.feature-pill:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(232,160,69,0.15);
  transform: translateY(-2px);
}
.feature-pill i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }


.visual-break { padding: var(--space-2xl) 0; }
.visual-break--dark { background: var(--color-dark); }
.visual-break__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.visual-break__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,160,69,0.1);
}
.visual-break__text .section-heading { margin: var(--space-sm) 0 var(--space-lg); }

.step-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.step-list__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.step-list__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 28px;
}
.step-list__item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.step-list__item p {
  font-size: 0.92rem;
  color: var(--color-text-light-muted);
  line-height: 1.65;
}


.info-grid { display: grid; gap: var(--space-lg); }
.info-grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
.info-grid--4 { grid-template-columns: repeat(4, 1fr); }


.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.product-card__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.product-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
}
.product-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}


.team-card {
  background: var(--color-dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  transition: all var(--transition-base);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,160,69,0.15);
}
.team-card__photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover .team-card__photo { transform: scale(1.04); }
.team-card__info { padding: var(--space-md) var(--space-lg) var(--space-lg); }
.team-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.team-card__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  line-height: 1.65;
}


.philosophy-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.philosophy-teaser__text .section-heading { margin: var(--space-sm) 0 var(--space-md); }
.philosophy-teaser__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.philosophy-teaser__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}


.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.cta-block__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}
.cta-block__heading--dark { color: var(--color-text-dark); }
.cta-block__sub {
  font-size: 1rem;
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-xl);
}
.cta-block__sub--dark { color: var(--color-text-muted); }
.cta-block__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.content-block--cta-light { background: var(--color-light-2); }


.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}
.page-hero--dark { background: var(--color-dark); }
.page-hero--light { background: var(--color-light-2); }
.page-hero__content { max-width: 720px; }
.page-hero__heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: var(--space-sm) 0 var(--space-md);
}
.page-hero__heading--dark { color: var(--color-text-dark); }
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  max-width: 560px;
}
.page-hero__sub--dark { color: var(--color-text-muted); }


.philosophy-article { max-width: 780px; }
.philosophy-article__lead h2 { margin-bottom: var(--space-md); }
.philosophy-article__intro {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: var(--space-lg);
}
.philosophy-article__body p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}


.value-card {
  padding: var(--space-lg);
  background: var(--color-dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-base);
}
.value-card:hover {
  border-color: rgba(232,160,69,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,69,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: background var(--transition-base);
}
.value-card:hover .value-card__icon { background: rgba(232,160,69,0.2); }
.value-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.value-card__text {
  font-size: 0.92rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
}


.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.split-content__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.split-content__text .section-heading { margin: var(--space-sm) 0 var(--space-md); }
.split-content__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}


.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.product-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(28,28,38,0.06);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.product-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,160,69,0.1);
}
.product-detail-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232,160,69,0.12);
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.product-detail-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.product-detail-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}
.product-detail-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-detail-card__specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  cursor: default;
  transition: color var(--transition-fast);
}
.product-detail-card__specs li i { color: var(--color-accent); font-size: 0.6rem; flex-shrink: 0; }
.product-detail-card__specs li:hover { color: var(--color-accent-dark); }


.accessory-card {
  padding: var(--space-lg);
  background: var(--color-dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-base);
}
.accessory-card:hover {
  border-color: rgba(232,160,69,0.2);
  transform: translateY(-3px);
}
.accessory-card__icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.accessory-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.accessory-card p {
  font-size: 0.92rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
}


.compatibility-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.compatibility-block__text .section-heading { margin: var(--space-sm) 0 var(--space-md); }
.compatibility-block__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.compatibility-block__icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.compat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(28,28,38,0.06);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}
.compat-item i { font-size: 1.8rem; color: var(--color-accent); }
.compat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(232,160,69,0.12);
}


.tip-article { max-width: 860px; }
.tip-article--dark .tip-article__header {}
.tip-article__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.tip-article__num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(28,28,38,0.12);
  line-height: 1;
  flex-shrink: 0;
}
.tip-article__num--light { color: rgba(240,236,228,0.15); }
.tip-article__body p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}
.tip-article__body--light p { color: var(--color-text-light-muted); }


.kelvin-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}
.kelvin-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.kelvin-item__bar {
  height: 6px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}
.kelvin-item strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.kelvin-item span {
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
  line-height: 1.4;
}


.room-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.room-tip-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(28,28,38,0.06);
  transition: all var(--transition-base);
}
.room-tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(232,160,69,0.1);
}
.room-tip-card__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.room-tip-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}
.room-tip-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.mistake-list { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.mistake-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition-base);
}
.mistake-item:hover { border-color: rgba(232,160,69,0.15); }
.mistake-item > i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.mistake-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.mistake-item p {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  line-height: 1.65;
  margin: 0;
}


.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.contact-method-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(28,28,38,0.06);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,160,69,0.1);
}
.contact-method-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232,160,69,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
}
.contact-method-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.contact-method-card__number a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  transition: color var(--transition-fast);
}
.contact-method-card__number a:hover { color: var(--color-accent); }
.contact-method-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.contact-method-card__when strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.contact-method-card__when ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-method-card__when li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 12px;
  position: relative;
}
.contact-method-card__when li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.contact-method-card__hours {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 12px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  margin-top: auto;
}


.contact-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.contact-form-intro { margin-bottom: var(--space-xl); }
.contact-form-intro .section-heading { margin: var(--space-sm) 0 var(--space-sm); }
.compact-contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.compact-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.compact-contact-form__row--secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  grid-template-columns: none;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--message { }
.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light-muted);
  letter-spacing: 0.04em;
}
.form-required { color: var(--color-accent); }
.form-input, .form-textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(240,236,228,0.15);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240,236,228,0.3); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(232,160,69,0.12);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  cursor: pointer;
  flex: 1;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.form-link { color: var(--color-accent); text-decoration: underline; }
.form-submit { flex-shrink: 0; }


.map-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}
.map-section__info .section-heading { margin: var(--space-sm) 0 var(--space-md); }
.map-section__address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.map-section__address i { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.map-section__address a {
  color: var(--color-accent-dark);
  transition: color var(--transition-fast);
}
.map-section__address a:hover { color: var(--color-accent); }


.legal-page-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  min-height: 70vh;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  padding-right: var(--space-xl);
}
.legal-toc__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-light-2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: var(--space-md);
}
.legal-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-toc__link {
  display: block;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}
.legal-toc__link:hover {
  color: var(--color-text-dark);
  background: var(--color-light-2);
  border-left-color: var(--color-accent);
}
.legal-toc__link.active {
  color: var(--color-accent-dark);
  background: rgba(232,160,69,0.08);
  border-left-color: var(--color-accent);
  font-weight: 500;
}
.legal-content { padding-left: var(--space-xl); border-left: 1px solid var(--color-light-2); }
.legal-content__header { margin-bottom: var(--space-xl); }
.legal-content__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}
.legal-content__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.legal-content__intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding: var(--space-md);
  background: var(--color-light-2);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}
.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-light-2);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.legal-section p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  list-style: disc;
}
.legal-section a { color: var(--color-accent-dark); text-decoration: underline; transition: color var(--transition-fast); }
.legal-section a:hover { color: var(--color-accent); }
.legal-info-box {
  padding: var(--space-md);
  background: var(--color-light-2);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}
.legal-info-box p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}
.legal-table-wrap { overflow-x: auto; margin: var(--space-md) 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.legal-table th {
  padding: 10px 14px;
  text-align: left;
  background: var(--color-light-2);
  font-weight: 600;
  color: var(--color-text-dark);
  border-bottom: 2px solid var(--color-light-2);
}
.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-light-2);
  color: var(--color-text-muted);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }


.thanks-page { display: flex; flex-direction: column; min-height: 100vh; }
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}
.thanks-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,160,69,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,160,69,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.thanks-card {
  position: relative;
  z-index: 1;
  background: var(--color-dark-2);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 4rem);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232,160,69,0.12);
}
.thanks-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(232,160,69,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-accent);
  margin: 0 auto var(--space-lg);
}
.thanks-card__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}
.thanks-card__text {
  font-size: 1rem;
  color: var(--color-text-light-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}


.site-footer {
  background: var(--color-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-2xl) 0 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.footer-logo { width: 40px; height: 40px; margin-bottom: var(--space-md); }
.footer-brand__desc {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 260px;
}
.footer-address {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
}
.footer-nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover { color: var(--color-accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
}
.footer-contact-list i { color: var(--color-accent); width: 14px; flex-shrink: 0; }
.footer-contact-list a {
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}
.footer-contact-list a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md) 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.35);
}


.tippy-box[data-theme~='custom'] {
  background: var(--color-dark-2);
  color: var(--color-text-light);
  font-size: 0.82rem;
  line-height: 1.6;
  border: 1px solid rgba(232,160,69,0.2);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
  max-width: 240px;
}
.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--color-dark-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .info-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .room-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid__features { grid-template-columns: 1fr 1fr; }
  .visual-break__inner { grid-template-columns: 1fr; }
  .visual-break__img { height: 300px; }
  .info-grid--2 { grid-template-columns: 1fr; }
  .info-grid--3 { grid-template-columns: 1fr 1fr; }
  .philosophy-teaser { grid-template-columns: 1fr; }
  .philosophy-teaser__img { height: 280px; }
  .split-content { grid-template-columns: 1fr; }
  .split-content__img { height: 280px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .compatibility-block { grid-template-columns: 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .compact-contact-form__row { grid-template-columns: 1fr; }
  .compact-contact-form__row--secondary { flex-direction: column; align-items: flex-start; }
  .kelvin-scale { grid-template-columns: repeat(2, 1fr); }

  .legal-page-wrap { grid-template-columns: 1fr; padding: var(--space-md); }
  .legal-toc { position: static; padding-right: 0; margin-bottom: var(--space-lg); }
  .legal-toc__mobile-toggle { display: flex; }
  .legal-toc__nav { display: none; }
  .legal-toc__nav.open { display: flex; }
  .legal-content { padding-left: 0; border-left: none; }
}

@media (max-width: 640px) {
  .info-grid--3 { grid-template-columns: 1fr; }
  .info-grid--4 { grid-template-columns: 1fr; }
  .room-tips-grid { grid-template-columns: 1fr; }
  .intro-grid__features { grid-template-columns: 1fr; }
  .compatibility-block__icons { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-block__actions { flex-direction: column; }
  .cta-block__actions { flex-direction: column; align-items: center; }
  .kelvin-scale { grid-template-columns: 1fr; }
  .tip-article__header { flex-direction: column; gap: var(--space-sm); }
  .tip-article__num { font-size: 2rem; }
}

@media (max-width: 400px) {
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}