/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-900: #2C1A0E;
  --brown-800: #3D2B1F;
  --brown-700: #5C3D2E;
  --brown-500: #8B5E3C;
  --brown-300: #C4956A;
  --brown-100: #F5EDE3;
  --cream:     #FBF6F0;
  --gold:      #C9A84C;
  --gold-light:#F0D98A;
  --teal:      #4ECDC4;
  --pink:      #E8A59A;
  --white:     #FFFFFF;
  --text:      #2C1A0E;
  --text-muted:#7A5C44;
  --shadow:    0 4px 24px rgba(44,26,14,.12);
  --shadow-lg: 0 12px 48px rgba(44,26,14,.18);
  --radius:    16px;
  --radius-sm: 8px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown-500);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--brown-900);
}
.section-title em { color: var(--brown-500); font-style: italic; }

.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 12px auto 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn--primary {
  background: var(--brown-700);
  color: var(--white);
  border-color: var(--brown-700);
}
.btn--primary:hover { background: var(--brown-900); border-color: var(--brown-900); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-700);
}
.btn--ghost:hover { background: var(--brown-700); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-300);
}
.btn--outline:hover { background: var(--brown-100); }

.btn--gold {
  background: var(--gold);
  color: var(--brown-900);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn--small { padding: 8px 18px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== STARS ===== */
.stars { color: var(--brown-500); font-size: .9rem; letter-spacing: 2px; }
.stars--gold { color: var(--gold); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(251,246,240,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,26,14,.1);
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-900);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav__logo em { color: var(--brown-500); }
.nav__logo-icon { font-size: 1.1rem; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--brown-700); }
.nav__cta {
  background: var(--brown-700);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--brown-900); transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.hero__bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.shape--1 { width: 600px; height: 600px; background: var(--brown-500); top: -200px; right: -150px; }
.shape--2 { width: 300px; height: 300px; background: var(--teal); bottom: 50px; left: -80px; opacity: .06; }
.shape--3 { width: 150px; height: 150px; background: var(--gold); top: 40%; left: 40%; opacity: .1; }

.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--brown-500);
  margin-bottom: 12px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--brown-900);
  margin-bottom: 20px;
}
.hero__title em { color: var(--brown-500); font-style: italic; }
.hero__subtitle {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(44,26,14,.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(44,26,14,.06);
}

/* Hero photo */
.hero__image { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero__photo-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero__photo {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 32px;
}
.hero__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown-800);
  box-shadow: var(--shadow);
}

/* About photo */
.about__img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
}
.about__img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

/* Product & merch card photo variant */
.product-card__img--photo,
.merch-card__img--photo {
  height: 220px;
  padding: 0;
  background: var(--cream);
}
.product-card__img--photo img,
.merch-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Legacy cup illustration (kept for reference) */
.hero__cup-wrapper { position: relative; }
.hero__cup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.cup-body {
  width: 160px;
  height: 200px;
  background: linear-gradient(160deg, #f5ede3 0%, #e8d5c0 100%);
  border-radius: 12px 12px 30px 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cup-sleeve {
  width: 140px;
  height: 80px;
  background: var(--brown-700);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cup-logo { font-size: 2.5rem; }
.cup-lid {
  width: 170px;
  height: 20px;
  background: var(--brown-800);
  border-radius: 50px;
  margin-bottom: -4px;
  order: -1;
}
.cup-steam {
  position: absolute;
  top: -50px;
  display: flex;
  gap: 12px;
}
.steam {
  width: 6px;
  height: 30px;
  border-radius: 10px;
  background: rgba(44,26,14,.15);
  animation: steam 2s ease-in-out infinite;
}
.steam--2 { animation-delay: .4s; }
.steam--3 { animation-delay: .8s; }
@keyframes steam {
  0%   { transform: translateY(0) scaleX(1); opacity: .6; }
  50%  { transform: translateY(-15px) scaleX(1.3); opacity: .3; }
  100% { transform: translateY(-30px) scaleX(.8); opacity: 0; }
}

.hero__beans { position: absolute; inset: 0; pointer-events: none; }
.bean {
  position: absolute;
  font-size: 1.2rem;
  animation: drift 4s ease-in-out infinite;
  opacity: .6;
}
.bean--1 { top: 10%; left: -20%; animation-delay: 0s; }
.bean--2 { top: 70%; left: -15%; animation-delay: .6s; }
.bean--3 { top: 20%; right: -20%; animation-delay: 1.2s; }
.bean--4 { top: 80%; right: -10%; animation-delay: 1.8s; }
.bean--5 { bottom: -10%; left: 50%; animation-delay: 2.4s; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(15deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-muted);
  z-index: 1;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--brown-300);
  border-bottom: 2px solid var(--brown-300);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.about__blob {
  width: 360px;
  height: 360px;
  background: var(--brown-100);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morph 6s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%; }
  66% { border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%; }
}
.about__monkey {
  position: absolute;
  font-size: 6rem;
  animation: float 3s ease-in-out infinite;
}
.about__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__stat-card--1 { bottom: 40px; left: 0; }
.about__stat-card--2 { top: 40px; right: 0; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brown-700);
}
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.about__text .section-title { margin-bottom: 20px; }
.about__desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about__pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar__icon {
  font-size: 1.5rem;
  background: var(--brown-100);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar strong { display: block; margin-bottom: 4px; color: var(--brown-900); }
.pillar p { font-size: .9rem; color: var(--text-muted); }

/* ===== CATALOG ===== */
.catalog {
  padding: 100px 0;
  background: var(--cream);
}
.catalog__filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--brown-300);
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--brown-700);
  border-color: var(--brown-700);
  color: var(--white);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card--premium { border: 2px solid var(--gold); }

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brown-700);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: .06em;
}
.product-card__badge--gold { background: var(--gold); color: var(--brown-900); }

