/* ============================================================
   MAISON MUNA — Premium Design System
   Traiteur provençal · Marseille
   ============================================================ */

:root {
  /* Color ramps */
  --wine-900: #3B0E0E;
  --wine-700: #5A1414;
  --wine-500: #7A1F1F;
  --wine-300: #A52A2A;

  --rust-600: #B7410E;
  --rust-500: #C8552A;

  --gold-700: #8C7338;
  --gold-500: #C6A664;
  --gold-300: #E2D2A8;
  --gold-100: #F4ECDA;

  --cream-900: #C9B994;
  --cream-500: #E8DCC7;
  --cream-300: #F1E9D8;
  --cream-100: #F8F4EC;

  --ivory: #FBF9F5;
  --ivory-soft: #F5F1E8;

  --olive-700: #3F4D24;
  --olive-500: #556B2F;

  --ink-900: #1F1410;
  --ink-700: #2A1A14;
  --ink-500: #4A3A30;
  --muted: #7A6A5E;
  --line: rgba(122, 31, 31, 0.12);

  /* Typography */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  --font-mono: "Inter", monospace;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(31, 20, 16, 0.06);
  --shadow-sm: 0 6px 18px rgba(31, 20, 16, 0.08);
  --shadow-md: 0 14px 38px rgba(31, 20, 16, 0.12);
  --shadow-lg: 0 28px 70px rgba(31, 20, 16, 0.18);
  --shadow-gold: 0 14px 40px rgba(198, 166, 100, 0.28);

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.5s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--wine-500); color: var(--ivory); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  color: var(--wine-700);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--ink-500); }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section--cream { background: var(--cream-100); }
.section--ivory { background: var(--ivory-soft); }
.section--dark { background: var(--wine-900); color: var(--cream-100); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream-500); }
.section--dark p { color: rgba(248, 246, 242, 0.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rust-500);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.5;
}
.section--dark .eyebrow { color: var(--gold-500); }

.section-title { margin-bottom: 18px; }
.section-intro {
  max-width: 620px; margin-bottom: 64px;
  font-size: 1.05rem; color: var(--ink-500);
}
.section--dark .section-intro { color: rgba(248, 246, 242, 0.78); }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-intro { margin-left: auto; margin-right: auto; }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.35s var(--ease);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--wine-500); color: var(--ivory); }
.btn--primary:hover { background: var(--wine-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(251, 249, 245, 0.4); }
.btn--ghost:hover { background: var(--ivory); color: var(--wine-700); border-color: var(--ivory); transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: var(--ink-900); }
.btn--gold:hover { background: var(--gold-700); color: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { background: transparent; color: var(--wine-500); border-color: var(--wine-500); }
.btn--outline:hover { background: var(--wine-500); color: var(--ivory); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--sm { padding: 11px 22px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ============================ Header ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  background: transparent;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 249, 245, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-xs);
  padding: 14px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.5rem; color: var(--wine-700); letter-spacing: 0.06em;
  transition: color 0.3s var(--ease);
}
.brand__tag {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-500); margin-top: 5px; font-weight: 600;
  transition: color 0.3s var(--ease);
}
.site-header:not(.scrolled) .brand__name { color: var(--ivory); }
.site-header:not(.scrolled) .brand__tag { color: var(--gold-300); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__links a {
  font-size: 0.86rem; font-weight: 500;
  color: var(--ink-700); position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.site-header:not(.scrolled) .nav__links a { color: var(--ivory); }
.nav__links a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold-500);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--wine-500); }
.site-header:not(.scrolled) .nav__links a:hover { color: var(--gold-300); }
.nav__cta { margin-left: 6px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink-700); margin: 4px 0; transition: 0.3s var(--ease); }
.site-header:not(.scrolled) .menu-toggle span { background: var(--ivory); }

