/* =============================================
   BIVOJ — Luxusní Békovky | CSS
   ============================================= */

/* ---- VARIABLES ---- */
:root {
  --brown-900: #1a0e07;
  --brown-800: #2c1810;
  --brown-700: #3d2415;
  --brown-600: #5c3620;
  --brown-500: #7a4a2c;
  --brown-400: #9e6242;
  --brown-300: #c48b6a;
  --brown-200: #d9b49a;
  --brown-100: #eeddd0;
  --brown-50:  #f7f0ea;

  --gold:      #c9a96e;
  --gold-light:#e4c99b;
  --gold-dark: #a07c45;

  --cream:     #faf6f1;
  --text-dark: #1a0e07;
  --text-mid:  #5c3620;
  --text-light:#9e6242;

  --font-display: 'Pirata One', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --nav-h: 80px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--brown-900);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-900);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn--brown {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--brown:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 10px;
  padding: 11px 26px;
}
.btn--outline-light:hover {
  background: var(--cream);
  color: var(--brown-900);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 14, 7, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  cursor: default;
}

.nav__links {
  display: flex;
  gap: 40px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-200);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cart {
  position: relative;
  color: var(--brown-200);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav__cart:hover { color: var(--gold); }
.nav__cart-count {
  position: absolute;
  top: -6px; right: -8px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--brown-900);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  width: 22px; height: 1.5px;
  background: var(--brown-200);
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown-900);
  z-index: 99;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(92, 54, 32, 0.45) 0%, transparent 60%),
    linear-gradient(160deg, var(--brown-900) 0%, #2c1a0d 40%, #1a0e07 100%);
}

/* Subtle animated grain overlay */
.hero__grain {
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 2%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 1%); }
  60% { transform: translate(1%, -4%); }
  70% { transform: translate(-2%, 3%); }
  80% { transform: translate(4%, -1%); }
  90% { transform: translate(-1%, 2%); }
}

/* Decorative hat silhouette shapes */
.hero__bg::before {
  content: '';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 700px);
  aspect-ratio: 1.4;
  background:
    radial-gradient(ellipse 100% 60% at 50% 70%, rgba(92, 54, 32, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 80% 30% at 50% 85%, rgba(60, 34, 16, 0.6) 0%, transparent 70%);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border-top: 2px solid rgba(201, 169, 110, 0.12);
  box-shadow: inset 0 20px 60px rgba(201, 169, 110, 0.06);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: calc(var(--nav-h) + 40px) 48px 80px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero__title em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-200);
  margin-bottom: 48px;
  max-width: 460px;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown-300);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  background: var(--brown-800);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-300);
}

.marquee__dot {
  font-size: 6px !important;
  color: var(--gold) !important;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
  position: relative;
  background: var(--brown-800);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(201, 169, 110, 0.2);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card--large .product-card__img-wrap {
  aspect-ratio: 3/2;
}

.product-card__img {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card__img {
  transform: scale(1.06);
}

/* Hat image placeholders with rich gradients */
.product-card__img--1 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(61, 36, 21, 0.9) 0%, transparent 65%),
    linear-gradient(160deg, #4a2d1a 0%, #6b3e24 35%, #8a5230 55%, #5c3618 100%);
}
.product-card__img--2 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(40, 25, 13, 0.9) 0%, transparent 65%),
    linear-gradient(145deg, #2c1a0d 0%, #4a2f18 40%, #6b4226 60%, #3d2410 100%);
}
.product-card__img--3 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(70, 42, 22, 0.9) 0%, transparent 65%),
    linear-gradient(155deg, #5c3818 0%, #7a4e26 35%, #9e6836 55%, #6b3e1c 100%);
}
.product-card__img--4 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(86, 60, 32, 0.9) 0%, transparent 65%),
    linear-gradient(150deg, #6b4520 0%, #8c5e30 35%, #b07840 55%, #7a4e22 100%);
}
.product-card__img--5 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(50, 30, 14, 0.9) 0%, transparent 65%),
    linear-gradient(165deg, #3d2410 0%, #5c3820 35%, #7a4e2e 55%, #4a2c14 100%);
}
.product-card__img--6 {
  background:
    radial-gradient(ellipse 100% 65% at 50% 72%, rgba(35, 20, 8, 0.9) 0%, transparent 65%),
    linear-gradient(140deg, #261508 0%, #3d2410 35%, #5a3618 55%, #2c1a08 100%);
}

/* Hat silhouette overlay (CSS art) */
.product-card__img::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 38%;
  background: rgba(255,255,255,0.04);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow:
    0 -2px 12px rgba(201, 169, 110, 0.1),
    inset 0 8px 20px rgba(255,255,255,0.03);
}
.product-card__img::before {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 8%;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  filter: blur(4px);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 7, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--brown-900);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}
.product-card__badge--new {
  background: var(--brown-600);
  color: var(--gold-light);
}