.product-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 8px;
}
.product-card__img--kraft  { background: linear-gradient(135deg, #d4b896 0%, #c4a07a 100%); }
.product-card__img--teal   { background: linear-gradient(135deg, #4ecdc4 0%, #2eada4 100%); }
.product-card__img--pink   { background: linear-gradient(135deg, #e8a59a 0%, #d4786a 100%); }
.product-card__img--dark   { background: linear-gradient(135deg, #3d2b1f 0%, #1a0e06 100%); }
.product-card__img--white  { background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); }
.product-card__img--black  { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }

.product-emoji { font-size: 3rem; }
.product-emoji--gold { filter: sepia(1) saturate(3) hue-rotate(-10deg); }

.product-bag-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 6px;
}
.bag-brand { font-weight: 900; font-size: 1rem; color: var(--white); letter-spacing: .08em; }
.bag-sub { font-size: .7rem; color: rgba(255,255,255,.85); font-style: italic; }
.product-card__img--white .bag-brand,
.product-card__img--white .bag-sub { color: var(--brown-700); }

.product-bag-label--gold .bag-brand,
.product-bag-label--gold .bag-sub { color: var(--gold); }

.product-card__body { padding: 20px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }

.product-tag {
  font-size: .72rem;
  font-weight: 600;
  background: var(--brown-100);
  color: var(--brown-700);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.product-tag--gold { background: #fff8e1; color: var(--gold); }

.product-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--brown-900);
}
.product-card__body p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.product-card__intensity { margin-bottom: 16px; }
.product-card__intensity > span { font-size: .75rem; color: var(--text-muted); display: block; margin-bottom: 6px; }
.intensity-bar { height: 4px; background: var(--brown-100); border-radius: 4px; overflow: hidden; }
.intensity-fill { height: 100%; background: var(--brown-500); border-radius: 4px; }
.intensity-fill--high { background: var(--brown-900); }
.intensity-fill--gold { background: var(--gold); }

.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--brown-900); }
.price small { font-family: 'Inter', sans-serif; font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.price--gold { color: var(--gold); }

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: var(--brown-800);
  color: var(--white);
}
.menu .section-eyebrow { color: var(--brown-300); }
.menu .section-title { color: var(--white); }
.menu .section-title em { color: var(--brown-300); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(255,255,255,.03);
  transition: background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.menu-item:hover { background: rgba(255,255,255,.07); }
.menu-item__icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-item h4 { font-size: .95rem; margin-bottom: 2px; }
.menu-item p { font-size: .82rem; color: rgba(255,255,255,.5); }
.menu-item__price {
  margin-left: auto;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-300);
  flex-shrink: 0;
}

/* ===== MERCH ===== */
.merch {
  padding: 100px 0;
  background: var(--cream);
}
.merch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.merch-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.merch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.merch-card--kit { border: 2px dashed var(--brown-300); }

.merch-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.merch-card__badge--special { background: var(--brown-500); }

.merch-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-card__img--tshirt  { background: linear-gradient(135deg, #f0e8dc 0%, #e0d0bc 100%); }
.merch-card__img--mug     { background: linear-gradient(135deg, #e8f8f7 0%, #c8ecea 100%); }
.merch-card__img--tote    { background: linear-gradient(135deg, #d4b896 0%, #c4a07a 100%); }
.merch-card__img--cap     { background: linear-gradient(135deg, #3d2b1f 0%, #5c3d2e 100%); }
.merch-card__img--hoodie  { background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); }
.merch-card__img--kit     { background: linear-gradient(135deg, #fff8e1 0%, #fdedb5 100%); }

.merch-mockup { display: flex; align-items: center; justify-content: center; }

/* T-shirt mockup */
.tshirt-shape {
  width: 100px;
  height: 110px;
  background: var(--white);
  border-radius: 0 0 8px 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.tshirt-shape::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -24px;
  width: 148px;
  height: 30px;
  background: var(--white);
  clip-path: polygon(20% 0%, 38% 100%, 62% 100%, 80% 0%);
  box-shadow: 0 -2px 8px rgba(0,0,0,.06);
}
.tshirt-print { font-size: 2.5rem; }

/* Mug mockup */
.mug-shape {
  width: 80px;
  height: 90px;
  background: var(--white);
  border-radius: 6px 6px 12px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.mug-handle {
  position: absolute;
  right: -18px;
  width: 20px;
  height: 36px;
  border: 5px solid var(--white);
  border-left: none;
  border-radius: 0 20px 20px 0;
  box-shadow: 3px 0 8px rgba(0,0,0,.08);
}
.mug-print { font-size: 2rem; }

/* Tote mockup */
.tote-shape {
  width: 90px;
  height: 100px;
  background: #d4b896;
  border-radius: 4px 4px 10px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  flex-direction: column;
  gap: 4px;
}
.tote-handle {
  position: absolute;
  top: -20px;
  width: 4px;
  height: 28px;
  background: #c4a07a;
  border-radius: 4px;
}
.tote-handle--l { left: 24px; transform: rotate(-8deg); }
.tote-handle--r { right: 24px; transform: rotate(8deg); }
.tote-print { font-size: 1.6rem; text-align: center; line-height: 1.2; }
.tote-print small { font-size: .55rem; font-weight: 700; letter-spacing: .06em; color: var(--brown-800); display: block; }

/* Cap mockup */
.cap-shape {
  width: 110px;
  height: 60px;
  background: var(--brown-800);
  border-radius: 50px 50px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cap-shape::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  right: -10px;
  height: 14px;
  background: var(--brown-700);
  border-radius: 0 0 8px 8px;
}
.cap-print { font-size: 2rem; }

/* Hoodie mockup */
.hoodie-shape {
  width: 110px;
  height: 120px;
  background: #f0f0f0;
  border-radius: 8px 8px 12px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.hoodie-shape::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30px;
  width: 50px;
  height: 16px;
  background: #ddd;
  border-radius: 50%;
}
.hoodie-print { font-size: 2.5rem; }

/* Merch card body */
.merch-card__body { padding: 20px; }
.merch-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--brown-900);
}
.merch-card__body p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.merch-card__colors { display: flex; gap: 8px; margin-bottom: 16px; }
.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover { transform: scale(1.2); }
.merch-card__footer { display: flex; align-items: center; justify-content: space-between; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--brown-100);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-card--featured {
  background: var(--brown-700);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.testimonial-card--featured .stars { color: var(--gold-light); }
.testimonial-card p { margin: 14px 0; line-height: 1.7; font-size: .92rem; }
.testimonial-card--featured p { color: rgba(255,255,255,.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--brown-700);
  flex-shrink: 0;
}
.testimonial-card--featured .author-avatar { background: rgba(255,255,255,.2); color: var(--white); }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .78rem; color: var(--text-muted); }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,.5); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 16px; }
.contact__info > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact__channels { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.channel { display: flex; gap: 14px; align-items: flex-start; }
.channel__icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--brown-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.channel span { font-size: .85rem; color: var(--text-muted); }
.contact__socials { display: flex; gap: 10px; }
.social-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--brown-300);
  font-size: .82rem;
  font-weight: 600;
  color: var(--brown-700);
  transition: var(--transition);
}
.social-btn:hover { background: var(--brown-700); border-color: var(--brown-700); color: var(--white); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--brown-800); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--brown-100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brown-500); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-weight: 600;
  font-size: .9rem;
}
.form-success.show { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-900);
  color: rgba(255,255,255,.7);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__logo em { color: var(--brown-300); }
.footer__brand p { font-size: .88rem; line-height: 1.6; margin-bottom: 8px; }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 16px; }

.footer__links h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__newsletter h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__newsletter p { font-size: .85rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form .btn { padding: 10px 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; text-align: center; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__image { display: none; }
  .hero__scroll { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { min-height: 280px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 99;
    font-size: 1.4rem;
  }
  .hero { padding: 100px 24px 60px; }
  .catalog__grid, .merch__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
