/* ========================================
   POKORNÝ - Světlý elegantní design
   ======================================== */

:root {
  /* Světlé barvy */
  --bg-light: #ffffff;
  --bg-light-alt: #f8f9fa;
  --bg-section: #f4f5f7;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #95a5a6;
  --gold: #c5a572;
  --gold-light: #d4af37;
  --gold-dark: #a08353;
  --orange: #ff6b35;
  --red: #e74c3c;
  --border: #e0e4e8;
  --shadow-light: rgba(44, 62, 80, 0.08);
  --shadow-medium: rgba(44, 62, 80, 0.12);
  --font: 'Roboto', system-ui, sans-serif;
  --transition: 800ms cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { 
  width: min(92vw, 1200px); 
  margin-inline: auto; 
  padding-inline: clamp(1rem, 3vw, 2rem); 
}

[data-reveal] { 
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 1200ms ease, transform 1200ms var(--transition); 
  will-change: opacity, transform; 
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: absolute;
  top: 0;
  z-index: 100;
  background: rgba(28, 34, 41, 0.85);
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0;
  width: 100%;
  overflow: visible;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: padding 300ms ease, box-shadow 300ms ease, background 300ms ease, border-color 300ms ease;
}

.header-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.header-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.header-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  transition: opacity 800ms ease;
}

.header-icon-house {
  top: 10px;
  left: 5%;
}

.header-icon-window {
  top: 10px;
  right: 5%;
}

.header-shine { display: none; }

@keyframes headerShine {
  0%, 100% { left: -200px; opacity: 0; }
  10% { opacity: 1; }
  50% { left: calc(100% + 200px); }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

.site-header:hover .header-icon {
  opacity: 0.18;
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: flex-start;
  gap: 3rem;
}

/* Intro header adjustments: logo aligned with website width */
.site-header .container.header-inner {
  width: min(92vw, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.site-header .logo-wrap { margin-left: 0; }
.site-header .primary-nav { margin-left: auto; margin-right: 0; }

.logo-wrap { 
  text-decoration: none;
  display: inline-block;
}

.logo-svg {
  width: clamp(150px, 20vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.55));
  transition: filter 500ms ease, transform 500ms cubic-bezier(.16,.84,.44,1), width 300ms ease;
  border-radius: 2px;
}
.logo-svg:hover { 
  filter: drop-shadow(0 6px 24px rgba(212,175,55,.65)) drop-shadow(0 0 30px rgba(212,175,55,.35)); 
  transform: translateY(-2px); 
}
.logo-svg rect[stroke] {
  transition: stroke 200ms ease, stroke-width 200ms ease;
}
.logo-svg:hover rect[stroke] {
  stroke: #d4af37;
  stroke-width: 10;
}

.primary-nav { position: relative; }

.nav-list { 
  list-style: none; 
  display: flex; 
  gap: 2rem; 
  align-items: center;
}

.nav-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 1rem;
  position: relative;
  opacity: 0.9;
  transition: opacity 500ms ease, color 500ms ease;
}

.nav-link:hover,
.nav-link:focus-visible { 
  opacity: 1; 
  color: var(--gold-dark);
}

/* Intro link cards */
.intro-links { margin-top: 2rem; }
.intro-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.intro-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow-light);
  transition: transform 300ms ease, box-shadow 300ms ease;
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 260px;
}
.intro-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow-medium); }
.intro-image { width: 100%; height: 220px; object-fit: cover; display: block; }
.intro-card-content { padding: 1rem 1.2rem; }
.intro-card-title { font-size: 1.05rem; font-weight: 600; letter-spacing: .05em; }
.intro-card-link { margin-top: .6rem; font-size: .85rem; color: var(--gold-dark); }

@media (max-width: 1024px) {
  .intro-card { flex: 1 1 calc(33.333% - 1.5rem); }
}
@media (max-width: 860px) {
  .intro-card { flex: 1 1 calc(50% - 1.5rem); }
}
@media (max-width: 540px) {
  .intro-card { flex: 1 1 100%; }
  .intro-image { height: 200px; }
}