.product-card__info {
  padding: 20px 22px 22px;
}

.product-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 6px 0 10px;
}

.product-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--brown-300);
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
}

.product-card__colors {
  display: flex;
  gap: 8px;
}

.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.color-dot:hover {
  transform: scale(1.25);
  border-color: var(--gold);
}
.color-dot--1 { background: #6b3e20; }
.color-dot--2 { background: #3d2010; }
.color-dot--3 { background: #1a0a04; }
.color-dot--4 { background: #9e6842; }
.color-dot--5 { background: #c4a882; }

/* =============================================
   FEATURED SECTION
   ============================================= */
.featured {
  padding: 120px 0 100px;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-card--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.featured__cta {
  text-align: center;
  margin-top: 64px;
}

/* =============================================
   STORY SECTION
   ============================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  overflow: hidden;
}

.story__visual {
  position: relative;
  background: var(--brown-800);
}

.story__img-frame {
  position: absolute;
  inset: 40px;
  overflow: hidden;
  border-radius: var(--radius);
}

.story__img {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 90% 60% at 50% 72%, rgba(61, 36, 21, 0.95) 0%, transparent 65%),
    linear-gradient(145deg, #2c1a0d 0%, #5c3820 30%, #7a5030 55%, #3d2414 100%);
  position: relative;
}
.story__img::after {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 42%;
  background: rgba(255,255,255,0.03);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}

.story__stat-block {
  position: absolute;
  bottom: 56px;
  right: 56px;
  display: flex;
  gap: 32px;
  background: rgba(26, 14, 7, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  padding: 24px 32px;
}

.story__stat {
  text-align: center;
}
.story__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.story__stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-300);
  margin-top: 6px;
  display: block;
}

.story__text {
  background: var(--brown-900);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown-200);
  margin-bottom: 20px;
}
.story__text .btn { margin-top: 24px; align-self: flex-start; }

/* =============================================
   MATERIALS SECTION
   ============================================= */
.materials {
  padding: 120px 0;
  background: var(--brown-800);
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.material-card {
  background: var(--brown-900);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.material-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.material-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  color: var(--gold);
  opacity: 0.8;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 14px;
}

.material-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-300);
}

/* =============================================
   COLLECTION SECTION
   ============================================= */
.kolekce {
  padding: 120px 0;
}

.kolekce__filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-300);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn--active {
  background: var(--gold);
  color: var(--brown-900);
  border-color: var(--gold);
}

.kolekce__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card.hidden {
  display: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--brown-800);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.testimonial-card {
  background: var(--brown-900);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
  padding: 36px;
}

.testimonial-card--featured {
  background: var(--brown-700);
  border-color: rgba(201, 169, 110, 0.25);
  padding: 48px 36px;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--brown-100);
  margin-bottom: 28px;
}
.testimonial-card__author strong {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brown-600);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.testimonial-card__author span {
  font-size: 12px;
  color: var(--brown-300);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--brown-700) 0%, var(--brown-800) 50%, var(--brown-900) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: 'BIVOJ';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 600;
  color: rgba(201, 169, 110, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.3em;
}

.newsletter__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 20px;
  margin-top: 12px;
}

.newsletter p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-200);
  margin-bottom: 40px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter__form input::placeholder { color: var(--brown-300); }
.newsletter__form input:focus { border-color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #110903;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer__top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding: 80px 48px 60px;
  max-width: 1260px;
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-300);
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-300);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li {
  font-size: 13px;
  font-weight: 300;
  color: var(--brown-300);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  max-width: 1260px;
  margin: 0 auto;
}

.footer__bottom span,
.footer__legal a {
  font-size: 12px;
  color: var(--brown-400);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a:hover { color: var(--cream); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card--large {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .story { grid-template-columns: 1fr; }
  .story__visual { min-height: 420px; }
  .story__text { padding: 60px 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 0 24px; }

  .kolekce__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }

  .hero__content { padding: calc(var(--nav-h) + 24px) 24px 80px; }
  .hero__scroll { right: 24px; }
}

@media (max-width: 640px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
  .product-card--large { grid-column: 1; grid-row: 1; }

  .kolekce__grid { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: 1fr; }

  .newsletter__form { flex-direction: column; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__top { padding: 48px 24px 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }

  .story__text { padding: 48px 24px; }
  .story__stat-block { right: 24px; bottom: 24px; }

  .hero__scroll { display: none; }
}