/* ============================ Hero ============================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(rgba(31, 14, 14, 0.5), rgba(31, 14, 14, 0.7)),
    url("https://images.pexels.com/photos/1279330/pexels-photo-1279330.jpeg?auto=compress&cs=tinysrgb&w=1920") center / cover;
  color: var(--ivory);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, transparent, rgba(31, 14, 14, 0.4));
  pointer-events: none;
}
.hero__inner { max-width: 780px; padding-top: 80px; position: relative; z-index: 2; }
.hero h1 { color: var(--ivory); margin-bottom: 24px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero__subtitle {
  font-size: 1.18rem; color: rgba(251, 249, 245, 0.9);
  margin-bottom: 40px; max-width: 580px; font-weight: 300;
}
.hero__eyebrow { color: var(--gold-300); }
.hero__eyebrow::before { background: var(--gold-300); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: var(--ivory); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0.7;
  z-index: 2;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 44px; background: currentColor;
  animation: scrollLine 2.2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative; padding: 200px 0 100px;
  background: linear-gradient(rgba(31, 14, 14, 0.55), rgba(31, 14, 14, 0.75)),
    url("https://images.pexels.com/photos/1279330/pexels-photo-1279330.jpeg?auto=compress&cs=tinysrgb&w=1920") center / cover;
  color: var(--ivory); text-align: center;
}
.page-hero h1 { color: var(--ivory); margin-bottom: 16px; font-weight: 400; }
.page-hero p { color: rgba(251, 249, 245, 0.88); max-width: 580px; margin: 0 auto; font-size: 1.05rem; font-weight: 300; }
.breadcrumb {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 20px;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--ivory); }

/* ============================ Cards ============================ */
.card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 12px; }
.card__body p { font-size: 0.94rem; flex: 1; }
.card__tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust-500); font-weight: 600; margin-bottom: 10px;
}

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

/* Service tile */
.service {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; color: var(--ivory);
  display: flex; align-items: flex-end;
  padding: 32px;
  transition: transform 0.5s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31, 14, 14, 0.88) 0%, rgba(31, 14, 14, 0.25) 55%, transparent 100%);
  z-index: 1; transition: opacity 0.4s var(--ease);
}
.service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service:hover img { transform: scale(1.08); }
.service:hover { transform: translateY(-4px); }
.service__content { position: relative; z-index: 2; }
.service__content h3 { color: var(--ivory); margin-bottom: 8px; }
.service__content p { color: rgba(251, 249, 245, 0.85); font-size: 0.88rem; }
.service__arrow {
  position: absolute; top: 24px; right: 24px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(251, 249, 245, 0.15); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); transition: all 0.4s var(--ease);
}
.service:hover .service__arrow { background: var(--gold-500); color: var(--ink-900); transform: rotate(-45deg); }
.service__arrow svg { width: 18px; height: 18px; }

/* Feature list */
.feature {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: none; }
.feature__icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream-100); color: var(--wine-500);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.feature:hover .feature__icon { background: var(--wine-500); color: var(--ivory); transform: translateY(-3px); }
.feature__icon svg { width: 24px; height: 24px; }
.feature h4 { font-family: var(--font-head); color: var(--wine-700); font-size: 1.18rem; margin-bottom: 6px; font-weight: 600; }
.feature p { font-size: 0.92rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat { padding: 20px 0; }
.stat__num {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-500); line-height: 1; font-weight: 500;
}
.stat__label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 12px; color: rgba(251, 249, 245, 0.7);
}

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
}
.process__step { text-align: center; padding: 24px; position: relative; }
.process__num {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--ivory); border: 1.5px solid var(--gold-500);
  color: var(--wine-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
  position: relative; z-index: 1;
  transition: all 0.4s var(--ease);
}
.process__step:hover .process__num { background: var(--wine-500); color: var(--ivory); border-color: var(--wine-500); transform: translateY(-4px); }
.process__step h4 { font-family: var(--font-head); color: var(--wine-700); margin-bottom: 8px; font-size: 1.15rem; font-weight: 600; }
.process__step p { font-size: 0.88rem; }

/* Testimonial */
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: "\201C"; position: absolute; top: 16px; left: 28px;
  font-family: var(--font-head); font-size: 5rem; color: var(--cream-500); line-height: 1;
}
.testimonial__body {
  font-family: var(--font-head); font-style: italic; color: var(--ink-700);
  margin-bottom: 28px; position: relative; z-index: 1; font-size: 1.05rem; line-height: 1.6;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-500), var(--rust-500));
  color: var(--ivory); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
}
.testimonial__author .name { font-weight: 600; color: var(--wine-700); font-size: 0.95rem; }
.testimonial__author .role { font-size: 0.82rem; color: var(--muted); }
.stars { color: var(--gold-500); margin-bottom: 16px; letter-spacing: 3px; font-size: 0.9rem; }

/* Gallery masonry */
.masonry { columns: 3; column-gap: 20px; }
.masonry__item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-lg);
  overflow: hidden; position: relative; cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.masonry__item img { width: 100%; transition: transform 0.8s var(--ease); }
