/* ======================================================
   ZEISKIN — Design System
   Palette : Crème / Terracotta / Charbon
   Typo    : Cormorant Garamond + DM Sans
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────── */
:root {
  /* Colors */
  --cream:        #FDFAF7;
  --blush:        #F5EDE6;
  --blush-dark:   #EDD9CE;
  --terracotta:   #C27B5A;
  --terracotta-d: #A8623F;
  --sand:         #E8D5C4;
  --charcoal:     #2C2220;
  --muted:        #9A8F8A;
  --white:        #FFFFFF;
  --border:       #EAE0D8;
  --success:      #6BAE75;
  --error:        #D96B6B;
  --wa-green:     #25D366;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --container:    1280px;
  --header-h:     72px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(44,34,32,.08);
  --shadow-md:    0 4px 16px rgba(44,34,32,.10);
  --shadow-lg:    0 12px 40px rgba(44,34,32,.14);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration:     0.3s;
}

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

/* ── Container ──────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.2; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { font-size: .95rem; color: var(--muted); line-height: 1.7; }

.section-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  font-size: .95rem;
  padding: 16px 28px;
  border-radius: 50px;
  letter-spacing: .02em;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #20c05b; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.4); }
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(253,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-logo img { height: 48px; width: auto; }
.header-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--charcoal);
}

.header-nav ul { display: flex; gap: 32px; align-items: center; }
.header-nav a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width .3s var(--ease);
}
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }

.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
  color: var(--charcoal);
}
.icon-btn:hover { background: var(--blush); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--terracotta);
  color: white;
  font-size: .65rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all .2s;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(44,34,32,.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--cream);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:hover { color: var(--terracotta); padding-left: 8px; border-color: var(--terracotta); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--blush);
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 40%, var(--blush-dark) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--terracotta);
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-image img,
.hero-image video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.search-result-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  background: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; padding: calc(var(--header-h) + 40px) 0 40px; }
  .hero-image { 
    position: relative; 
    width: 100%; 
    height: auto;
    aspect-ratio: 16/9;
    right: auto; top: auto; bottom: auto; 
    margin-top: 32px; 
    border-radius: 12px;
    overflow: hidden;
  }
  .hero-content { padding: 0 24px; }
}

/* ── Product Cards ──────────────────────────────────── */
.product-card {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--blush);
}
.product-card__img img {
  width: 100%; 
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(44,34,32,.85);
  padding: 16px;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.product-card:hover .product-card__overlay { transform: translateY(0); }
.product-card__overlay .btn { width: 100%; padding: 12px; font-size: .8rem; }

.product-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-new      { background: var(--terracotta); color: white; }
.badge-promo    { background: var(--charcoal); color: white; }
.badge-soldout  { background: var(--muted); color: white; }

.product-card__body { padding: 16px; }
.product-card__category {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card__price { display: flex; align-items: center; gap: 10px; }
.price-current { font-weight: 600; font-size: 1rem; color: var(--charcoal); }
.price-original { font-size: .85rem; color: var(--muted); text-decoration: line-through; }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 420px)  { .products-grid { grid-template-columns: 1fr; } }

/* ── Sections ───────────────────────────────────────── */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-divider {
  width: 60px; height: 1px;
  background: var(--terracotta);
  margin: 16px auto 0;
}

/* Alternating bg */
.section-light  { background: var(--white); }
.section-blush  { background: var(--blush); }
.section-cream  { background: var(--cream); }

/* ── Side Cart ──────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,34,32,.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.side-cart {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.side-cart.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
  color: var(--charcoal);
}
.cart-close:hover { background: var(--blush); }
.cart-close svg { width: 18px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  text-align: center;
  padding: 40px;
}
.cart-empty svg { width: 64px; opacity: .3; }
.cart-empty p { font-size: .9rem; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 80px; height: 96px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--blush);
}
.cart-item__img img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  background: var(--white);
}
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-size: .9rem; font-weight: 500; color: var(--charcoal); line-height: 1.3; }
.cart-item__variant { font-size: .75rem; color: var(--muted); }
.cart-item__price { font-size: .9rem; font-weight: 600; color: var(--charcoal); }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all .2s;
  background: var(--white);
}
.qty-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.qty-value { font-size: .9rem; font-weight: 500; min-width: 20px; text-align: center; }

.cart-item__remove { color: var(--muted); transition: color .2s; padding: 4px; }
.cart-item__remove:hover { color: var(--error); }
.cart-item__remove svg { width: 16px; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: .9rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cart-total span { font-size: 1rem; font-weight: 600; }
.cart-total .total-amount { font-size: 1.2rem; color: var(--terracotta); }
.cart-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── Toast Notifications ────────────────────────────── */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  right: 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 14px 20px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-size: .875rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  animation: slideIn .3s var(--ease) forwards, fadeOut .3s var(--ease) 2.7s forwards;
  max-width: 320px;
}
.toast-success { background: var(--success); }
.toast-error   { background: var(--error); }
.toast svg { width: 18px; flex-shrink: 0; }

