:root {
  --orange: #ff6900;
  --orange-soft: #ff8a33;
  --orange-deep: #d9560a;
  --ink: #14110f;
  --ink-2: #2a2522;
  --grey: #8a817a;
  --line: #e9e2da;
  --cream: #f7f2ec;
  --cream-2: #f1e9df;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.display { font-family: var(--serif); font-weight: 500; letter-spacing: 0.5px; }

.kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 22px;
}
.kicker.light { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 38px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  background: none;
}
.btn-solid { background: var(--orange); color: #fff; }
.btn-solid:hover { background: var(--ink); color: #fff; }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-line-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-line-light:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn-block { width: 100%; padding: 14px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--orange);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 50px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.tb-welcome { font-weight: 500; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 50px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header.scrolled { padding: 14px 50px; border-bottom-color: var(--line); }
.brand { justify-self: center; }
.brand img { height: 30px; transition: height 0.4s var(--ease); }
.header.scrolled .brand img { height: 26px; }

.nav { display: flex; gap: 30px; align-items: center; }
.nav-right { justify-self: end; }
.nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }
.cart { display: inline-flex; align-items: center; gap: 7px; }
.cart-count {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  min-width: 17px; height: 17px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #14110f;
  overflow: hidden;
}

/* ---- Cinematic campaign slideshow ---- */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 590;
  background: #14110f;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  z-index: 1;
}
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
}
.hero-slide.is-active img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.06); } }
.hero-dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dots button {
  width: 10px; height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: transparent;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.hero-dots button.is-active { background: var(--orange); opacity: 1; width: 28px; border-radius: 5px; }
/* ---- Hero product slider ---- */
.hero-head {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: clamp(28px, 5vh, 60px);
}
.hero-head .eyebrow {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 18px;
}
.hero-head h1 {
  font-size: clamp(36px, 5.5vw, 70px);
  line-height: 1.04;
  font-weight: 500;
  color: var(--ink);
}

.slider {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.slide-track {
  display: flex;
  width: max-content;
  align-items: flex-end;
  gap: clamp(48px, 8vw, 120px);
  padding: 0 clamp(24px, 4vw, 60px);
  animation: slideLR 38s linear infinite;
}
.slider:hover .slide-track { animation-play-state: paused; }
@keyframes slideLR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.slide img {
  height: clamp(220px, 42vh, 380px);
  width: auto;
  filter: drop-shadow(0 22px 34px rgba(20,17,15,0.18));
  transition: transform 0.5s var(--ease);
}
.slide:hover img { transform: translateY(-10px) scale(1.03); }
.slide figcaption { margin-top: 26px; display: flex; flex-direction: column; gap: 6px; }
.s-name { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); line-height: 1; }
.s-meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.s-price { font-size: 15px; letter-spacing: 1px; color: var(--orange); margin-top: 2px; }

.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  background: radial-gradient(circle, rgba(255,105,0,0.12) 0%, rgba(255,105,0,0) 60%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-monogram {
  position: absolute;
  font-family: var(--serif);
  font-size: 46vh;
  font-weight: 500;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -10px;
  user-select: none;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; max-width: 760px; }
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.rule {
  display: block;
  width: 64px; height: 1px;
  background: var(--orange);
  margin: 34px auto;
}
.lede {
  font-size: 17px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  color: #cfc5bc;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(20,17,15,0.45);
  z-index: 3;
}
.scroll-hint::after {
  content: ""; display: block;
  width: 1px; height: 34px;
  background: linear-gradient(rgba(20,17,15,0.45), transparent);
  margin: 10px auto 0;
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(0.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
}
.marquee-track i { color: var(--orange); font-style: normal; font-size: 12px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- Campaign banners ---------- */
.banners { display: flex; flex-direction: column; }
.banner-full { width: 100%; overflow: hidden; }
.banner-full img { width: 100%; height: auto; display: block; }

/* ---------- Sections ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: 130px 40px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 80px; }
.section-head h2 { font-size: clamp(38px, 5vw, 62px); line-height: 1.05; margin-bottom: 22px; }
.section-sub { color: var(--grey); font-size: 16px; }

/* ---------- Collection grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-5 { grid-template-columns: repeat(5, 1fr); gap: 24px; }
.grid-5 .card-media { padding: 30px 18px; }
.grid-5 .card-media img { height: 240px; }
.grid-5 .card-body { padding: 24px 16px 28px; }
.grid-5 .card-body h3 { font-size: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.candles-banner { width: 100%; max-width: 760px; margin: 0 auto 26px; }
@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -30px rgba(20,17,15,0.35);
  border-color: transparent;
}
.card-media {
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, #fff 100%);
  padding: 54px 40px;
  overflow: hidden;
}
.card-media img {
  height: 340px;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06) translateY(-4px); }
.badge {
  position: absolute;
  top: 22px; left: 22px;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-deep);
  border: 1px solid var(--orange);
  padding: 5px 12px;
  background: rgba(255,255,255,0.7);
}
.card-body { padding: 34px 30px 38px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.card-notes {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.card-body h3 { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1; }
.card-size { color: var(--grey); font-size: 13px; margin: 10px 0 14px; }
.card-desc { color: var(--ink-2); font-size: 13.5px; line-height: 1.7; margin: 0 0 18px; }
.card-price { font-size: 17px; margin-top: auto; margin-bottom: 24px; letter-spacing: 1px; }
.card-price .was { color: var(--grey); text-decoration: line-through; margin-right: 8px; }
.card-price .now { color: var(--ink); }

/* ---------- Maison ---------- */
.maison {
  background: var(--cream);
  color: var(--ink);
  padding: 140px 40px;
}
.maison-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.maison-text h2 { font-size: clamp(40px, 5vw, 66px); line-height: 1.03; margin-bottom: 30px; }
.maison-text p { color: var(--grey); margin-bottom: 22px; max-width: 480px; }
.maison-text .btn { margin-top: 16px; }
.maison-figures { display: flex; flex-direction: column; gap: 8px; }
.figure {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.figure:last-child { border-bottom: 1px solid var(--line); }
.figure-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 2px;
}
.figure h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 6px 0 8px;
}
.figure p { color: var(--grey); font-size: 14.5px; }

/* ---------- Skincare band ---------- */
.band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 150px 24px;
}
.band-inner { max-width: 560px; margin: 0 auto; }
.band .kicker { color: #ffd9bd; }
.band h2 { font-size: clamp(40px, 6vw, 70px); margin-bottom: 20px; }
.band p { color: #f3e7dd; margin-bottom: 36px; font-size: 16px; }

/* ---------- Promotions ---------- */
.promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 40px;
}
.promo {
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}
.promo:last-child { border-right: none; }
.promo-mark { color: var(--orange); font-size: 26px; display: block; margin-bottom: 16px; }
.promo h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.promo p { color: var(--grey); font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ---------- Newsletter ---------- */
.news { background: var(--cream); padding: 120px 40px; text-align: center; }
.news-inner { max-width: 540px; margin: 0 auto; }
.news h3 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 16px; }
.news p { color: var(--grey); margin-bottom: 34px; }
.news-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.news-form input {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--orange); }
.news-msg { min-height: 18px; margin-top: 14px; font-size: 13px; letter-spacing: 0.5px; color: var(--orange-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--cream-2); color: var(--ink-2); padding: 90px 50px 36px; }
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 26px; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: var(--grey); }
.footer-col h5 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.9; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 11px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.socials { margin-top: 18px; display: flex; gap: 18px; }
.socials a { margin-bottom: 0; }
.footer-base {
  max-width: 1240px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.legal .kicker { text-align: center; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  text-align: center;
  margin-bottom: 16px;
}
.legal .lead { text-align: center; color: var(--grey); margin-bottom: 56px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal p { color: var(--ink-2); margin-bottom: 18px; font-size: 15.5px; }
.legal address { font-style: normal; color: var(--ink); line-height: 1.9; margin: 8px 0 18px; }
.legal a.inline { color: var(--orange); }
.legal ul { list-style: none; margin: 0 0 18px; }
.legal li { color: var(--ink-2); padding: 4px 0 4px 18px; position: relative; }
.legal li::before { content: "\2022"; color: var(--orange); position: absolute; left: 0; }
.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 34px; left: 50%;
  transform: translateX(-50%) translateY(160px);
  opacity: 0;
  visibility: hidden;
  background: var(--ink);
  color: #fff;
  padding: 15px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 100;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), visibility 0.5s;
  border-bottom: 2px solid var(--orange);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }

/* ---------- Checkout ---------- */
.checkout-wrap { max-width: 1180px; margin: 0 auto; padding: 64px 40px 110px; }
.checkout-head { text-align: center; margin-bottom: 50px; }
.checkout-head .kicker { color: var(--orange); }
.checkout-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 56px); }
.checkout-grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 60px; align-items: start; }
.co-section { margin-bottom: 34px; }
.co-section h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.co-field { margin-bottom: 14px; }
.co-field label { display: block; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.co-field input, .co-field select {
  width: 100%; border: 1px solid var(--line); background: #fff;
  padding: 13px 14px; font-family: var(--sans); font-size: 14px; color: var(--ink);
}
.co-field input:focus, .co-field select:focus { outline: none; border-color: var(--orange); }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.summary { background: var(--cream); padding: 34px 30px; position: sticky; top: 100px; }
.summary h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 22px; }
.summary-item { display: flex; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.summary-item img { width: 66px; height: 96px; object-fit: contain; mix-blend-mode: multiply; }
.si-name { font-family: var(--serif); font-size: 21px; line-height: 1; }
.si-meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin: 6px 0 10px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); background: #fff; }
.qty button { width: 32px; height: 32px; border: none; background: none; cursor: pointer; font-size: 16px; color: var(--ink); }
.qty span { width: 38px; text-align: center; font-size: 14px; }
.summary-line { display: flex; justify-content: space-between; padding: 11px 0; font-size: 14px; color: var(--ink-2); }
.summary-line.muted { color: var(--grey); font-size: 12.5px; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; border-top: 1px solid var(--line); }
.summary-total .lbl { font-family: var(--serif); font-size: 22px; }
.summary-total .amt { font-family: var(--serif); font-size: 26px; }
.co-note { font-size: 11.5px; color: var(--grey); text-align: center; margin-top: 16px; line-height: 1.6; }

