/* ============================================
   CosmoLab Ind. — Greek Spa Brand Website
   Palette: Aegean Blue + Olive + Sand Gold
   ============================================ */

/* ---- Design Tokens ---- */
:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #FAFAF8;
  --color-surface: #F5F3EF;
  --color-surface-2: #EDEAE4;
  --color-border: #DDD9D0;
  --color-divider: #E8E4DC;

  /* Text */
  --color-text: #1C1A16;
  --color-text-muted: #6B6860;
  --color-text-faint: #B5B2AB;
  --color-text-inverse: #FAFAF8;

  /* Brand — Aegean Blue */
  --color-primary: #1A3A5C;
  --color-primary-hover: #142E4A;
  --color-primary-mid: #2E5480;

  /* Accent — Olive */
  --color-olive: #5A6E42;
  --color-olive-light: #8DA070;

  /* Gold */
  --color-gold: #C8A96A;
  --color-gold-hover: #B8943A;
  --color-gold-light: #E8D5A0;

  /* Hotels dark section */
  --color-dark-bg: #0E2238;
  --color-dark-surface: #162F4A;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.02 240 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 240 / 0.12);
  --shadow-lg: 0 16px 48px oklch(0.2 0.02 240 / 0.18);

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.4vw, 3.5rem);
  --text-hero: clamp(2.8rem, 1rem + 5.5vw, 6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1260px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0D1E2E;
  --color-surface: #122435;
  --color-surface-2: #18303F;
  --color-border: #243C52;
  --color-divider: #1E3347;
  --color-text: #DDD9D2;
  --color-text-muted: #8E8C88;
  --color-text-faint: #55534F;
  --color-text-inverse: #0D1E2E;
  --color-primary: #5A8FC7;
  --color-primary-hover: #7AAAD8;
  --color-primary-mid: #3D6A9E;
  --color-olive: #7A9C58;
  --color-olive-light: #9DBF78;
  --color-gold: #D4B87A;
  --color-gold-hover: #E8CF9A;
  --color-gold-light: #8A6A3A;
  --color-dark-bg: #070F18;
  --color-dark-surface: #0D1E2E;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 16px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0D1E2E;
    --color-surface: #122435;
    --color-surface-2: #18303F;
    --color-border: #243C52;
    --color-divider: #1E3347;
    --color-text: #DDD9D2;
    --color-text-muted: #8E8C88;
    --color-text-faint: #55534F;
    --color-text-inverse: #0D1E2E;
    --color-primary: #5A8FC7;
    --color-primary-hover: #7AAAD8;
    --color-gold: #D4B87A;
    --color-gold-hover: #E8CF9A;
    --color-dark-bg: #070F18;
    --color-dark-surface: #0D1E2E;
  }
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; text-wrap: balance; }
p { text-wrap: pretty; max-width: 68ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.75; }
.logo svg { color: var(--color-primary); }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
.logo-text em { font-style: italic; color: var(--color-gold); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--color-text-muted);
  transition: color var(--transition);
  padding-block: var(--space-2);
}
.nav-links a:hover { color: var(--color-primary); }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
}
.burger span {
  width: 20px; height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { max-height: 320px; }
.mobile-link {
  display: block;
  padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16));
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--color-primary); background: var(--color-surface); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-marble {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, oklch(0.88 0.04 240 / 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, oklch(0.85 0.05 120 / 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 85%, oklch(0.80 0.08 80 / 0.15) 0%, transparent 50%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    var(--color-bg) 0%,
    oklch(from var(--color-bg) l c h / 0.7) 40%,
    oklch(from var(--color-bg) l c h / 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: oklch(from var(--color-gold) l c h / 0.12);
  border: 1px solid oklch(from var(--color-gold) l c h / 0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  margin-bottom: var(--space-6);
}
[data-theme='dark'] .hero-badge { color: var(--color-gold); }

.hero-title {
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--color-gold); }
[data-theme='dark'] .hero-title { color: var(--color-text); }

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: var(--space-10);
  max-width: 52ch;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border: 1.5px solid var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-primary); background: oklch(from var(--color-primary) l c h / 0.06); }
.btn-gold {
  background: var(--color-gold);
  color: #1C1A16;
  border: 1.5px solid var(--color-gold);
  font-weight: 600;
}
.btn-gold:hover { background: var(--color-gold-hover); border-color: var(--color-gold-hover); box-shadow: 0 4px 20px oklch(from var(--color-gold) l c h / 0.35); }
.btn-full { width: 100%; }

/* ---- SECTION COMMON ---- */
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.section-label.light { color: var(--color-gold-light); }
.section-title {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
.section-title.light { color: #E8E4DC; }
.section-title em { font-style: italic; color: var(--color-gold); }
.section-title.light em { color: var(--color-gold-light); }
.section-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: var(--space-12);
  max-width: 54ch;
  line-height: 1.65;
}
.text-center { text-align: center; margin-inline: auto; }
[data-theme='dark'] .section-title { color: var(--color-text); }

/* ---- BRAND SECTION ---- */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.brand-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  font-weight: 300;
  line-height: 1.7;
}
.brand-values { display: flex; flex-direction: column; gap: var(--space-6); margin-top: var(--space-8); }
.value-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: oklch(from var(--color-gold) l c h / 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}
.value-title { font-weight: 600; font-size: var(--text-sm); color: var(--color-text); margin-bottom: var(--space-1); }
.value-desc { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }

/* Brand image */
.brand-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-surface) 0%, oklch(from var(--color-primary) l c h / 0.08) 100%);
  box-shadow: var(--shadow-lg);
}
.brand-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.brand-image-frame.img-fallback {
  background:
    radial-gradient(ellipse 60% 50% at 40% 40%, oklch(0.75 0.05 240 / 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 70% 70%, oklch(0.78 0.06 120 / 0.20) 0%, transparent 55%),
    linear-gradient(145deg, oklch(0.88 0.04 240 / 0.3) 0%, oklch(0.85 0.05 100 / 0.2) 100%),
    var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-image-overlay {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
}
.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: oklch(0.1 0.02 240 / 0.7);
  color: #E8E4DC;
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.brand-tag-gr {
  background: #0D5EAF;
  color: white;
  width: 1.5rem; height: 1.5rem;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-body);
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
  max-width: var(--content-wide);
  margin: 0 auto;
}
.divider-line { flex: 1; height: 1px; background: var(--color-divider); }
.divider-icon { flex-shrink: 0; }

/* ---- PRODUCTS ---- */
.scents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-16);
}
.scent-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.scent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}
.scent-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: oklch(from var(--color-surface-2, #EDEAE4) l c h);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid oklch(from var(--color-gold) l c h / 0.25);
}
.scent-drop {
  width: 22px; height: 28px;
  background: var(--scent-color, #7A8C5E);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.8;
}
.scent-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 400; color: var(--color-text); }
.scent-desc { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }

/* Format showcase */
.product-format {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-16));
}
.format-icon { margin-bottom: var(--space-4); color: var(--color-primary); }
.format-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 400; color: var(--color-primary); margin-bottom: var(--space-5); }
[data-theme='dark'] .format-title { color: var(--color-text); }
.format-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.format-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.format-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}
.format-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, oklch(0.85 0.04 240 / 0.2) 0%, oklch(0.82 0.06 100 / 0.15) 100%);
  box-shadow: var(--shadow-md);
}
.format-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.format-image-frame.img-fallback {
  background: linear-gradient(160deg,
    oklch(0.82 0.05 240 / 0.25) 0%,
    oklch(0.80 0.06 100 / 0.20) 100%);
  min-height: 260px;
}
.format-caption { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); font-style: italic; text-align: center; }