@keyframes slideIn  { from { transform: translateX(120%); } to { transform: translateX(0); } }
@keyframes fadeOut  { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(120%); } }

/* ── WhatsApp FAB ───────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 800;
  transition: transform .3s var(--ease), box-shadow .3s;
  color: white;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
.wa-fab svg { width: 32px; height: 32px; }
.wa-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--charcoal);
  color: white;
  font-size: .75rem;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials { background: var(--blush); }
.testimonials-slider { display: flex; gap: 24px; overflow: hidden; }
.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #E8A838; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 400;
}
.testimonial-name { font-weight: 500; font-size: .875rem; color: var(--charcoal); }
.testimonial-location { font-size: .75rem; color: var(--muted); }

/* Slider controls */
.slider-wrapper  { position: relative; }
.slider-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  color: var(--charcoal);
}
.slider-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.slider-btn svg { width: 18px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  color: var(--muted);
}
.faq-item.open .faq-icon {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-answer p { padding-bottom: 20px; font-size: .9rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Categories Grid ────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .categories-grid { grid-template-columns: 1fr; } }

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.category-card__img {
  width: 100%; 
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
  background: var(--blush-dark);
}
.category-card:hover .category-card__img { transform: scale(1.05); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,34,32,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.category-card__info h3 { color: white; font-size: 1.6rem; margin-bottom: 4px; }
.category-card__info p  { color: rgba(255,255,255,.75); font-size: .8rem; }

/* ── Brand Story ────────────────────────────────────── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-story__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
}
.brand-story__image img { 
  width: 100%; 
  height: auto; 
  display: block;
}
.brand-story__content .section-label { margin-bottom: 16px; }
.brand-story__content h2 { margin-bottom: 24px; }
.brand-story__content p  { margin-bottom: 16px; }
.brand-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--terracotta); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

@media (max-width: 900px) {
  .brand-story { grid-template-columns: 1fr; gap: 40px; }
  .brand-story__image { aspect-ratio: auto; min-height: 250px; }
}

/* ── Scroll Animation ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Skeleton Loading ───────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--blush) 25%, var(--blush-dark) 50%, var(--blush) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-text { color: white; font-size: 2rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  color: rgba(255,255,255,.6);
}
.social-link:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(194,123,90,.1); }
.social-link svg { width: 16px; }

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Form Inputs ────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .8rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; letter-spacing: .03em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194,123,90,.12);
}
.form-textarea { min-height: 100px; resize: vertical; }

/* ── Search bar ─────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253,250,247,.97);
  z-index: 1300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-wrap { width: min(640px, 90%); }
.search-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--charcoal);
  background: transparent;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
}
.search-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  color: var(--charcoal);
}
.search-close:hover { border-color: var(--terracotta); color: var(--terracotta); }
.search-results { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.search-result-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px;
  border-radius: 8px;
  transition: background .2s;
  cursor: pointer;
}
.search-result-item:hover { background: var(--blush); }