/* Enhanced intro cards for Dveře subpage only */
.intro-links--enhanced .intro-card {
  position: relative;
  border-color: rgba(197,165,114,0.45);
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 280px;
}
.intro-links--enhanced .intro-image {
  height: clamp(260px, 36vw, 360px);
  transition: transform 600ms cubic-bezier(.16,.84,.44,1), filter 400ms ease;
}
.intro-links--enhanced .intro-card:hover .intro-image {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.intro-links--enhanced .intro-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  opacity: 1;
  pointer-events: none;
}
.intro-links--enhanced .intro-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem 1.2rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}
.intro-links--enhanced .intro-card-title { 
  color: #fff; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.intro-links--enhanced .intro-card-link { 
  color: #fff; 
  opacity: 0.9; 
}
.intro-links--enhanced .intro-card:hover .intro-card-link {
  opacity: 1;
}
@media (max-width: 860px) {
  .intro-links--enhanced .intro-card { flex: 1 1 100%; }
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: translateX(-50%);
  transition: width 500ms cubic-bezier(.16,.84,.44,1);
}

.nav-link:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  transition: background 300ms ease;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
  transition: transform 500ms cubic-bezier(.16,.84,.44,1), opacity 500ms ease, background 300ms ease;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scale(0); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-toggle:hover { background: rgba(197, 165, 114, 0.1); }

.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 860px) {
  .nav-list {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    flex-direction: column;
    gap: 1.8rem;
    background: var(--bg-light);
    padding: 2.2rem 2.8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 260px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1000;
  }
  /* Make dropdown links readable on light background */
  .nav-list .nav-link { color: var(--text-dark); }
  .nav-list .nav-link:hover,
  .nav-list .nav-link:focus-visible { color: var(--gold-dark); }
  .nav-list.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }
  .menu-toggle { display: inline-block; }
  .header-icon { display: none; }
  .header-lines { opacity: 0.5; }
}

/* Subtle sticky header inspired by reference layout (non-breaking) */
.site-header.is-sticky {
  padding: 0.9rem 0;
  background: rgba(28, 34, 41, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  backdrop-filter: saturate(120%) blur(6px);
}
.site-header.is-sticky .nav-list { gap: 2rem; }
.site-header.is-sticky .header-inner { gap: 2rem; }
.site-header.is-sticky .logo-svg { width: clamp(140px, 18vw, 200px); }

/* Ensure single-row header layout on desktop */
@media (min-width: 901px) {
  .header-inner { flex-wrap: nowrap; }
  .nav-list { flex-wrap: nowrap; gap: clamp(1rem, 2.2vw, 1.75rem); }
  .nav-link { white-space: nowrap; letter-spacing: 0.12em; }
}

/* =============================
   Info & Gallery sections
   ============================= */
.section { 
  padding: clamp(4rem, 10vh, 6rem) 0; 
}
main > .section:last-of-type { 
  padding-bottom: clamp(5rem, 12vh, 8rem); /* small gap before footer */
}
.info-section { background: var(--bg-section); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 1rem;
}
.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 6px 20px var(--shadow-light);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  transition: height 400ms ease;
}
.info-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 12px 32px var(--shadow-medium); 
  border-color: var(--gold); 
  background: var(--bg-light-alt);
}
.info-card:hover::before {
  height: 100%;
}
.info-card h3 { 
  font-size: 1.1rem; 
  font-weight: 600;
  letter-spacing: .06em; 
  margin-bottom: .75rem; 
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}
.info-card h3::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.info-card p { 
  font-size: 1rem; 
  line-height: 1.6;
  color: var(--text-medium);
  padding-left: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px var(--shadow-light);
  transition: all 400ms var(--transition);
  cursor: pointer;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,165,114,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 400ms var(--transition);
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 400ms var(--transition);
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 0.6;
}
.gallery-item img { 
  width: 100%; 
  height: 260px; 
  object-fit: cover; 
  display: block; 
  transition: transform 600ms var(--transition);
}
.gallery-item:hover img { 
  transform: scale(1.08); 
}
.gallery-item:hover {
  box-shadow: 0 12px 36px var(--shadow-medium);
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
}

/* O NÁS: stats row responsive stacking */
@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr !important; }
}