.masonry__item:hover img { transform: scale(1.07); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31, 14, 14, 0.7), transparent 55%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: var(--ivory); z-index: 2;
  opacity: 0; transform: translateY(12px); transition: all 0.4s var(--ease);
}
.masonry__item:hover .masonry__caption { opacity: 1; transform: translateY(0); }
.masonry__caption h4 { color: var(--ivory); margin-bottom: 4px; font-size: 1.05rem; }
.masonry__caption span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-300); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 12, 8, 0.94);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s var(--ease); }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 28px; right: 36px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox__nav { position: absolute; color: #fff; font-size: 2.6rem; cursor: pointer; background: none; border: none; padding: 12px; line-height: 1; }
.lightbox__prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 28px; top: 50%; transform: translateY(-50%); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-head); font-size: 1.12rem; color: var(--wine-700); font-weight: 500;
}
.faq__q .icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-100); color: var(--wine-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: all 0.3s var(--ease); line-height: 1;
}
.faq__item.open .faq__q .icon { transform: rotate(45deg); background: var(--wine-500); color: var(--ivory); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__item.open .faq__a { max-height: 500px; }
.faq__a p { padding-bottom: 28px; font-size: 0.96rem; max-width: 720px; }

/* Forms */
.form { max-width: 760px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__grid--full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-size: 0.8rem; font-weight: 600; color: var(--ink-700);
  margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase;
}
.field label .req { color: var(--rust-500); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.96rem;
  padding: 15px 18px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; color: var(--ink-700);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wine-500);
  box-shadow: 0 0 0 4px rgba(122, 31, 31, 0.08);
}
.field textarea { resize: vertical; min-height: 140px; }
.field--full { grid-column: 1 / -1; }
.form__notice {
  padding: 18px 22px; border-radius: 12px; margin-bottom: 24px;
  background: rgba(85, 107, 47, 0.1); border: 1px solid rgba(85, 107, 47, 0.3);
  color: var(--olive-700); font-size: 0.92rem; display: none;
}
.form__notice.show { display: block; }

/* Multi-step quote */
.stepper {
  display: flex; justify-content: space-between; max-width: 760px;
  margin: 0 auto 56px; position: relative;
}
.stepper::before {
  content: ""; position: absolute; top: 20px; left: 5%; right: 5%; height: 2px;
  background: rgba(122, 31, 31, 0.12);
}
.stepper__progress {
  position: absolute; top: 20px; left: 0; height: 2px;
  background: var(--wine-500); transition: width 0.5s var(--ease);
}
.stepper__step { position: relative; z-index: 1; text-align: center; flex: 1; }
.stepper__dot {
  width: 42px; height: 42px; margin: 0 auto 10px;
  border-radius: 50%; background: var(--ivory); border: 2px solid rgba(122, 31, 31, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--muted); transition: all 0.4s var(--ease);
  font-size: 0.95rem;
}
.stepper__step.active .stepper__dot { background: var(--wine-500); color: var(--ivory); border-color: var(--wine-500); transform: scale(1.08); }
.stepper__step.done .stepper__dot { background: var(--olive-500); color: #fff; border-color: var(--olive-500); }
.stepper__label { font-size: 0.74rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.stepper__step.active .stepper__label { color: var(--wine-500); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.summary {
  background: var(--cream-100); border-radius: var(--radius-lg); padding: 32px;
  margin-bottom: 32px;
}
.summary h4 { font-family: var(--font-head); color: var(--wine-700); margin-bottom: 18px; font-weight: 600; }
.summary__row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px dashed rgba(122, 31, 31, 0.18); font-size: 0.94rem;
}
.summary__row:last-child { border-bottom: none; }
.summary__row span:first-child { color: var(--muted); }
.summary__row span:last-child { font-weight: 600; color: var(--ink-700); }

.form__actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--wine-700), var(--rust-600));
  color: var(--ivory); border-radius: var(--radius-xl);
  padding: 80px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-banner p { color: rgba(251, 249, 245, 0.88); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(198, 166, 100, 0.14);
}
.cta-banner::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.cta-banner::after { width: 260px; height: 260px; bottom: -100px; left: -60px; }

/* ============================ Footer ============================ */
.site-footer { background: var(--ink-900); color: rgba(251, 249, 245, 0.7); padding: 88px 0 32px; }
.site-footer .brand__name { color: var(--ivory); }
.site-footer .brand__tag { color: var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-col h5 { font-family: var(--font-head); color: var(--cream-500); font-size: 1.05rem; margin-bottom: 22px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(251, 249, 245, 0.7); }
.footer-col ul a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 14px; color: rgba(251, 249, 245, 0.7); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(251, 249, 245, 0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(251, 249, 245, 0.85);
  transition: all 0.35s var(--ease);
}
.social-row a:hover { background: var(--gold-500); color: var(--ink-900); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(251, 249, 245, 0.1); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(251, 249, 245, 0.55);
}

/* ============================ Floating buttons ============================ */
.floating { position: fixed; right: 24px; z-index: 90; display: flex; flex-direction: column; gap: 14px; }
.floating__btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}
.floating__btn:hover { transform: scale(1.1); }
.floating__btn--wa { background: #25D366; bottom: 24px; }
.floating__btn--call { background: var(--wine-500); bottom: 96px; }
.floating svg { width: 26px; height: 26px; }

/* Back to top */
.back-top {
  position: fixed; left: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--wine-500); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-md);
  border: none;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--wine-700); transform: translateY(-3px); }