/* ---- HOTELS SECTION ---- */
.hotels-section {
  position: relative;
  background: var(--color-dark-bg);
  overflow: hidden;
}
.hotels-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, oklch(0.4 0.06 240 / 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, oklch(0.55 0.08 80 / 0.12) 0%, transparent 50%);
}
.hotels-section .container { position: relative; z-index: 1; }
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.hotel-feature {
  padding: var(--space-8);
  border: 1px solid oklch(1 0 0 / 0.1);
  border-radius: var(--radius-lg);
  background: oklch(1 0 0 / 0.04);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}
.hotel-feature:hover { border-color: oklch(from var(--color-gold) l c h / 0.4); background: oklch(1 0 0 / 0.07); }
.hotel-feature-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: oklch(from var(--color-gold) l c h / 0.35);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.hotel-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: #E8E4DC;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.hotel-feature p { font-size: var(--text-sm); color: oklch(1 0 0 / 0.55); line-height: 1.65; }
.hotels-cta { text-align: center; }

/* ---- QR SECTION ---- */
.qr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.qr-text p { color: var(--color-text-muted); font-weight: 300; margin-bottom: var(--space-8); }
.qr-steps { display: flex; flex-direction: column; gap: var(--space-4); }
.qr-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Phone mock */
.qr-phone-mock {
  display: flex;
  justify-content: center;
}
.phone-screen {
  width: min(280px, 90%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.phone-header {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme='dark'] .phone-header { color: var(--color-text); }
.phone-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.phone-options { display: flex; flex-direction: column; gap: var(--space-2); }
.phone-option {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-bg);
  transition: border-color var(--transition), background var(--transition);
}
.phone-option.active {
  border-color: var(--color-gold);
  background: oklch(from var(--color-gold) l c h / 0.1);
  color: var(--color-text);
  font-weight: 500;
}
.phone-btn {
  display: block;
  width: 100%;
  margin-top: var(--space-5);
  padding: var(--space-3);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: default;
}

/* ---- CONTACT SECTION ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.contact-text p { color: var(--color-text-muted); font-weight: 300; margin-bottom: var(--space-8); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.contact-item svg { flex-shrink: 0; color: var(--color-gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-success {
  padding: var(--space-4);
  background: oklch(from var(--color-olive) l c h / 0.1);
  border: 1px solid oklch(from var(--color-olive) l c h / 0.3);
  border-radius: var(--radius-md);
  color: var(--color-olive);
  font-size: var(--text-sm);
  text-align: center;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-12);
  padding-block: var(--space-12);
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  line-height: 1.6;
}
.footer-links { display: flex; gap: var(--space-16); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid var(--color-divider);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-gr-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ---- FOCUS STYLES ---- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-visual { order: -1; }
  .brand-image-frame { aspect-ratio: 16/9; }
  .contact-inner { grid-template-columns: 1fr; }
  .qr-inner { grid-template-columns: 1fr; }
  .product-format { grid-template-columns: 1fr; }
  .format-image-frame { aspect-ratio: 16/9; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hotels-grid { grid-template-columns: 1fr; }
  .scents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: var(--space-8); }
}

/* ---- Scent SVG icons (packaging style) ---- */
.scent-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.scent-svg {
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.scent-card:hover .scent-svg {
  opacity: 1;
  color: var(--color-gold);
}
[data-theme='dark'] .scent-svg { color: var(--color-text-muted); }
[data-theme='dark'] .scent-card:hover .scent-svg { color: var(--color-gold); }

/* Logo text-only (no SVG mark) */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.logo-text em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold);
  margin-left: 0.1em;
}
[data-theme='dark'] .logo-text { color: var(--color-text); }

