/* ============================================
   KRENTOR — MASTER STYLESHEET
   Dark Mode, Living Interface
   ============================================ */

:root {
  --bg-deep:       #0f0e0d;
  --bg-surface:    #1a1815;
  --bg-card:       #221f1b;
  --bg-card-hover: #2a2620;
  --bg-elevated:   #2f2b26;

  --text-primary:   #f0ebe3;
  --text-secondary: #b8a99a;
  --text-muted:     #7a6e65;
  --text-inverse:   #0f0e0d;

  --accent-gold:    #d4a853;
  --accent-amber:   #c2874a;
  --accent-warm:    #e8c070;
  --accent-glow:    rgba(212, 168, 83, 0.15);
  --accent-border:  rgba(212, 168, 83, 0.25);

  --border-subtle:  rgba(255, 255, 255, 0.07);
  --border-medium:  rgba(255, 255, 255, 0.12);

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.45), 0 3px 8px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 50px rgba(0,0,0,0.55), 0 8px 16px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.2), 0 0 60px rgba(212, 168, 83, 0.08);

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

  --nav-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s 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; overflow-x: hidden; }

body {
  font-family: 'Figtree', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(15, 14, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.nav-bar.scrolled {
  background: rgba(15, 14, 13, 0.97);
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img { width: 36px; height: 36px; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 9, 8, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.mobile-nav-links a {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  display: block;
  transition: var(--transition);
}
.mobile-nav-links a:hover {
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.08);
}

/* ============================================
   FLOATING SIDEBAR CTA
   ============================================ */
.sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  opacity: 0;
  transition: var(--transition);
}
.sidebar-cta.visible { opacity: 1; }
.sidebar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-gold);
  color: var(--text-inverse);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md), -4px 0 20px rgba(212, 168, 83, 0.25);
  transition: var(--transition);
}
.sidebar-btn:hover {
  background: var(--accent-warm);
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg), -6px 0 30px rgba(212, 168, 83, 0.35);
}
.sidebar-btn i { font-size: 1.1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold);
  color: var(--text-inverse);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(212, 168, 83, 0);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(212, 168, 83, 0.3);
  color: var(--text-inverse);
}
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--accent-border);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-desc { margin: 0 auto; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.link-arrow:hover { gap: 0.75rem; color: var(--accent-warm); }

/* ============================================
   DECORATIVE STRIPS
   ============================================ */
.deco-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 0;
}
.deco-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.deco-strip-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.deco-strip-inner span i { color: var(--accent-gold); }
.deco-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.deco-strip-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-amber), var(--accent-gold), transparent);
  opacity: 0.6;
}

.deco-strip-thin {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 9, 8, 0.88) 0%,
    rgba(15, 14, 13, 0.75) 50%,
    rgba(26, 24, 21, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 1.5rem;
  padding-top: var(--nav-height);
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid var(--accent-border);
  color: var(--accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 1.5rem;
}
.hero-line-1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.05;
  letter-spacing: -0.04em;
  display: block;
}
.hero-line-2 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.hero-line-2 #typed-target {
  color: var(--accent-gold);
}
.hero-line-3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: block;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text {}
.intro-text .section-title { margin-bottom: 1.5rem; }
.intro-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.intro-image-wrap {
  position: relative;
}
.intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: var(--transition-slow);
}
.intro-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.intro-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}
.intro-img-badge i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}
.intro-img-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.intro-img-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.offer-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 168, 83, 0.1);
}
.offer-card.featured-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 83, 0.08) 100%);
  border-color: var(--accent-border);
}
.offer-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.offer-card:hover .offer-card-icon {
  background: rgba(212, 168, 83, 0.25);
}
.offer-card-icon i { color: var(--accent-gold); font-size: 1.2rem; }
.offer-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.offer-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.offer-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-elevated), rgba(212, 168, 83, 0.12));
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.offer-card:hover .offer-card-hover { opacity: 1; }
.offer-card-hover p {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.65;
}

