/* ==========================================================================
   LUMEN — Boutique di Moda · Demo Portfolio
   Identità: minimal fashion-editorial, grigio perla / nero / rosso ciliegia,
   solo sans (Syne + Space Grotesk), angoli vivi. Nessun cerchio, nessun oro.
   ========================================================================== */

:root {
  --paper: #f7f7f5;
  --paper-2: #ecece7;
  --ink: #141414;
  --ink-2: #232323;
  --accent: #c92a33;
  --muted: #6e6e69;
  --line: rgba(20, 20, 20, 0.14);
  --line-strong: rgba(20, 20, 20, 0.85);
  --font-display: "Syne", "Arial Black", sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.14);
  --header-h: 68px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 300;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons (angoli vivi, mai dorati) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn-block { width: 100%; }

.btn-black {
  background: var(--ink);
  color: var(--paper);
}
.btn-black:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-sm { padding: 9px 16px; font-size: 10px; letter-spacing: 0.16em; }

.link-underline {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 4px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0.35); }

/* ---------- Header (minimale, sempre chiaro) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: var(--paper);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.08);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1320px, 94%);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.brand-dot { color: var(--accent); }
.brand-tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav { display: flex; gap: 34px; }
.primary-nav a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.3s;
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 8px 12px;
  border-radius: 0;
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.cart-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.cart-toggle:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 99px;
}
.cart-count[hidden] { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0 11px;
}
.nav-toggle span {
  height: 1.8px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(4.3px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-4.3px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  flex-direction: column;
  gap: 6px;
  padding: 32px 8% 48px;
  overflow-y: auto;
  z-index: 110;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.mobile-menu nav a:hover { color: var(--accent); padding-left: 10px; }
.mobile-lang { margin-top: 24px; font-size: 13px; letter-spacing: 0.15em; color: var(--muted); display: flex; gap: 12px; align-items: center; }
.mobile-lang button { background: none; border: none; color: var(--accent); font-size: 13px; letter-spacing: 0.1em; }

/* ---------- Hero (spaccato, allineato a sinistra) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(24px, 6vw, 90px) 70px;
  animation: heroFade 1.1s var(--ease) both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.kicker-mark {
  width: 9px;
  height: 9px;
  background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 12ch;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
  margin-top: 24px;
  max-width: 44ch;
  font-size: 16px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 70vh;
  background: var(--ink-2);
}
.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(0.9);
  animation: heroImg 1.4s var(--ease) both;
}
@keyframes heroImg {
  from { transform: scale(1.06); filter: grayscale(0.9) blur(6px); }
  to { transform: scale(1); filter: grayscale(0.9) blur(0); }
}
.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }

.section-head { text-align: left; margin-bottom: 54px; }
.section-head .section-sub { text-align: left; }

.section-kicker {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 1px;
}

.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-sub {
  max-width: 60ch;
  margin-top: 18px;
  font-size: 15.5px;
  color: var(--muted);
}

/* ---------- Collezione ---------- */
.collezione { background: var(--paper); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  animation: cardIn 0.5s var(--ease) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 16px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.product-card:hover .product-media img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.product-cat {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.product-price {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.size-select {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px 6px 0;
  color: var(--ink);
  cursor: pointer;
}
.size-select:focus { outline: none; border-color: var(--accent); }

.col-note {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Atelier ---------- */
.atelier { background: var(--paper-2); }

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.atelier-media {
  margin: 0;
  height: 560px;
  background: var(--ink-2);
  overflow: hidden;
}
.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: transform 1.2s var(--ease), filter 0.6s;
}
.atelier-media:hover img { transform: scale(1.04); filter: grayscale(0); }

.atelier-text p:not(.section-kicker) {
  color: #4a4a46;
  margin-top: 20px;
  font-size: 15.5px;
  max-width: 56ch;
}

.atelier-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.atelier-facts li { display: flex; flex-direction: column; gap: 4px; }
.atelier-facts strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.atelier-facts span {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Lookbook ---------- */
.lookbook { background: var(--paper); }

.lookbook-list {
  width: min(1320px, 94%);
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.look-item {
  position: relative;
  margin: 0;
  height: clamp(300px, 46vh, 480px);
  overflow: hidden;
  background: var(--ink-2);
}
.look-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75);
  transition: transform 1.3s var(--ease), filter 0.7s;
}
.look-item:hover img { transform: scale(1.05); filter: grayscale(0); }
.look-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.look-item figcaption span { position: relative; z-index: 1; }
.look-item figcaption::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.look-item:hover figcaption::after { transform: scaleX(0); }
.look-item figcaption span { transition: color 0.6s; }
.look-item:hover figcaption span { color: var(--accent); }

/* ---------- Newsletter ---------- */
.newsletter {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
}
.newsletter-inner { text-align: center; max-width: 640px; }
.newsletter .section-kicker { color: rgba(247, 247, 245, 0.6); }
.newsletter .section-kicker::before { background: var(--accent); }
.newsletter .section-title { color: var(--paper); }
.newsletter-inner > p:not(.section-kicker) { color: rgba(247, 247, 245, 0.7); margin-top: 18px; font-size: 15px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  justify-content: center;
}
.news-field { position: relative; flex: 1; max-width: 380px; text-align: left; }
.news-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(247, 247, 245, 0.4);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 2px;
  transition: border-color 0.3s;
}
.news-field input::placeholder { color: rgba(247, 247, 245, 0.35); }
.news-field input:focus { outline: none; border-color: var(--accent); }
.news-field .field-error {
  display: none;
  position: absolute;
  left: 0;
  bottom: -24px;
  font-size: 12px;
  color: #ff6b72;
  letter-spacing: 0.02em;
}
.news-field.is-invalid input { border-color: #ff6b72; }
.news-field.is-invalid .field-error { display: block; }

.newsletter-form .btn {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.newsletter-form .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.news-note { margin-top: 22px; font-size: 12px; color: rgba(247, 247, 245, 0.4); font-style: italic; }

/* ---------- Contatti ---------- */
.contatti { background: var(--paper); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: stretch;
}

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-card {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 26px 24px;
  background: var(--paper);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.contact-card h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.contact-card a { color: #3c3c38; transition: color 0.3s; }
.contact-card a:hover { color: var(--accent); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-3px); }

.map-wrap {
  border: 1px solid var(--line);
  position: relative;
  min-height: 420px;
  background: var(--paper-2);
  overflow: hidden;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}
.map-wrap:hover iframe { filter: none; }
.map-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  transition: background 0.3s;
}
.map-link:hover { background: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(247, 247, 245, 0.14);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin: 0 0 14px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p:not(.footer-logo) { color: rgba(247, 247, 245, 0.6); font-size: 14px; max-width: 280px; }

.footer-col h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; color: rgba(247, 247, 245, 0.6); font-size: 14px; margin-bottom: 10px; }
.footer-col a { transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-col a:hover { color: var(--paper); padding-left: 6px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 28px;
  font-size: 12.5px;
  color: rgba(247, 247, 245, 0.45);
}
.footer-credits { margin: 0; }

/* ---------- Carrello ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(2px);
}
.cart-overlay[hidden] { display: none; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: min(400px, 100vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -20px 0 60px rgba(20, 20, 20, 0.25);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 22px; font-weight: 700; color: var(--ink); }
.cart-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  transition: all 0.3s;
}
.cart-close:hover { background: var(--ink); color: var(--paper); }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--muted); font-size: 14.5px; font-style: italic; }

.cart-items { display: grid; gap: 18px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  background: var(--paper-2);
  filter: grayscale(0.7);
}
.ci-info { display: flex; flex-direction: column; }
.ci-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink); }
.ci-meta { font-size: 12px; color: var(--muted); margin: 2px 0 8px; }
.ci-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.ci-qty { display: flex; align-items: center; gap: 10px; }
.ci-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  transition: all 0.25s;
}
.ci-qty button:hover { background: var(--ink); color: var(--paper); }
.ci-qty span { min-width: 20px; text-align: center; font-size: 14px; font-weight: 500; }
.ci-price { font-size: 14px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.ci-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  padding: 0;
  align-self: flex-start;
  transition: color 0.3s;
}
.ci-remove:hover { color: var(--accent); }

.cart-foot {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.cart-note { margin: 14px 0 0; font-size: 11.5px; color: var(--muted); font-style: italic; line-height: 1.6; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 260;
  background: var(--ink);
  color: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: 0;
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: toastIn 0.4s var(--ease);
}
.toast[hidden] { display: none; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 52vh; order: -1; }
  .hero-copy { padding-top: 40px; padding-bottom: 64px; }
  .hero-title { max-width: 14ch; }

  .atelier-grid { grid-template-columns: 1fr; gap: 44px; }
  .atelier-media { height: 420px; }

  .product-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 76px 0; }
  .header-inner { width: 94%; }

  .hero-media { min-height: 44vh; }
  .hero-title { font-size: clamp(34px, 9vw, 46px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .product-grid { grid-template-columns: 1fr; }
  .atelier-media { height: 320px; }
  .atelier-facts { grid-template-columns: 1fr 1fr; }
  .look-item { height: 300px; }

  .newsletter-form { flex-direction: column; }
  .news-field { max-width: none; }
  .newsletter-form .btn { width: 100%; }

  .contact-cards { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-drawer { width: 100vw; }
}
