/* =====================================================================
   ATLAS BITES — Collection Escales
   Système de design de marque
   Marine #0E2240 · Or #C8932F · Crème #F5F0E6 · Vert basilic #6B8E4E
   ===================================================================== */

:root {
  --navy: #0E2240;
  --navy-soft: #16304f;
  --gold: #C8932F;
  --gold-light: #d9ab52;
  --cream: #F5F0E6;
  --cream-deep: #EDE6D6;
  --green: #6B8E4E;
  --ink: #1c2433;
  --muted: #6a7280;
  --line: rgba(14, 34, 64, 0.12);
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(14, 34, 64, 0.14);
  --shadow-sm: 0 6px 22px rgba(14, 34, 64, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.12; font-weight: 700; }

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(200,147,47,.32); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--ghost-light { background: transparent; border-color: rgba(245,240,230,.5); color: var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--navy); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.16em;
  color: var(--navy);
}
.brand__tag {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .22s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.cart-btn {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.cart-btn:hover { background: var(--navy-soft); }
.cart-btn__count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--sans);
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--cream);
}
.nav__burger { display: none; background: none; border: none; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 78% -10%, rgba(200,147,47,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0b1b33 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 96px 0 100px;
}
.hero__tag {
  color: var(--gold);
  letter-spacing: 0.34em;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  margin: 20px 0 8px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 1.16rem;
  color: rgba(245,240,230,.82);
  max-width: 30ch;
  margin: 18px 0 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: rgba(245,240,230,.78);
}
.hero__badges span { display: flex; align-items: center; gap: 8px; }
.hero__badges b { color: var(--gold); }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__pack {
  width: 100%;
  max-width: 540px;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0,0,0,.45);
  transform: rotate(-2deg);
  transition: transform .5s ease;
}
.hero__pack:hover { transform: rotate(0deg) translateY(-6px); }
.hero__stamp {
  position: absolute;
  top: 8%; right: 4%;
  width: 116px; height: 116px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(14,34,64,.55);
  transform: rotate(-12deg);
}
.hero__stamp b { font-family: var(--serif); font-size: 1.5rem; display: block; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.marquee__track { display: inline-block; animation: slide 26s linear infinite; }
.marquee__track span { padding: 0 26px; }
.marquee__track span::after { content: "✦"; margin-left: 26px; color: var(--navy-soft); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Mission / Vision ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 14px 0 0; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--gold);
}
.mv-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.mv-card p { color: var(--muted); }
.mv-card .mv-icon { font-size: 1.7rem; margin-bottom: 16px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.value { text-align: center; padding: 10px; }
.value .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); }
.value h4 { margin: 6px 0 8px; font-size: 1.18rem; }
.value p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Promise band ---------- */
.promise {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}
.promise blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.3;
}
.promise blockquote::before { content: "« "; color: var(--gold); }
.promise blockquote::after { content: " »"; color: var(--gold); }
.promise cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--sans); letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold); }

/* ---------- Story / route ---------- */
.story { background: var(--cream-deep); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-list { margin-top: 28px; display: grid; gap: 22px; }
.story-item { display: flex; gap: 16px; }
.story-item .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex: none; }
.story-item h4 { font-size: 1.16rem; }
.story-item p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Passport collection ---------- */
.passport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.dest:hover { transform: translateY(-5px); }
.dest__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.dest--active .dest__num { background: var(--gold); color: var(--navy); }
.dest--soon .dest__num { border: 2px dashed var(--muted); color: var(--muted); }
.dest h4 { font-size: 1.24rem; }
.dest p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.dest__flag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 12px; font-weight: 600; }
.dest--active .dest__flag { color: var(--green); }
.dest--soon .dest__flag { color: var(--muted); }