/* Format card updated */
.format-desc {
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
}
.format-variants {
  display: flex;
  gap: var(--space-10);
  align-items: flex-end;
}
.format-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-primary);
}
.format-variant span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
[data-theme='dark'] .format-variant { color: var(--color-text-muted); }

/* Brand placeholder art */
.brand-placeholder-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

/* product-format single column when no visual */
.product-format {
  grid-template-columns: 1fr;
  max-width: 540px;
}

/* ===== MOBILE FIX — overflow и вёрстка ===== */

/* Запрещаем горизонтальный скролл */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* { max-width: 100%; }

/* Фикс для всех секций */
.section { overflow: hidden; }

/* value-icon текстовый */
.value-icon--text {
  font-size: 1rem;
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
}

/* badge dot */
.badge-dot {
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* divider icon text */
.divider-icon-text {
  font-size: 0.6rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* product-format — только одна колонка всегда */
.product-format {
  grid-template-columns: 1fr !important;
  max-width: 100%;
}

/* format-variants — на мобиле горизонтально но не выходят */
.format-variants {
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: flex-start;
}

/* brand-grid на мобиле */
@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .brand-image-frame {
    aspect-ratio: 3/2;
  }
  .brand-placeholder-art svg {
    max-height: 260px;
  }
}

/* scents-grid на маленьких экранах */
@media (max-width: 480px) {
  .scents-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .scent-card {
    padding: var(--space-4) var(--space-3);
  }
  .scent-svg {
    width: 48px;
    height: 48px;
  }
}

/* hero title — не вылезает */
.hero-title {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* section-title — не вылезает */
.section-title {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* hotels section */
@media (max-width: 600px) {
  .hotels-grid {
    grid-template-columns: 1fr;
  }
  .hotel-feature {
    padding: var(--space-6);
  }
}

/* qr section */
@media (max-width: 900px) {
  .qr-inner {
    grid-template-columns: 1fr;
  }
  .phone-screen {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* contact */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* footer */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: var(--space-6);
  }
  .footer-inner {
    gap: var(--space-8);
  }
}

/* nav — логотип не обрезается */
.nav-inner {
  flex-wrap: nowrap;
  min-width: 0;
}
.logo {
  min-width: 0;
  overflow: hidden;
}
.logo-text {
  white-space: nowrap;
}

/* Format photos — реальные фото */
.format-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-2);
}
.format-photo-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.format-photo-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.format-photo-item span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

/* Brand image — реальное фото */
.brand-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================
   Language Switcher
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding: 2px 3px;
  transition: color var(--transition);
  line-height: 1;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--color-primary);
}