/* Cookie banner */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--ink-900); color: rgba(251, 249, 245, 0.85);
  padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 0.88rem; color: rgba(251, 249, 245, 0.75); }
.cookie .btn { padding: 11px 24px; font-size: 0.85rem; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--wine-900); color: var(--ivory);
  padding: 96px 36px 40px;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 16px 0; border-bottom: 1px solid rgba(251, 249, 245, 0.12); }
.mobile-menu ul a {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--ivory);
  font-weight: 400;
}
.mobile-menu ul a:hover { color: var(--gold-300); }
.mobile-menu .btn { margin-top: 32px; }

/* AOS-like reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="zoom"].in { transform: scale(1); }

/* ============================ Boutique ============================ */
.shop-hero { padding: 200px 0 100px; background: linear-gradient(rgba(31, 14, 14, 0.5), rgba(31, 14, 14, 0.7)), url("https://images.pexels.com/photos/2649398/pexels-photo-2649398.jpeg?auto=compress&cs=tinysrgb&w=1920") center / cover; color: var(--ivory); text-align: center; }
.shop-hero h1 { color: var(--ivory); margin-bottom: 16px; font-weight: 400; }
.shop-hero p { color: rgba(251, 249, 245, 0.88); max-width: 600px; margin: 0 auto; font-size: 1.05rem; font-weight: 300; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 18px; margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.shop-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-tab {
  padding: 10px 20px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 600; color: var(--ink-700);
  cursor: pointer; transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.shop-tab:hover { border-color: var(--wine-500); color: var(--wine-500); }
.shop-tab.active { background: var(--wine-500); color: var(--ivory); border-color: var(--wine-500); }
.shop-count { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }

.product {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product__media {
  aspect-ratio: 1/1; overflow: hidden; position: relative;
  background: var(--cream-100);
}
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.product:hover .product__media img { transform: scale(1.08); }
.product__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 14px; border-radius: 999px;
  background: var(--wine-500); color: var(--ivory);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.product__badge--gold { background: var(--gold-500); color: var(--ink-900); }
.product__badge--olive { background: var(--olive-500); color: #fff; }
.product__wish {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(251, 249, 245, 0.92); backdrop-filter: blur(8px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine-500); transition: all 0.3s var(--ease);
}
.product__wish:hover { background: var(--wine-500); color: var(--ivory); transform: scale(1.08); }
.product__wish.active { background: var(--wine-500); color: var(--ivory); }
.product__wish.active svg { fill: currentColor; }
.product__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product__cat {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust-500); font-weight: 600; margin-bottom: 8px;
}
.product__name {
  font-family: var(--font-head); font-size: 1.2rem; color: var(--wine-700);
  margin-bottom: 6px; font-weight: 500;
}
.product__desc { font-size: 0.88rem; color: var(--ink-500); margin-bottom: 18px; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: var(--font-head); font-size: 1.3rem; color: var(--wine-700); font-weight: 600; }
.product__price small { font-size: 0.78rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.product__add {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wine-500); color: var(--ivory); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.product__add:hover { background: var(--gold-500); color: var(--ink-900); transform: rotate(90deg) scale(1.08); }
.product__add svg { width: 20px; height: 20px; }

/* Cart drawer */
.drawer {
  position: fixed; inset: 0; z-index: 180; pointer-events: none;
}
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(20, 12, 8, 0.6);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.4s var(--ease);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 100%; max-width: 440px;
  background: var(--ivory); transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__overlay { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head {
  padding: 24px 28px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__head h3 { font-size: 1.3rem; margin: 0; }
.drawer__close { background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--muted); line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.drawer__foot { padding: 24px 28px; border-top: 1px solid var(--line); background: var(--cream-100); }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.94rem; }
.drawer__row--total { font-size: 1.1rem; font-weight: 600; color: var(--wine-700); padding-top: 14px; border-top: 1px solid var(--line); }
.drawer__empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.drawer__empty svg { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--cream-900); }

.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item__img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--font-head); font-size: 1rem; color: var(--wine-700); font-weight: 600; margin-bottom: 4px; }
.cart-item__price { font-size: 0.85rem; color: var(--muted); }
.cart-item__qty {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
  font-size: 0.82rem;
}
.cart-item__qty button { background: none; border: none; cursor: pointer; color: var(--wine-500); font-size: 1rem; line-height: 1; padding: 0 4px; }
.cart-item__remove { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.2rem; line-height: 1; padding: 0; align-self: flex-start; }
.cart-item__remove:hover { color: var(--rust-500); }

/* Cart bubble */
.cart-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--wine-500); color: var(--ivory);
  padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); cursor: pointer;
  border: none; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  transition: all 0.35s var(--ease);
}
.cart-bubble:hover { background: var(--wine-700); transform: translateY(-3px); }
.cart-bubble__count {
  background: var(--gold-500); color: var(--ink-900);
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.cart-bubble__total { font-family: var(--font-head); font-weight: 600; }

/* Shop notice banner */
.shop-notice {
  background: linear-gradient(135deg, var(--cream-100), var(--gold-100));
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; gap: 20px; margin-bottom: 56px;
  border: 1px solid var(--gold-300);
}
.shop-notice__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-500); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.shop-notice h4 { font-family: var(--font-head); color: var(--wine-700); margin-bottom: 4px; font-weight: 600; }
.shop-notice p { font-size: 0.9rem; color: var(--ink-500); }

