/* ===== VARIABLES ===== */
:root {
  --bg:        #000;
  --fg:        #f9f9f9;
  --card:      #161616;
  --gold:      #c9a84c;
  --gold-fg:   #000;
  --muted:     #a0a0a0;
  --border:    rgba(255,255,255,0.12);
  --nav-h:     80px;

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-head:    'Montserrat', 'Inter', sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;

  --luxe:  0.32em;
  --wide:  0.18em;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; color: inherit; }
ul { list-style: none; }
input, textarea { font-family: inherit; font-size: inherit; color: var(--fg); }

/* ===== TYPOGRAPHY UTILITIES ===== */
.gold            { color: var(--gold); }
.muted           { color: var(--muted); }
.text-center     { text-align: center; }
.bg-card         { background: var(--card); }

.display-italic  { font-family: var(--font-display); font-style: italic; }

.label {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
}
.label.gold { color: var(--gold); }

.heading-xl {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
}
.heading-lg {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
}
.heading-md {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
}

.body-sm   { font-size: 14px; line-height: 1.7; }
.body-stack p { font-size: 15px; line-height: 1.8; color: var(--muted); }
.body-stack p + p { margin-top: 1.2rem; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.narrow { max-width: 760px; }

.section {
  padding: 6rem 0;
}
.section.bg-card { padding: 6rem 0; }

.hidden { display: none !important; }

/* ===== GOLD LINE ===== */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  margin: 3rem 0;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }

/* Logo */
.logo-link { display: block; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; width: 40px; object-fit: contain; }
.logo-name {
  font-size: 11px;
  letter-spacing: var(--luxe);
  font-weight: 500;
  font-family: var(--font-head);
}
.logo-sub {
  font-size: 9px;
  letter-spacing: var(--wide);
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: rgba(249,249,249,0.8);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

.cart-btn {
  position: relative;
  color: rgba(249,249,249,0.8);
  transition: color 0.2s;
  display: flex;
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: var(--wide);
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, #000 100%);
}
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .hero-content { padding: 0 2.5rem 7rem; }
}
.hero-content > div { max-width: 600px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.hero-desc {
  margin-top: 2rem;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 1024px) { .scroll-hint { display: flex; } }
.scroll-line {
  display: inline-block;
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-sans);
}
.btn-dark {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-dark:hover { background: var(--gold); color: var(--gold-fg); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  background: var(--gold);
  color: var(--gold-fg);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.full-w { width: 100%; justify-content: center; }

/* ===== LINKS ===== */
.link-gold {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s;
  align-self: flex-end;
}
.link-gold:hover { color: var(--fg); border-color: var(--fg); }

/* ===== SECTION HEADERS ===== */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* ===== HERITAGE ===== */
.heritage-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .heritage-grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.tl-year {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.tl-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

.heritage-visual { position: relative; }
.heritage-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
}
.heritage-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.heritage-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--gold-fg);
  padding: 1.5rem 2.5rem;
}
@media (min-width: 1024px) { .heritage-badge { left: -3rem; } }
.badge-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-sub {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== CELEBRITIES ===== */
.celebrities-head {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .celebrities-head { grid-template-columns: 7fr 5fr; align-items: flex-end; }
}
.celebrities-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px)  { .stars-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stars-grid { grid-template-columns: repeat(6, 1fr); } }

.star-cell {
  aspect-ratio: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 1rem;
  transition: background 0.2s;
}
.star-cell:hover { background: rgba(201,168,76,0.06); }
.star-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
}
.star-name {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

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

.product-card {
  cursor: pointer;
}
.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 10px;
}
.product-hover-label {
  position: absolute;
  inset: auto 0 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(4px);
  padding: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.product-card:hover .product-hover-label { transform: translateY(0); }

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
}
.product-cat {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-name { font-size: 14px; font-weight: 500; }
.product-price { font-size: 14px; color: var(--gold); flex-shrink: 0; }

/* ===== ANNIVERSARY PRODUCT ===== */
.ann-product {
  display: grid;
}
@media (min-width: 1024px) { .ann-product { grid-template-columns: 1fr 1fr; } }

.ann-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.ann-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg);
}
.ann-img img { width: 100%; height: 100%; object-fit: cover; }

.ann-details {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (min-width: 1024px) { .ann-details { padding: 4rem; } }
@media (min-width: 1280px) { .ann-details { padding: 5rem; } }

.ann-details .label { margin-bottom: 1rem; }
.ann-details .heading-xl { margin-bottom: 1.5rem; }

.product-price {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: var(--muted);
}
.feat-dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.size-picker { margin-bottom: 2.5rem; }
.size-label {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: var(--luxe);
  transition: border-color 0.2s, color 0.2s;
}
.size-btn:hover,
.size-btn.selected { border-color: var(--gold); color: var(--gold); }

/* ===== NEWSLETTER ===== */
.newsletter-wrap {
  border-top: 1px solid var(--border);
}
.newsletter {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .label { margin-bottom: 1rem; }
.newsletter .heading-md { margin-bottom: 1.2rem; }
.newsletter .body-sm { margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form .input-field { flex: 1; }
}

/* ===== INPUTS ===== */
.input-field {
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  color: var(--fg);
}
.input-field::placeholder { color: var(--muted); }
.input-field:focus { border-color: var(--gold); }
textarea.input-field { resize: none; }

/* ===== PAGES ===== */
.page-wrap {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header .label { margin-bottom: 0.8rem; }

/* ===== FILTER BAR ===== */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4rem;
}
.filter-btn {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.filter-btn:hover { border-color: var(--fg); color: var(--fg); }
.filter-btn.active { border-color: var(--gold); color: var(--gold); }

/* ===== O NÁS ===== */
.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.story-lead {
  font-size: 19px;
  color: var(--fg);
  font-weight: 300;
  line-height: 1.6;
}
.story-body strong { color: var(--fg); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-style: italic;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== 30 ROKOV PAGE ===== */
.ann-hero {
  text-align: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
}
.ann-hero .label { margin-bottom: 1.2rem; }

.ann-big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ann-text {
  max-width: 560px;
  margin: 1.5rem auto 0;
}

.ann-cards { padding-bottom: 4rem; }
.feat-cards {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .feat-cards { grid-template-columns: repeat(3, 1fr); } }

.feat-card {
  padding: 2.5rem;
}
.feat-icon {
  font-size: 2.2rem;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}
.feat-title {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-weight: 500;
}

.ann-btn-wrap {
  padding-bottom: 6rem;
}

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon {
  border: 1px solid rgba(201,168,76,0.4);
  padding: 12px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
}
.c-label {
  font-size: 10px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.c-value { font-size: 15px; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
  margin-top: 1.5rem;
}
.footer-h {
  font-size: 11px;
  letter-spacing: var(--luxe);
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

.footer-bar { border-top: 1px solid var(--border); }
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 11px;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== ANIMATIONS ===== */
.ken-burns {
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
