/* ============================================
   Happybear® Brand Website — Core Stylesheet
   Nordic Warm Design · 1200px Width · Responsive
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --hb-gold: #C4A265;
  --hb-gold-light: #D4BC82;
  --hb-brown: #5C4033;
  --hb-brown-light: #7A5C4F;
  --hb-sage: #9CAF88;
  --hb-sage-light: #B8C9A8;
  --hb-cream: #F7F3EF;
  --hb-cream-dark: #EDE5DB;
  --hb-white: #FFFFFF;
  --hb-text: #2D2D2D;
  --hb-text-light: #6B6B6B;
  --hb-text-muted: #9A9A9A;
  --hb-border: #E5DDD3;
  --hb-shadow: rgba(92, 64, 51, 0.08);
  --hb-shadow-lg: rgba(92, 64, 51, 0.15);

  /* Fonts */
  --hb-serif: 'Georgia', 'Playfair Display', serif;
  --hb-sans: 'Inter', 'Segoe UI', -apple-system, sans-serif;

  /* Spacing */
  --hb-gap: 24px;
  --hb-gap-lg: 48px;
  --hb-gap-xl: 80px;

  /* Layout */
  --hb-max-width: 1200px;
  --hb-radius: 8px;
  --hb-radius-lg: 16px;

  /* Animation */
  --hb-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --hb-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--hb-sans);
  color: var(--hb-text);
  background: var(--hb-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hb-brown); text-decoration: none; transition: color var(--hb-transition); }
a:hover { color: var(--hb-gold); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--hb-serif); color: var(--hb-brown); line-height: 1.3; }
h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.section-label {
  font-family: var(--hb-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--hb-serif);
  font-size: 2.25rem;
  color: var(--hb-brown);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--hb-text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--hb-max-width);
  margin: 0 auto;
  padding: 0 var(--hb-gap);
}

.section {
  padding: var(--hb-gap-xl) 0;
}

.section--cream { background: var(--hb-cream); }
.section--white { background: var(--hb-white); }
.section--dark { background: var(--hb-brown); color: var(--hb-white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--hb-white); }
.section--dark .section-desc { color: var(--hb-cream-dark); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: var(--hb-gap); }
.flex--gap-lg { gap: var(--hb-gap-lg); }
.grid { display: grid; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--hb-transition-slow), transform var(--hb-transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 239, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hb-border);
  transition: background var(--hb-transition), box-shadow var(--hb-transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px var(--hb-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--hb-max-width);
  margin: 0 auto;
  padding: 0 var(--hb-gap);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--hb-brown);
}

.logo img,
.logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--hb-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-white);
  font-size: 1.1rem;
}

.logo .reg-mark {
  font-size: 0.5rem;
  vertical-align: super;
  color: var(--hb-text-muted);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hb-text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hb-gold);
  transition: width var(--hb-transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--hb-brown); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--hb-brown);
  color: var(--hb-white);
  padding: 10px 24px;
  border-radius: var(--hb-radius);
  transition: background var(--hb-transition), transform var(--hb-transition);
}

.nav-cta:hover {
  background: var(--hb-brown-light);
  color: var(--hb-white);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hb-brown);
  position: absolute;
  left: 4px;
  transition: all var(--hb-transition);
}

.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

.mobile-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hb-cream);
  z-index: 999;
  padding: 100px var(--hb-gap) var(--hb-gap);
  flex-direction: column;
  gap: 24px;
}

.mobile-nav.open { display: flex; animation: fadeIn var(--hb-transition); }
.mobile-nav a {
  font-family: var(--hb-serif);
  font-size: 1.5rem;
  color: var(--hb-brown);
  padding: 12px 0;
  border-bottom: 1px solid var(--hb-border);
}