/* ============================================
   SACHETS SECTION
   ============================================ */
.sachets-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.sachets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sachets-image-wrap {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.sachets-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}
.sachets-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.sachets-img-2 {
  width: 75%;
  margin-left: auto;
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}
.sachets-img-2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.sachets-text {}
.sachets-text .section-title { margin-bottom: 1.25rem; }
.sachets-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); }
.team-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.team-card:hover .team-img { transform: scale(1.06); }
.team-hover-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.6) 60%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-hover-info { opacity: 1; }
.team-hover-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.team-info { text-align: center; }
.team-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px;
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,9,8,0.9), transparent);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

/* ============================================
   PRACTICAL SECTION
   ============================================ */
.practical-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.practical-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.practical-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.practical-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  transition: var(--transition);
}
.practical-item:hover .practical-icon {
  background: rgba(212, 168, 83, 0.2);
  transform: scale(1.08);
}
.practical-icon i { color: var(--accent-gold); font-size: 1rem; }
.practical-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.practical-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.practical-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}
.practical-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.story-intro {
  text-align: center;
  margin-bottom: 5rem;
}
.story-lead {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
}
.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.story-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.story-block-right {
  grid-template-columns: 1fr 80px;
}
.story-block-right .story-block-content { order: -1; }
.story-block-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border-medium);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.2rem;
}
.story-block-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.story-block-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.story-block-content p:last-child { margin-bottom: 0; }

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.value-card:hover .value-icon { background: rgba(212, 168, 83, 0.22); }
.value-icon i { color: var(--accent-gold); font-size: 1.1rem; }
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.cta-block {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(212, 168, 83, 0.08) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 168, 83, 0.06);
}
.cta-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.cta-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ============================================
   DETAIL SECTIONS (chto-my-predlagaem)
   ============================================ */
.detail-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.detail-alt {
  background: var(--bg-surface);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.detail-grid-reverse {
  direction: rtl;
}
.detail-grid-reverse > * { direction: ltr; }
.detail-text .section-title { margin-bottom: 1.25rem; }
.detail-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.detail-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.detail-list-item i { color: var(--accent-gold); font-size: 0.9rem; flex-shrink: 0; }
.detail-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}
.detail-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   INCLUDED SECTION
   ============================================ */
.included-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  text-align: center;
}
.included-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.included-card i {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}
.included-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.included-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-border), var(--accent-gold), var(--accent-border), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-marker { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-content:first-child { display: none; }

.timeline-right .timeline-content { grid-column: 3; }
.timeline-right .timeline-marker { grid-column: 2; }

.timeline-marker {
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.25);
  position: relative;
  z-index: 1;
}
.timeline-marker span {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-gold);
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.timeline-content:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.timeline-time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.timeline-item .timeline-marker {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.timeline-item .timeline-content {
  flex: 1;
}
.timeline::before {
  left: 24px;
  transform: none;
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */
.forwhom-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.forwhom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.forwhom-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.forwhom-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.forwhom-card:hover .forwhom-icon { background: rgba(212, 168, 83, 0.22); }
.forwhom-icon i { color: var(--accent-gold); font-size: 1.2rem; }
.forwhom-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.forwhom-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-card i {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}
.info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--bg-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.contact-form-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.req { color: var(--accent-gold); }
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent-gold);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-link { color: var(--accent-gold); text-decoration: underline; }
.form-error {
  color: #e57373;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(229, 115, 115, 0.1);
  border: 1px solid rgba(229, 115, 115, 0.3);
  border-radius: var(--radius-md);
}

.contact-info-wrap {
  padding-top: 0;
}
.contact-info-wrap h2 { margin-bottom: 1.75rem; }
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon i { color: var(--accent-gold); }
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--accent-gold); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 5rem;
  min-height: 70vh;
  text-align: center;
}
.thanks-content {
  max-width: 560px;
}
.thanks-icon {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(212,168,83,0.3); }
  50% { text-shadow: 0 0 40px rgba(212,168,83,0.6); }
}
.thanks-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.thanks-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.thanks-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
  background: radial-gradient(ellipse at top, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.legal-hero-content { max-width: 700px; margin: 0 auto; }
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.legal-hero p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.legal-section {
  padding: 4rem 0 6rem;
  background: var(--bg-deep);
  flex: 1;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--accent-gold); text-decoration: underline; }