/* Product detail layout */
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.product-detail__gallery { display: flex; flex-direction: column; gap: 16px; }
.product-detail__main {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-md);
}
.product-detail__main img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-detail__thumb {
  border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.3s var(--ease);
}
.product-detail__thumb.active { border-color: var(--wine-500); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.product-detail__price { font-family: var(--font-head); font-size: 2rem; color: var(--wine-700); margin-bottom: 24px; font-weight: 600; }
.product-detail__desc { font-size: 1rem; line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.product-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.product-detail__meta { border-top: 1px solid var(--line); padding-top: 24px; }
.product-detail__meta dt { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.product-detail__meta dd { font-size: 0.94rem; color: var(--ink-700); margin-bottom: 18px; }

/* Account area placeholders */
.account-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.account-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.account-card__icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 20px;
  background: var(--cream-100); color: var(--wine-500);
  display: flex; align-items: center; justify-content: center;
}
.account-card__icon svg { width: 28px; height: 28px; }
.account-card h3 { margin-bottom: 10px; }
.account-card p { font-size: 0.9rem; margin-bottom: 20px; }

/* Coming soon pill */
.coming-soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gold-100); color: var(--gold-700);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--gold-300);
}
.coming-soin::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================ Mobile bottom nav ============================ */
.mobile-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: rgba(251, 249, 245, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(env(safe-area-inset-bottom, 0px) + 10px);
  display: none;
  justify-content: space-around;
}
.mobile-nav__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 6px 10px; border-radius: 10px;
  transition: color 0.3s var(--ease);
}
.mobile-nav__item svg { width: 22px; height: 22px; }
.mobile-nav__item.active, .mobile-nav__item:hover { color: var(--wine-500); }
.mobile-nav__item--cart { position: relative; }
.mobile-nav__item--cart .cart-bubble__count {
  position: absolute; top: -2px; right: 0; width: 18px; height: 18px; font-size: 0.68rem;
}

/* ============================ Responsive ============================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .masonry { columns: 2; }
  .section { padding: 88px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 24px; }
  .form__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .masonry { columns: 1; }
  .stepper__label { display: none; }
  .hero { background-attachment: scroll; min-height: 92vh; }
  .page-hero { padding: 160px 0 80px; }
  .cta-banner { padding: 56px 28px; }
  .cta-banner::before, .cta-banner::after { display: none; }
  .site-header { padding: 16px 0; }
  .site-header.scrolled { padding: 12px 0; }
  .brand__name { font-size: 1.25rem; }
  .nav__cta { display: none; }
  .mobile-nav { display: flex; }
  .back-top { bottom: 80px; left: 20px; }
  .floating { right: 20px; }
  .floating__btn--call { bottom: 80px; }
  .floating__btn--wa { bottom: 144px; }
  .cart-bubble { bottom: 80px; right: 20px; }
  .cookie { padding: 16px 20px; }
  .drawer__panel { max-width: 100%; }
  .product-detail__thumbs { grid-template-columns: repeat(3, 1fr); }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }
  .btn--lg { padding: 16px 28px; font-size: 0.92rem; }
}