/* --- Hero Banner --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hb-cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--hb-cream-dark);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--hb-gold) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--hb-max-width);
  margin: 0 auto;
  padding: 0 var(--hb-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hb-gap-lg);
  align-items: center;
}

.hero-text {
  padding-top: 80px;
}

.hero-text .section-label { animation: fadeInUp 0.6s ease both; }
.hero-text h1 { animation: fadeInUp 0.6s ease 0.1s both; margin-bottom: 24px; }
.hero-text .hero-subtitle {
  font-size: 1.125rem;
  color: var(--hb-text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-visual {
  padding-top: 80px;
  position: relative;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px var(--hb-shadow-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--hb-gold);
  color: var(--hb-white);
  padding: 16px 24px;
  border-radius: var(--hb-radius);
  font-family: var(--hb-serif);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(196, 162, 101, 0.3);
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hb-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--hb-radius);
  transition: all var(--hb-transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn--primary {
  background: var(--hb-brown);
  color: var(--hb-white);
}

.btn--primary:hover {
  background: var(--hb-brown-light);
  color: var(--hb-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--hb-shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--hb-brown);
  border: 2px solid var(--hb-brown);
}

.btn--secondary:hover {
  background: var(--hb-brown);
  color: var(--hb-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--hb-gold);
  color: var(--hb-white);
}

.btn--gold:hover {
  background: var(--hb-gold-light);
  color: var(--hb-white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--hb-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--hb-white);
}

.btn--sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

.btn .arrow {
  transition: transform var(--hb-transition);
}

.btn:hover .arrow { transform: translateX(4px); }

/* --- Cards --- */
.card {
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  transition: transform var(--hb-transition), box-shadow var(--hb-transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--hb-shadow-lg);
}

.card-image {
  aspect-ratio: 1;
  background: var(--hb-cream);
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hb-transition-slow);
}

.card:hover .card-image img { transform: scale(1.05); }

.card-body { padding: 24px; }

.card-title {
  font-family: var(--hb-serif);
  font-size: 1.125rem;
  color: var(--hb-brown);
  margin-bottom: 8px;
}

.card-price {
  font-size: 0.875rem;
  color: var(--hb-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-spec {
  font-size: 0.75rem;
  color: var(--hb-text-muted);
  background: var(--hb-cream);
  padding: 4px 10px;
  border-radius: 4px;
}

.card-colors {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--hb-white);
  box-shadow: 0 0 0 1px var(--hb-border);
  cursor: pointer;
  transition: transform var(--hb-transition);
}

.color-dot:hover { transform: scale(1.2); }
.color-dot.active { box-shadow: 0 0 0 2px var(--hb-gold); }

/* --- Collection Grid --- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hb-gap);
}

.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.collection-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--hb-transition-slow);
}

.collection-card:hover .collection-card-bg { transform: scale(1.05); }

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(92,64,51,0.85), transparent);
  color: var(--hb-white);
  z-index: 1;
}

.collection-card-title {
  font-family: var(--hb-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.collection-card-count {
  font-size: 0.75rem;
  color: var(--hb-gold-light);
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hb-gap-lg);
}

/* --- Why Happybear Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hb-gap-lg);
}

.feature-card {
  text-align: center;
  padding: var(--hb-gap-lg) var(--hb-gap);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--hb-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--hb-gold);
}

.feature-title {
  font-family: var(--hb-serif);
  font-size: 1.125rem;
  color: var(--hb-brown);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--hb-text-light);
  line-height: 1.6;
}

/* --- Product Detail --- */
.product-detail {
  padding-top: 100px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hb-gap-lg);
  align-items: start;
}

.product-gallery {
  position: relative;
}

.product-gallery-main {
  aspect-ratio: 1;
  background: var(--hb-cream);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-thumb {
  width: 80px;
  height: 80px;
  background: var(--hb-cream);
  border-radius: var(--hb-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--hb-transition);
}

.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--hb-gold); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info { padding-top: 0; }

.product-info .section-label { margin-bottom: 8px; }

.product-info h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.product-tagline {
  font-size: 1rem;
  color: var(--hb-text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.color-selector {
  margin-bottom: 24px;
}

.color-selector-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 12px;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--hb-white);
  box-shadow: 0 0 0 1px var(--hb-border);
  transition: all var(--hb-transition);
  position: relative;
}