.lang-btn.active {
  font-weight: 700;
}

.lang-sep {
  color: var(--color-border);
  font-size: 0.65rem;
  line-height: 1;
  user-select: none;
}

.lang-switcher--mobile {
  margin-top: 24px;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
}

.lang-switcher--mobile .lang-btn {
  font-size: 0.85rem;
  padding: 4px 6px;
}

/* ============================================
   GR Badge — Header
   ============================================ */
.gr-badge-header {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  opacity: 0.75;
  transition: opacity var(--transition);
  margin-right: auto;
  margin-left: 16px;
}

.gr-badge-header:hover {
  opacity: 1;
}

.gr-stars-svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   GR Badge — Brand Section
   ============================================ */
.gr-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--color-primary);
}

.gr-stars-svg--large {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.gr-badge-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gr-badge-country {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-primary);
}

.gr-badge-est {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Dark theme adjustments */
[data-theme='dark'] .lang-btn:hover,
[data-theme='dark'] .lang-btn.active {
  color: var(--color-gold);
}

[data-theme='dark'] .gr-badge-header,
[data-theme='dark'] .gr-badge-brand {
  color: var(--color-gold);
}

[data-theme='dark'] .gr-badge-country {
  color: var(--color-gold);
}

/* GR dots badge — новый стиль как на упаковке */
.gr-dots-svg {
  width: 34px;
  height: 34px;
}


/* Logo + GR badge group — always visible */
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gr-badge-header {
  flex-shrink: 0;
  display: flex !important;
  color: var(--color-primary);
  opacity: 0.8;
}

[data-theme='dark'] .gr-badge-header {
  color: var(--color-gold);
}

/* GR Badge — link & tooltip */
.gr-badge-link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s, filter 0.3s;
  cursor: pointer;
}

.gr-badge-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(200, 169, 106, 0.5));
  color: var(--color-gold);
}

[data-theme='dark'] .gr-badge-link {
  color: var(--color-gold);
  opacity: 0.7;
}

[data-theme='dark'] .gr-badge-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(200, 169, 106, 0.7));
}

/* Tooltip */
.gr-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
  z-index: 100;
}

.gr-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: var(--color-primary);
  border-top: none;
}

.gr-badge-link:hover .gr-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-theme='dark'] .gr-tooltip {
  background: var(--color-gold);
  color: #1C1A16;
}

[data-theme='dark'] .gr-tooltip::before {
  border-bottom-color: var(--color-gold);
}

/* GR Badge — fixed position, always visible */
.gr-badge-fixed {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-primary); /* light: Aegean Blue */
  opacity: 0.9;
  transition: opacity 0.3s, filter 0.3s, color 0.3s;
  cursor: pointer;
}

/* light mode hover — Aegean Blue glow */
.gr-badge-fixed:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(26, 58, 92, 0.5));
  color: var(--color-primary-mid);
}

/* dark mode hover — Gold glow */
[data-theme='dark'] .gr-badge-fixed:hover {
  filter: drop-shadow(0 0 12px rgba(200, 169, 106, 0.9));
  color: var(--color-gold);
}

.gr-badge-fixed .gr-dots-svg {
  width: 68px;
  height: 68px;
}

.gr-badge-fixed .gr-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}

.gr-badge-fixed:hover .gr-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-theme='dark'] .gr-badge-fixed {
  color: var(--color-gold);
}

[data-theme='dark'] .gr-badge-fixed .gr-tooltip {
  background: var(--color-gold);
  color: #1C1A16;
}

/* Hide old header badge on mobile to avoid clutter */
@media (max-width: 768px) {
  .gr-badge-header {
    display: none !important;
  }
}

/* Морская соль — по центру, того же размера */
.scent-card--center {
  grid-column: 1 / -1;
  width: calc(50% - 0.5rem);
  margin: 0 auto;
}