/* =============================
   Subpage Hero Intro
   ============================= */
.sub-hero {
  background: var(--bg-light);
  position: relative;
  /* Offset for overlaid header on subpages */
  padding-top: clamp(80px, 12svh, 140px);
}
.sub-hero .container { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.sub-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.chips { display: flex; gap: .5rem; align-items: center; margin-bottom: .75rem; }
.chip {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .08em;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-medium);
  background: var(--bg-light);
}
.chip.is-link { color: var(--gold-dark); border-color: var(--gold); }
.chip.is-white { background: var(--bg-light-alt); color: var(--text-light); }

.sub-hero-title { font-size: clamp(2rem, 4vw, 2.4rem); line-height: 1.15; margin: 0 0 .5rem; }
.sub-hero-title .display-block { display: block; font-weight: 700; letter-spacing: .06em; }
.sub-hero-subtitle { display: block; font-weight: 500; color: var(--text-medium); }
.sub-hero-desc { font-size: .95rem; color: var(--text-medium); max-width: 60ch; }
.sub-hero-actions { margin-top: 1rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold-dark); box-shadow: none; }
.btn-outline:hover, .btn-outline:focus-visible { filter: none; background: rgba(197,165,114,.08); }

.sub-hero-image {
  width: 100%;
  height: clamp(260px, 38vw, 380px);
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 28px var(--shadow-medium);
}