.color-option:hover { transform: scale(1.1); }
.color-option.active {
  box-shadow: 0 0 0 2px var(--hb-gold);
  transform: scale(1.1);
}

.color-option-name {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--hb-text-muted);
  white-space: nowrap;
}

.spec-table {
  width: 100%;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--hb-border);
}

.spec-label {
  width: 140px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hb-text);
}

.spec-value {
  font-size: 0.875rem;
  color: var(--hb-text-light);
}

.product-highlights {
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hb-border);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--hb-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-gold);
  font-size: 1rem;
}

.highlight-text h4 {
  font-family: var(--hb-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 0.8125rem;
  color: var(--hb-text-light);
}

/* --- Story Page --- */
.story-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hb-brown);
}

.story-content {
  max-width: 720px;
}

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--hb-text-light);
  margin-bottom: 24px;
}

.story-content p:first-of-type::first-letter {
  font-family: var(--hb-serif);
  font-size: 3.5rem;
  color: var(--hb-gold);
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hb-gap-lg);
  margin-top: var(--hb-gap-lg);
}

.timeline-item {
  text-align: center;
}

.timeline-year {
  font-family: var(--hb-serif);
  font-size: 2rem;
  color: var(--hb-gold);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--hb-text-light);
}

/* --- Quality / Crafted Page --- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hb-gap-lg);
}

.quality-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
}

.quality-icon {
  width: 56px;
  height: 56px;
  background: var(--hb-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--hb-gold);
  flex-shrink: 0;
}

.quality-title {
  font-family: var(--hb-serif);
  font-size: 1.25rem;
  color: var(--hb-brown);
  margin-bottom: 8px;
}

.quality-desc {
  font-size: 0.9375rem;
  color: var(--hb-text-light);
  line-height: 1.6;
}

/* --- Lookbook --- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hb-gap);
}

.lookbook-item {
  position: relative;
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.lookbook-item:nth-child(1) {
  grid-row: span 2;
  grid-column: span 1;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hb-transition-slow);
}

.lookbook-item:hover img { transform: scale(1.05); }

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--hb-white);
  font-family: var(--hb-serif);
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--hb-transition);
}

.lookbook-item:hover .lookbook-caption { opacity: 1; }

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hb-gap-lg);
}

.blog-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  transition: transform var(--hb-transition), box-shadow var(--hb-transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--hb-shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--hb-cream);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 24px; }

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hb-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--hb-serif);
  font-size: 1.125rem;
  color: var(--hb-brown);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--hb-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--hb-text-muted);
}

/* Blog Article Full */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--hb-gap-xl) var(--hb-gap);
}

.blog-article h2 {
  font-size: 1.75rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-article h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--hb-text-light);
  margin-bottom: 20px;
}

.blog-article ul {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}

.blog-article ul li {
  font-size: 1rem;
  color: var(--hb-text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hb-gap-lg);
}