.legal-content a:hover { color: var(--accent-warm); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-img { width: 32px; height: 32px; }
.footer-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-address i { color: var(--accent-gold); margin-top: 2px; flex-shrink: 0; }
.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.footer-nav ul,
.footer-contact ul,
.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a,
.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-nav a:hover,
.footer-legal a:hover { color: var(--accent-gold); }
.footer-contact a {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--accent-gold); }
.footer-contact i { color: var(--accent-gold); font-size: 0.8rem; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  max-width: 680px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner.hidden {
  animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
  to { transform: translateX(-50%) translateY(120%); opacity: 0; }
}
.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.cookie-banner-header i { color: var(--accent-gold); font-size: 1.2rem; }
.cookie-banner-header strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cookie-banner p a { color: var(--accent-gold); text-decoration: underline; }
.cookie-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 44px;
}
.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--text-inverse);
}
.cookie-btn-accept:hover { background: var(--accent-warm); transform: translateY(-1px); }
.cookie-btn-reject {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
}
.cookie-btn-reject:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.cookie-btn-customize {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.cookie-btn-customize:hover { color: var(--text-secondary); border-color: var(--border-medium); }


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent-gold); border-color: var(--accent-gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateY(-50%) translateX(20px);
  background: var(--text-inverse);
}
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* ============================================
   INTL TEL INPUT OVERRIDES
   ============================================ */
.iti { width: 100% !important; }
.iti__flag-container { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.iti__selected-flag {
  background: var(--bg-card) !important;
  border-right: 1px solid var(--border-medium) !important;
  padding: 0 0.75rem !important;
}
.iti__selected-flag:hover { background: var(--bg-elevated) !important; }
.iti__country-list {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border-medium) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  color: var(--text-primary) !important;
}
.iti__country:hover { background: var(--bg-card-hover) !important; }
.iti__country.iti__highlight { background: var(--bg-card) !important; }
.iti__search-input {
  background: var(--bg-card) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  color: var(--text-primary) !important;
  padding: 0.5rem 0.75rem !important;
}
.iti__dial-code { color: var(--text-muted) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .gallery-large { grid-column: 1 / -1; }
  .intro-grid,
  .sachets-grid,
  .practical-grid,
  .detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .detail-grid-reverse { direction: ltr; }
  .story-block,
  .story-block-right { grid-template-columns: 60px 1fr; }
  .story-block-right .story-block-content { order: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sidebar-cta { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 260px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost { width: 100%; justify-content: center; }
  .cta-block { padding: 2.5rem 1.5rem; }
  .intro-img-badge { left: 0; bottom: -1rem; }
  .story-block,
  .story-block-right { grid-template-columns: 1fr; gap: 1rem; }
  .story-block-num { font-size: 2.5rem; }
  .cookie-banner { bottom: 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; width: 100%; }
  .cookie-btn-group { flex-direction: column; }
  .cookie-btn { width: 100%; }
  .offer-cards { grid-template-columns: 1fr; }
  .thanks-links { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .section-container { padding: 0 1rem; }
  .offer-section,
  .sachets-section,
  .intro-section,
  .team-section,
  .gallery-section,
  .practical-section,
  .story-section,
  .values-section,
  .cta-section,
  .detail-section,
  .included-section,
  .timeline-section,
  .forwhom-section,
  .contact-section { padding: 4rem 0; }
  .footer-grid { padding: 2.5rem 0 2rem; }
  .info-cards { grid-template-columns: 1fr 1fr; }
}