.collection-figure {
  margin: 0 0 44px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.collection-figure img { width: 100%; display: block; }

/* ---------- Featured product CTA ---------- */
.feature { background: var(--navy); color: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.feature-grid img { max-width: 320px; margin: 0 auto; border-radius: 16px; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.feature h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); }
.feature .eyebrow { display: block; margin-bottom: 12px; }
.feature p { color: rgba(245,240,230,.8); margin: 16px 0 26px; max-width: 46ch; }
.feature__price { font-family: var(--serif); font-size: 2rem; color: var(--gold); margin-bottom: 22px; }

/* =====================================================================
   PRODUCT PAGE
   ===================================================================== */
.product { padding-top: 56px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.gallery { position: sticky; top: 100px; }
.gallery__main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.gallery__main img { max-height: 520px; width: auto; }
.gallery__thumbs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.gallery__thumbs button {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  flex: 1 1 76px;
  max-width: 110px;
  transition: border-color .18s ease;
}
.gallery__thumbs button.is-active { border-color: var(--gold); }
.gallery__thumbs img { max-height: 88px; margin: 0 auto; width: auto; }

.pdp__breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.pdp__breadcrumb a:hover { color: var(--gold); }
.pdp h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 6px 0; }
.pdp__flavour { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-bottom: 14px; }
.pdp__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.tag {
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; padding: 6px 14px; border-radius: 999px;
  background: var(--cream-deep); color: var(--navy);
}
.tag--green { background: rgba(107,142,78,.16); color: var(--green); }
.pdp__desc { color: var(--muted); margin-bottom: 26px; }
.pdp__price { font-family: var(--serif); font-size: 2.2rem; color: var(--navy); }
.pdp__price small { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); font-weight: 500; }

.format-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.format-opt {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
  text-align: left;
}
.format-opt.is-active { border-color: var(--gold); box-shadow: 0 6px 18px rgba(200,147,47,.18); }
.format-opt .fo-name { font-weight: 600; color: var(--navy); }
.format-opt .fo-size { font-size: 0.85rem; color: var(--muted); }
.format-opt .fo-price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); margin-top: 6px; }

.qty-row { display: flex; align-items: center; gap: 18px; margin: 24px 0; }
.qty {
  display: inline-flex; align-items: center;
  border: 1.6px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}