.contact-form {
  background: var(--hb-white);
  padding: 40px;
  border-radius: var(--hb-radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  font-family: var(--hb-sans);
  font-size: 0.9375rem;
  color: var(--hb-text);
  background: var(--hb-cream);
  transition: border-color var(--hb-transition), box-shadow var(--hb-transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--hb-gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  font-family: var(--hb-sans);
  font-size: 0.9375rem;
  color: var(--hb-text);
  background: var(--hb-cream);
  appearance: none;
  cursor: pointer;
}

.contact-info {
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--hb-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--hb-text);
}

/* --- Footer --- */
.site-footer {
  background: var(--hb-brown);
  color: var(--hb-white);
  padding: var(--hb-gap-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hb-gap-lg);
}

.footer-brand .logo {
  color: var(--hb-white);
  margin-bottom: 16px;
  background: var(--hb-white);
  padding: 8px 14px;
  border-radius: var(--hb-radius-md);
  display: inline-flex;
}
.footer-brand .logo .logo-icon { background: var(--hb-gold); }
.footer-brand .logo img { filter: none; }

.footer-desc {
  font-size: 0.875rem;
  color: var(--hb-cream-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact {
  font-size: 0.8125rem;
  color: var(--hb-cream-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-contact a {
  color: var(--hb-gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--hb-gold); }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-white);
  transition: all var(--hb-transition);
}

.footer-social a:hover {
  background: var(--hb-gold);
  border-color: var(--hb-gold);
  color: var(--hb-white);
}

.footer-col-title {
  font-family: var(--hb-serif);
  font-size: 1rem;
  color: var(--hb-white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--hb-cream-dark);
  padding: 6px 0;
  transition: color var(--hb-transition);
}

.footer-links a:hover { color: var(--hb-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--hb-gap-lg);
  padding-top: var(--hb-gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--hb-cream-dark);
}

/* --- Page Hero (Sub-pages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--hb-cream);
  text-align: center;
}

.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .section-desc { margin: 0 auto; }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--hb-text-muted);
  padding: var(--hb-gap) 0;
}

.breadcrumb a { color: var(--hb-text-muted); }
.breadcrumb a:hover { color: var(--hb-gold); }
.breadcrumb .sep { color: var(--hb-border); }
.breadcrumb .current { color: var(--hb-text); font-weight: 500; }

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--hb-gap-lg);
}

.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: var(--hb-radius);
  font-size: 0.875rem;
  transition: all var(--hb-transition);
}

.pagination a {
  color: var(--hb-text);
  background: var(--hb-white);
  border: 1px solid var(--hb-border);
}

.pagination a:hover {
  background: var(--hb-brown);
  color: var(--hb-white);
  border-color: var(--hb-brown);
}

.pagination .active {
  background: var(--hb-brown);
  color: var(--hb-white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--hb-gap); }
  .story-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 48px 0; }
  .section--xl { padding: 64px 0; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding-top: 120px; }

  .hero-bg { width: 100%; clip-path: none; opacity: 0.3; }

  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 40px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 16px; }
  .collection-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .story-timeline { grid-template-columns: 1fr; }
}

/* --- Utility: Placeholder Images --- */
.placeholder-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--hb-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--hb-text-muted);
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
}

.placeholder-img .placeholder-icon {
  font-size: 2rem;
  color: var(--hb-gold);
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(var(--hb-gold) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* --- Product Color Placeholder Swatches --- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 30px);
  gap: 8px;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--hb-border);
  transition: transform var(--hb-transition);
}

.swatch:hover { transform: scale(1.15); }

/* --- Newsletter Signup --- */
.newsletter {
  background: var(--hb-cream-dark);
  padding: var(--hb-gap-lg) 0;
  text-align: center;
}

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

.newsletter-form .form-input {
  background: var(--hb-white);
}

/* --- Collection Banner --- */
.collection-banner {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.collection-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

/* --- Product Filter --- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--hb-border);
  margin-bottom: var(--hb-gap-lg);
}

.filter-tags {
  display: flex;
  gap: 8px;
}

.filter-tag {
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--hb-cream);
  color: var(--hb-text);
  cursor: pointer;
  transition: all var(--hb-transition);
  border: 1px solid var(--hb-border);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--hb-brown);
  color: var(--hb-white);
  border-color: var(--hb-brown);
}

/* --- Toast / Notification --- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--hb-brown);
  color: var(--hb-white);
  padding: 16px 24px;
  border-radius: var(--hb-radius);
  font-size: 0.875rem;
  box-shadow: 0 8px 24px var(--hb-shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--hb-transition);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--hb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-brown);
  box-shadow: 0 4px 16px var(--hb-shadow);
  cursor: pointer;
  opacity: 0;
  transition: all var(--hb-transition);
  z-index: 100;
  font-size: 1.25rem;
}

.scroll-top.visible {
  opacity: 1;
}

.scroll-top:hover {
  background: var(--hb-brown);
  color: var(--hb-white);
}