/* Background version of media block when using inline background-image */
.sub-hero-media {
  width: 100%;
  height: clamp(260px, 38vw, 380px);
  border-radius: 12px;
  box-shadow: 0 10px 28px var(--shadow-medium);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Full-background variant for subpage hero */
.sub-hero.is-full {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(420px, 58vw, 720px);
}
.sub-hero.is-full .container { padding-block: clamp(2rem, 6vw, 4rem); }
.sub-hero.is-full .sub-hero-inner { grid-template-columns: 1fr; }
.sub-hero.is-full .sub-hero-content {
  max-width: 900px;
  background: rgba(0,0,0,.35);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 12px;
  color: #fff;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.sub-hero.is-full .sub-hero-title .display-block { color: #fff; }
.sub-hero.is-full .sub-hero-subtitle { color: #f0f0f0; }
.sub-hero.is-full .sub-hero-desc { color: #e8e8e8; }
.sub-hero.is-full .chip { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); color: #fff; }
.sub-hero.is-full .btn-outline { border-color: #fff; color: #fff; }
.sub-hero.is-full .btn-outline:hover, .sub-hero.is-full .btn-outline:focus-visible { background: rgba(255,255,255,.18); }

@media (max-width: 900px) {
  .sub-hero-inner { grid-template-columns: 1fr; }
  .sub-hero-image { height: clamp(220px, 44vw, 320px); }
}
@media (max-width: 640px) {
  .sub-hero.is-full .sub-hero-content {
    text-align: center;
    margin: 0 auto;
  }
}
/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh; /* fallback */
  min-height: 100svh; /* mobile viewport units for full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-alt) 100%);
  padding-top: clamp(80px, 12svh, 140px); /* make room for header overlay */
  padding-bottom: clamp(40px, 8svh, 100px);
}

/* Hero background crossfade layers */
.hero-fader { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-fader-layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-fader-layer.is-active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  margin: 0 0 1.5rem;
  color: var(--gold-dark);
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  margin: 0 0 3rem;
  color: var(--gold-dark);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Decorative, readable pitch under hero subtitle */
.hero-pitch {
  max-width: 820px;
  margin: .5rem auto 1.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 1.5px 1.5px 2.5px rgba(0,0,0,.75);
  background: rgba(28,34,41,.28);
  padding: .75rem 1rem;
  border-radius: 12px;
  display: block;
  backdrop-filter: saturate(120%) blur(2px);
}
.hero-pitch .pitch-line { display: block; font-size: clamp(0.95rem, 2.1vw, 1.15rem); line-height: 1.65; }
.hero-pitch .pitch-line + .pitch-line { margin-top: .4rem; }
.hero-pitch .pitch-line::before { content: '•'; margin-right: .5rem; color: var(--gold); opacity: .95; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: filter 400ms ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(197, 165, 114, 0.35);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  filter: brightness(1.1);
}

/* ========================================
   CATEGORIES GRID
   ======================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.category-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 400ms cubic-bezier(.16,.84,.44,1), box-shadow 400ms ease, border-color 400ms ease;
  box-shadow: 0 2px 8px var(--shadow-light);
  cursor: pointer;
}

.category-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--gold);
}

.category-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 0.8rem;
  display: block;
  transition: transform 400ms ease, color 400ms ease;
}

.category-box:hover .category-icon {
  transform: scale(1.1);
  color: var(--gold-dark);
}

.category-box h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   HOUSE ILLUSTRATION
   ======================================== */
.house-illustration {
  margin: clamp(4rem, 8vw, 6rem) auto clamp(3rem, 6vw, 5rem);
  max-width: 640px;
  width: 100%;
}

.house-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ========================================
   ICONS ROW
   ======================================== */
.icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  transition: transform 400ms ease;
}

.icon-box:hover {
  transform: scale(1.08);
}

.icon-box svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   PARTNERS
   ======================================== */
.partners {
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  background: var(--bg-darker);
}

.partners-inner {
  text-align: center;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.partner-logo {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.partner-logo.ri {
  font-weight: 700;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.partner-logo .small {
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.partner-logo.shade {
  font-family: var(--font);
  font-weight: 300;
}

.partner-logo .orange {
  color: var(--orange);
  font-weight: 700;
}

.partner-logo .red {
  color: var(--red);
  font-weight: 700;
}

.partner-logo.kasko {
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.red-triangle {
  color: var(--red);
  font-size: 1.8em;
  line-height: 0.6;
  display: inline-block;
  transform: rotate(180deg);
}

.partner-logo.suys {
  font-weight: 300;
}

.website {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   PARTNER LOGO SECTION
   ======================================== */
.partner-logo-section {
  padding: clamp(4rem, 10vh, 6rem) 0;
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 0.8rem;
}

.partners-subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-medium);
  text-align: center;
  margin: 0 0 3rem;
}

.logo-slider-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-light);
  padding: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-slider {
  display: flex;
  width: fit-content;
  animation: slideLogos 30s linear infinite;
}
.logo-slide {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  flex-shrink: 0;
}
.sponsor-logo {
  height: clamp(50px, 8vw, 80px);
  width: auto;
  max-width: clamp(120px, 20vw, 180px);
  object-fit: contain;
  filter: grayscale(60%) brightness(0.95) drop-shadow(0 2px 6px var(--shadow-light));
  transition: filter 600ms ease, transform 400ms ease;
  flex-shrink: 0;
}
.sponsor-logo:hover {
  filter: grayscale(0%) brightness(1) drop-shadow(0 4px 12px var(--shadow-medium));
  transform: scale(1.08);
}
@keyframes slideLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider:hover { animation-play-state: paused; }

/* ========================================
   REFERENCE SECTION
   ======================================== */
.section-ref {
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 12vh, 8rem);
  background: var(--bg-section);
  position: relative;
}

.section-heading {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700; /* strong heading for References */
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--gold-dark);
}

.section-sub {
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--text-medium);
  text-align: center;
  margin: 0 0 3.5rem;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.4rem, 2.8vw, 2.2rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.ref-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197,165,114,0.35);
  background: #1d1d1d;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  cursor: pointer;
  transition: transform 600ms cubic-bezier(.16,.84,.44,1);
}

.ref-item:hover { transform: translateY(-6px); }

.ref-item__media {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(197,165,114,0.25), transparent 70%), linear-gradient(135deg, #343434, #242424);
}
.ref-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ref-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12%);
  transition: opacity 600ms ease, transform 600ms ease;
  text-align: center;
}

.ref-item:hover .ref-item__overlay,
.ref-item:focus-within .ref-item__overlay { opacity: 1; transform: translateY(0); }

.ref-item:focus-within { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Testimonials */
.testimonials { max-width: 1080px; margin: 0 auto; }
.testimonial-list {
  list-style: none;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 0;
}
.testimonial {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1.4rem 1.2rem 1.1rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: transform 600ms cubic-bezier(.16,.84,.44,1), box-shadow 600ms ease;
}
.testimonial:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px var(--shadow-medium); 
}
.testimonial blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem;
  color: var(--text-medium);
}
.testimonial__author {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 0;
  text-transform: uppercase;
}