.qty button { background: none; border: none; width: 44px; height: 46px; font-size: 1.3rem; cursor: pointer; color: var(--navy); }
.qty button:hover { background: var(--cream-deep); }
.qty input { width: 50px; text-align: center; border: none; font-size: 1.05rem; font-weight: 600; background: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp__story {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 32px;
}
.pdp__story h3 { font-size: 1.3rem; margin-bottom: 14px; }
.route {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 18px;
}
.route__pt { text-align: center; font-size: 0.82rem; color: var(--muted); }
.route__pt .pin { width: 16px; height: 16px; border-radius: 50%; margin: 0 auto 8px; }
.route__pt .pin--navy { background: var(--navy); }
.route__pt .pin--gold { background: var(--gold); }
.route__line { flex: 1; border-top: 2px dashed var(--navy); opacity: .5; margin: 0 6px 18px; }

.spec-list { display: grid; gap: 12px; }
.spec-list div { display: flex; gap: 12px; }
.spec-list b { color: var(--navy); min-width: 130px; }
.spec-list span { color: var(--muted); }

/* Nutrition + ingredients */
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.nutri { width: 100%; border-collapse: collapse; }
.nutri td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.nutri td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.nutri tr:last-child td { border-bottom: none; }
.ingredients { color: var(--muted); font-size: 0.98rem; }

/* =====================================================================
   CART DRAWER
   ===================================================================== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(14,34,64,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 90;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 1.4rem; }
.drawer__close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.drawer__empty span { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 16px; }
.drawer__total b { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }

.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 62px; border-radius: 8px; background: var(--white); padding: 5px; }
.cart-line__info { flex: 1; }
.cart-line__info h4 { font-family: var(--sans); font-size: 0.96rem; font-weight: 600; color: var(--navy); }
.cart-line__info small { color: var(--muted); }
.cart-line__price { font-weight: 600; color: var(--navy); }
.cart-line__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-line__qty button { width: 26px; height: 26px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; cursor: pointer; }
.cart-line__remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.82rem; text-decoration: underline; }

/* =====================================================================
   CHECKOUT
   ===================================================================== */
.checkout { padding: 50px 0 90px; }
.checkout h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.checkout__lead { color: var(--muted); margin-bottom: 40px; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 44px; align-items: start; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 24px; }
.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.form-card .step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 700;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field select {
  font-family: var(--sans);
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.98rem;
  background: var(--cream);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field input.invalid { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: 0.78rem; display: none; }
.field input.invalid + .err { display: block; }

.pay-note { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-top: 16px; }
.pay-badge { display: inline-flex; gap: 6px; align-items: center; background: rgba(107,142,78,.14); color: var(--green); padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }

.summary { position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.summary h3 { font-size: 1.3rem; margin-bottom: 18px; }
.summary__line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary__line img { width: 52px; border-radius: 6px; background: var(--cream); padding: 4px; }
.summary__line .sl-info { flex: 1; font-size: 0.9rem; }
.summary__line .sl-info b { display: block; color: var(--navy); font-family: var(--sans); }
.summary__line .sl-info small { color: var(--muted); }
.summary__line .sl-price { font-weight: 600; color: var(--navy); }
.summary__totals { margin: 16px 0; }
.summary__totals .row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--muted); font-size: 0.95rem; }
.summary__totals .row--grand { border-top: 1.5px solid var(--line); margin-top: 8px; padding-top: 14px; color: var(--navy); font-size: 1.2rem; }
.summary__totals .row--grand b { font-family: var(--serif); font-size: 1.5rem; }
.summary__free { font-size: 0.82rem; color: var(--green); margin-top: 4px; }

.checkout-empty { text-align: center; padding: 80px 20px; }
.checkout-empty span { font-size: 3rem; display: block; margin-bottom: 16px; }

/* Confirmation */
.confirm { text-align: center; max-width: 560px; margin: 0 auto; padding: 70px 20px; }
.confirm__check {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; margin: 0 auto 26px;
  animation: pop .4s ease;
}
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.confirm h1 { font-size: 2.4rem; margin-bottom: 12px; }
.confirm p { color: var(--muted); margin-bottom: 8px; }
.confirm__order { display: inline-block; background: var(--cream-deep); padding: 10px 22px; border-radius: 999px; font-weight: 600; color: var(--navy); letter-spacing: 0.08em; margin: 16px 0 28px; }
.confirm__passport { background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 26px; margin-top: 30px; }
.confirm__passport .eyebrow { display: block; margin-bottom: 8px; }
.confirm__passport p { color: rgba(245,240,230,.82); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy); color: rgba(245,240,230,.78); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand__name, .site-footer h4 { color: var(--cream); }
.site-footer h4 { font-family: var(--sans); font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; color: var(--gold); }
.footer-col p { font-size: 0.92rem; max-width: 30ch; margin-top: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-news { display: flex; gap: 8px; margin-top: 14px; }
.footer-news input { flex: 1; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(245,240,230,.2); background: rgba(245,240,230,.06); color: var(--cream); }
.footer-news input::placeholder { color: rgba(245,240,230,.5); }
.footer-news button { padding: 11px 18px; }
.footer-bottom { border-top: 1px solid rgba(245,240,230,.14); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; letter-spacing: 0.04em; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--navy); color: var(--cream);
  padding: 14px 24px; border-radius: 999px;
  box-shadow: var(--shadow); z-index: 200;
  font-size: 0.94rem; display: flex; align-items: center; gap: 10px;
  transition: transform .3s ease;
}
.toast.is-show { transform: translateX(-50%) translateY(0); }
.toast b { color: var(--gold); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 920px) {
  .hero__inner, .mv-grid, .story-grid, .feature-grid, .product-grid, .checkout-grid, .info-cols { grid-template-columns: 1fr; }
  .hero__inner { padding: 60px 0 70px; gap: 36px; }
  .hero__visual { order: -1; }
  .values { grid-template-columns: 1fr; }
  .passport-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { position: static; }
  .summary { position: static; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 20px 24px;
    gap: 18px; border-bottom: 1px solid var(--line);
  }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 540px) {
  .passport-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .format-options, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