.pay-wrap { max-width: 460px; margin: 0 auto; }
.pay-wrap .summary { position: static; margin-bottom: 24px; }
.pay-wrap .co-place { margin-top: 0; }

.confirm { max-width: 620px; margin: 0 auto; text-align: center; }
.confirm-badge { background: var(--orange); color: #fff; padding: 56px 40px; }
.confirm-badge h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; }
.confirm-body { padding: 40px 20px 0; }
.confirm-body p { color: var(--ink-2); margin-bottom: 14px; }
.confirm-order { color: var(--orange); font-weight: 500; letter-spacing: 1px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.grid .card:nth-child(2) { transition-delay: 0.12s; }
.grid .card:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .hero-glow, .scroll-hint::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .maison-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .topbar { padding: 9px 18px; justify-content: center; }
  .tb-contact { display: none; }
  .header { grid-template-columns: 1fr auto 1fr; padding: 14px 16px; }
  .nav-left, .nav-right a:not(.cart) { display: none; }
  .nav-right { gap: 16px; }
  .brand img, .header.scrolled .brand img { height: 22px; }
  .nav a { font-size: 10px; letter-spacing: 1.5px; }
  .section { padding: 80px 22px; }
  .grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .maison, .news, .footer { padding-left: 22px; padding-right: 22px; }
  .band { padding: 100px 22px; }
  .hero-slideshow { aspect-ratio: 3 / 4; }
  .promos { grid-template-columns: 1fr; gap: 44px; padding: 64px 22px; }
  .promo { border-right: none; padding: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
  .hero-monogram { font-size: 30vh; }
  .checkout-wrap { padding: 40px 22px 80px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
  .summary { position: static; }
}