/* ========================================
   REFERENCE STACK
   ======================================== */
.ref-stack { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 0.8rem; 
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.stack-container {
  position: relative;
  width: clamp(220px, 40vw, 360px);
  aspect-ratio: 4 / 3;
  perspective: 700px;
}
.stack-card {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(197,165,114,0.45);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  cursor: grab;
  will-change: transform;
  background: #1a1a1a;
  transition: box-shadow 400ms ease;
}
.stack-card:active { cursor: grabbing; }
.stack-card:hover { box-shadow: 0 22px 58px rgba(0,0,0,0.65); }
.stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stack-hint {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 12vh, 8rem);
  background: var(--bg-light);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

/* Contact Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 400ms cubic-bezier(.16,.84,.44,1);
  box-shadow: 0 2px 12px var(--shadow-light);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px var(--shadow-medium);
  border-color: var(--gold);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 400ms ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.contact-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0.3rem 0;
}

.contact-link {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 300ms ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--gold-dark);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 2.8rem);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.form-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.form-intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0 0 2rem;
  letter-spacing: 0.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { 
  display: flex; 
  flex-direction: column; 
  gap: 0.5rem; 
}

.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  background: var(--bg-light-alt);
  border: 2px solid var(--border);
  color: var(--text-dark);
  resize: vertical;
  outline: none;
  transition: all 300ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.12);
  background: var(--bg-light);
}

.btn-send { 
  align-self: flex-start;
  padding: 1rem 2.5rem; 
  font-size: 0.85rem; 
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0.5rem 0 0;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.form-status.error { color: #e74c3c; }
.form-status.success { color: #27ae60; }

/* Contact Info Box */
.contact-info-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 2px 12px var(--shadow-light);
}

.info-item {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-medium);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item strong {
  display: block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRODUCTS SECTION (LUX VERSION)
   ======================================== */
.section-products {
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 12vh, 8rem);
  background: var(--bg-light);
  position: relative;
}
.products-grid {
  display: grid;
  gap: clamp(1.4rem, 2.8vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 0 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: transform 600ms cubic-bezier(.16,.84,.44,1), box-shadow 600ms ease, border-color 400ms ease;
  cursor: pointer;
}
.product-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 8px 28px var(--shadow-medium); 
  border-color: var(--gold); 
}
.product-media { position: relative; }
.product-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--border);
}
.product-card:hover .product-media img { 
  filter: brightness(1.05); 
}
.product-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px var(--shadow-light);
}
.product-icon svg {
  stroke: var(--gold);
}
.product-title {
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-dark);
  margin: 1.1rem 1.15rem 0.6rem;
  text-transform: uppercase;
}
.product-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--text-medium);
  margin: 0 1.15rem;
}
@media (min-width: 1100px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ========================================
   BAZAR SECTION
   ======================================== */
.section-bazar {
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 12vh, 8rem);
  background: var(--bg-light);
  position: relative;
}

.bazar-card {
  position: relative;
}

.bazar-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.bazar-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 1.15rem 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.price-old {
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

.price-new {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
}



/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    letter-spacing: 0.2em;
  }
  
  .icons-row {
    gap: 1.2rem;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
  }
  
  .partners-logos {
    gap: 1.5rem;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { 
    transition: none !important; 
    opacity: 1 !important; 
    transform: none !important; 
  }
  .nav-list { transition: none !important; }
  .btn { transition: none !important; }
}

/* ========================================
   TARGET CURSOR (HEADER)
   ======================================== */
.target-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.target-cursor-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.target-cursor-corner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  will-change: transform;
}

.corner-tl { transform: translate(-150%, -150%); border-right: none; border-bottom: none; }
.corner-tr { transform: translate(50%, -150%); border-left: none; border-bottom: none; }
.corner-br { transform: translate(50%, 50%); border-left: none; border-top: none; }
.corner-bl { transform: translate(-150%, 50%); border-right: none; border-top: none; }

@media (hover: none), (pointer: coarse) {
  .target-cursor-wrapper { display: none; }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
  padding: clamp(4rem, 10vh, 6rem) 0 clamp(2.5rem, 6vh, 3.5rem);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-inner { position: relative; }
.footer-top {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-brand { max-width: 300px; }
.footer-logo-text {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.35em;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 0.6rem;
}
.footer-logo-link { display: inline-block; margin-bottom: 0.9rem; }
.footer-logo-svg { width: clamp(220px, 42vw, 300px); filter: drop-shadow(0 4px 14px rgba(0,0,0,.55)); transition: filter 400ms ease, transform 400ms ease; border-radius: 2px; }
.footer-logo-svg:hover { filter: drop-shadow(0 6px 18px rgba(197,165,114,.55)); transform: translateY(-2px); }
.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.footer-link {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.85;
  transition: color 300ms ease, opacity 300ms ease;
}
.footer-link:hover { color: #d4af37; opacity: 1; }
.footer-contact p { margin: 0 0 0.4rem; font-size: 0.75rem; line-height: 1.5; color: rgba(255, 255, 255, 0.7); }
.footer-contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 300ms ease;
  letter-spacing: 0.05em;
}
.footer-contact-link:hover { color: #d4af37; }
.fc-label { color: #d4af37; font-weight: 500; letter-spacing: 0.15em; font-size: 0.6rem; text-transform: uppercase; }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.3) 50%, rgba(212,175,55,0) 100%);
  margin-bottom: 1.8rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
}
.to-top {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212,175,55,0.5);
  color: #d4af37;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 300ms ease, transform 400ms cubic-bezier(.16,.84,.44,1);
}
.to-top:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-4px); }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ========================================
   PRODUCTS DETAIL (EXPANDABLE)
   ======================================== */
.products-detail {
  margin-top: 24px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 28px var(--shadow-light);
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.products-detail.is-visible { opacity: 1; transform: translateY(0); }
.detail-header h3 { margin: 0 0 6px; }
.detail-header p { margin: 0 0 14px; color: var(--text-medium); }
.detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.detail-item { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); background: #fff; }
.detail-item img { width: 100%; height: 160px; object-fit: cover; display: block; }
.detail-actions { margin-top: 16px; }

/* Muting other boxes when detail open */
#products-overview.products-muted .product-card { opacity: .35; pointer-events: none; }
#products-overview.products-muted .product-card[aria-expanded="true"] { opacity: 1; pointer-events: auto; }

/* Responsive adjustments for gallery */
@media (max-width: 1024px) {
  .detail-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========================================
   REVIEWS CAROUSEL
   ======================================== */
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 600ms cubic-bezier(.16,.84,.44,1);
}
.reviews-track.ticker { transition: none; }
.review-card {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  padding: 1.4rem;
}
.review-header { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.8rem; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.review-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.review-name { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.review-stars span { color: var(--gold); font-size: 1rem; line-height: 1; }
.review-stars .star-off { color: #ddd; }
.review-text { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; margin: 0; }

.reviews-nav { position: absolute; inset: 0; pointer-events: none; }
.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,175,55,0.9);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  pointer-events: auto;
}
.reviews-btn:hover { background: var(--gold-dark); }
.reviews-btn.prev { left: 8px; }
.reviews-btn.next { right: 8px; }

/* ========================================
   RESPONSIVE TWEAKS (phones, tablets, notebooks)
   ======================================== */
@media (max-width: 1024px) {
  .header-inner { gap: 2rem; }
  .review-card { flex: 0 0 280px; }
  .reviews-btn { width: 36px; height: 36px; }
}
@media (max-width: 768px) {
  .header-inner { gap: 1rem; }
  .hero-title { letter-spacing: 0.14em; }
  .hero-subtitle { letter-spacing: 0.2em; }
  .review-card { flex: 0 0 240px; }
  .review-stars span { font-size: 0.9rem; }
}
@media (max-width: 560px) {
  .container { width: min(94vw, 680px); padding-inline: 1rem; }
  .reviews-btn { width: 32px; height: 32px; }
}
