/* ============================================================
   MARGARIDA STUDIO FLORAL — style.css
   Palette : Orange #E8914A · Lilas #D4A0E8 · Crème #FAF7F4 · Texte #2D2D2D
   Fonts   : Playfair Display (titres) · Lato (corps)
============================================================ */

/* ===== VARIABLES ===== */
:root {
  --orange:        #E8914A;
  --orange-dk:     #D4793A;
  --orange-lt:     #F5D3B8;
  --rose:          #D4A0E8;
  --rose-dk:       #B87ED4;
  --creme:         #FAF7F4;
  --creme-dk:      #F0EAE3;
  --text:          #2D2D2D;
  --text-md:       #5A5A5A;
  --text-lt:       #8C8C8C;
  --dark:          #2A2320;
  --white:         #FFFFFF;

  --font-h:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-b:        'Lato', system-ui, -apple-system, sans-serif;
  --font-accent:   'Germania One', var(--font-h);

  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  --shadow-sm:     0 2px 12px rgba(45, 45, 45, 0.07);
  --shadow:        0 6px 28px rgba(45, 45, 45, 0.10);
  --shadow-lg:     0 12px 50px rgba(45, 45, 45, 0.14);

  --transition:    0.3s ease;
  --transition-lg: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h:         72px;
  --container:     1200px;
  --section-y:     100px;
}


/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--rose);
  color: var(--text);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--creme-dk); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-dk); }


/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: var(--section-y);
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; }

em { font-style: italic; color: var(--orange); }

p {
  font-size: 1rem;
  color: var(--text-md);
  line-height: 1.75;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 145, 74, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-title {
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--rose-dk);
  font-family: var(--font-accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-lt);
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 145, 74, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 145, 74, 0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--text);
  border: 2px solid rgba(45, 45, 45, 0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.3);
  border-color: var(--rose);
  color: var(--rose-dk);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  gap: 8px;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline svg { width: 18px; height: 18px; }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.34);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm {
  font-size: 0.8rem;
  padding: 9px 20px;
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}


/* ===== SCROLL ANIMATIONS ===== */
.fade-in,
.slide-up,
.slide-left,
.slide-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in            { transform: translateY(10px); }
.slide-up           { transform: translateY(48px); }
.slide-left         { transform: translateX(-48px); }
.slide-right        { transform: translateX(48px); }

.fade-in.visible,
.slide-up.visible,
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translate(0);
}


/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--creme-dk), var(--orange-lt));
}
.img-placeholder svg { width: 60%; max-width: 200px; opacity: 0.8; }
.img-placeholder span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lt);
}


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250, 247, 244, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.97);
  border-color: rgba(232, 145, 74, 0.15);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(12deg) scale(1.05); }

.nav-logo-text {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-md);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--orange); }
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 3px 15px rgba(232, 145, 74, 0.3);
}
.nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--orange-dk) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 145, 74, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1100;
  position: relative;
}
.hamburger:hover { background: rgba(232, 145, 74, 0.08); }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.45);
  backdrop-filter: blur(3px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(180deg, #fdfaf6 0%, #f7efe7 100%);*/
  background: var(--creme);
  overflow: hidden;
  padding: calc(var(--nav-h) + 32px) 24px 88px;
}

.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

/* Grande fleur déco (droite) */
.hero-deco {
  display: none !important;
}

/* Petite fleur déco (bas-gauche) */
.hero-deco-sm {
  display: none !important;
}

.hero-content {
  position: relative;
  top: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-dk);
  background: rgba(232, 145, 74, 0.08);
  border: 1px solid rgba(232, 145, 74, 0.14);
  box-shadow: none;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-logo-shell {
  width: min(100%, 460px);
  margin: 0 auto 1.75rem;
  padding: 0;
  background: none;
}

.hero-logo-shell::before,
.hero-logo-shell::after {
  content: none;
}

.hero-logo {
  width: 100%;
  margin-inline: auto;
  object-fit: contain;
  filter: none;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-title em {
  color: var(--rose-dk);
  font-family: var(--font-accent);
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 2.25rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-md);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-lt);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(45,45,45,0.15);
  animation: scrollBob 2.2s ease-in-out infinite;
  transition: color var(--transition), border-color var(--transition);
}
.hero-scroll:hover { color: var(--orange); border-color: var(--orange); }
.hero-scroll svg { width: 18px; height: 18px; }

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


/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Image frame */
.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
}

.about-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap .img-placeholder {
  background: linear-gradient(160deg, var(--creme-dk) 0%, var(--orange-lt) 60%, var(--rose) 100%);
}

.about-frame-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--rose);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* Text */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-text .section-tag { margin-bottom: 0.6rem; }
.about-text .section-title { margin-bottom: 1.5rem; }

.about-quote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.about-text p { margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 0; }

/* Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--creme-dk);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-dk);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-lt);
}


/* ============================================================
   BOUTIQUE EN LIGNE
============================================================ */
.boutique-online {
  background: var(--creme);
}

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.boutique-visual {
  position: relative;
}

.boutique-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.boutique-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-content {
  display: flex;
  flex-direction: column;
}

.boutique-content .section-tag { margin-bottom: 0.6rem; }
.boutique-content .section-title { margin-bottom: 1.5rem; }
.boutique-content p { margin-bottom: 0; }

.boutique-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.boutique-pill {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
}

.boutique-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}


/* ============================================================
   COMMANDE
============================================================ */
.order {
  background:
    radial-gradient(circle at top right, rgba(212, 160, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--creme) 100%);
}

.order-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.order-info-card,
.order-form-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.order-info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,247,244,0.98) 100%);
  border: 1px solid rgba(45, 45, 45, 0.08);
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-info-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.order-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  position: relative;
  padding-left: 22px;
  color: var(--text-md);
  line-height: 1.7;
}

.order-steps li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232, 145, 74, 0.14);
}

.order-note {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
}

.order-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dk);
}

.order-note p {
  margin: 0;
  color: var(--text-md);
  line-height: 1.65;
}

.order-form-wrap {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(45, 45, 45, 0.08);
  padding: 44px;
}

.order-mode {
  border: 0;
  padding: 0;
  margin: 0;
}

.order-mode legend {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.order-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-mode-option {
  display: block;
  position: relative;
}

.order-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-mode-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 2px solid rgba(45, 45, 45, 0.12);
  background: rgba(250,247,244,0.65);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.order-mode-copy strong {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text);
}

.order-mode-copy small {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-md);
}

.order-mode-option input:checked + .order-mode-copy {
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(37, 211, 102, 0.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.12);
  transform: translateY(-2px);
}

.order-mode-option input:focus-visible + .order-mode-copy {
  outline: 3px solid rgba(37, 211, 102, 0.18);
  outline-offset: 2px;
}

.order-conditional[hidden] {
  display: none !important;
}

.order-gift-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  background: rgba(250,247,244,0.75);
  font-weight: 700;
  cursor: pointer;
}

.order-gift-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #25d366;
  cursor: pointer;
}

.order-gift-toggle span {
  color: var(--text);
}

.order-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(232, 145, 74, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(212, 160, 232, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--creme) 100%);
}

body.modal-open {
  overflow: hidden;
}

.order-page-shell {
  padding: 28px 0 56px;
}

.order-page-back {
  position: sticky;
  top: 18px;
  left: 0;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(45, 45, 45, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.order-page-back:hover,
.order-page-back:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 145, 74, 0.4);
  box-shadow: 0 16px 34px rgba(45, 45, 45, 0.1);
}

.order-page-section {
  padding-top: 8px;
}

.delivery-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.delivery-popup[hidden] {
  display: none !important;
}

.delivery-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 24, 18, 0.48);
  backdrop-filter: blur(6px);
}

.delivery-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,244,0.98) 100%);
  box-shadow: 0 30px 80px rgba(45, 45, 45, 0.22);
}

.delivery-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.07);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.delivery-popup__close:hover,
.delivery-popup__close:focus-visible {
  background: rgba(45, 45, 45, 0.12);
  transform: scale(1.03);
}

.delivery-popup__tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 145, 74, 0.12);
  color: var(--orange-dk);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-popup__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.delivery-popup__desc {
  margin: 0 0 24px;
  max-width: 56ch;
  color: var(--text-md);
  line-height: 1.7;
}

.delivery-popup__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.delivery-popup__map {
  display: block;
  width: 280px;
  height: auto;
  max-width: 48%;
  flex-shrink: 0;
  border-radius: 18px;
  border: 1px solid rgba(45, 45, 45, 0.08);
}

.delivery-popup__grid {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  max-width: 280px;
  min-width: 0;
  gap: 10px;
}

.delivery-popup__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-left: 6px solid transparent;
  background: rgba(255,255,255,0.78);
}

.delivery-popup__item--z1 { border-left-color: #4f81bd; }
.delivery-popup__item--z2 { border-left-color: #4fb8a0; }
.delivery-popup__item--z3 { border-left-color: #eaa64a; }
.delivery-popup__item--z4 { border-left-color: #de7c33; }
.delivery-popup__item--z5 { border-left-color: #c1374f; }

.delivery-popup__item strong {
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text);
}

.delivery-popup__item span {
  flex-shrink: 0;
  min-width: 68px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  color: #168847;
  font-weight: 700;
  text-align: center;
}

.delivery-popup__note {
  margin: 18px 0 0;
  color: var(--text-md);
  line-height: 1.65;
}

.delivery-popup__note--highlight {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(232, 145, 74, 0.12);
  color: var(--text);
}

.delivery-popup__extra {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.delivery-popup__extra-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-md);
}

.delivery-popup__extra-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-md);
  line-height: 1.6;
}

.delivery-popup__action {
  margin-top: 24px;
}


/* ============================================================
   SERVICES
============================================================ */
.services {
  background: linear-gradient(180deg, var(--creme) 0%, #fff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  grid-column: span 4;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 45, 45, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 145, 74, 0.28);
}

.service-card--featured {
  grid-column: span 8;
  background: linear-gradient(180deg, #fff 0%, rgba(250, 247, 244, 0.92) 100%);
  border-color: rgba(212, 160, 232, 0.3);
}
.service-card--featured:hover { border-color: rgba(184, 126, 212, 0.45); }

.service-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: rgba(250, 247, 244, 0.94);
  color: var(--orange-dk);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.08);
}

.service-icon {
  display: none;
}

.service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--creme-dk);
}

.service-card--featured .service-media {
  aspect-ratio: 16 / 9;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-card > :not(.service-media):not(.service-badge):not(.service-icon) {
  padding-inline: 28px;
}

.service-card h3 {
  padding-top: 24px;
  font-size: 1.34rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card > p {
  font-size: 0.95rem;
  color: var(--text-md);
  margin-bottom: 1.35rem;
  line-height: 1.7;
  flex: 1;
}

.service-card > .service-link {
  padding-bottom: 30px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  transition: color var(--transition), letter-spacing var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--orange-dk); letter-spacing: 0.06em; }


/* ============================================================
   PRO TEASER
============================================================ */
.pro-teaser {
  background: linear-gradient(135deg, rgba(232, 145, 74, 0.08) 0%, rgba(242, 196, 206, 0.12) 100%);
  border-top: 1px solid var(--creme-dk);
  border-bottom: 1px solid var(--creme-dk);
  padding-block: 64px;
}

.pro-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pro-teaser-text {
  flex: 1;
  min-width: 260px;
}

.pro-teaser-text .section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.pro-teaser-text p {
  font-size: 0.95rem;
  color: var(--text-md);
  max-width: 560px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pro-teaser-inner {
    flex-direction: column;
    text-align: center;
  }
  .pro-teaser-text p { margin-inline: auto; }
}


/* ============================================================
   GALLERY
============================================================ */
.gallery {
  background: var(--creme-dk);
  padding-bottom: calc(var(--section-y) + 24px);
}

.gallery .section-header { margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
  padding-inline: clamp(10px, 4vw, 50px);
  margin-bottom: 52px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    var(--angle, 135deg),
    var(--c1) 0%,
    var(--c2) 55%,
    var(--c3) 100%
  );
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-placeholder {
  transform: scale(1.07);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 35, 32, 0.62) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.gallery-footer .btn-outline {
  border-color: rgba(45, 45, 45, 0.3);
}
.gallery-footer .btn-outline:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}


/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.required { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--creme-dk);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C8C8C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 145, 74, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E05252;
  box-shadow: 0 0 0 4px rgba(224, 82, 82, 0.10);
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #C0392B;
  font-weight: 700;
}
.form-error.visible { display: block; }

/* Submit */
#submitBtn {
  font-size: 0.95rem;
  padding: 16px 32px;
  position: relative;
}

.contact-whatsapp-note {
  margin: -6px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-md);
}

/* Success */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(107, 168, 90, 0.1);
  border: 2px solid rgba(107, 168, 90, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.form-success[hidden] { display: none; }
.form-success svg { width: 24px; height: 24px; color: #4C9A3C; flex-shrink: 0; margin-top: 2px; }
.form-success p { color: #2D6026; font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Info card */
.contact-info-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--creme-dk);
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(232, 145, 74, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg {
  width: 20px; height: 20px;
  color: var(--orange);
  stroke: var(--orange);
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-md);
  margin: 0;
  line-height: 1.5;
}

.info-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  transition: color var(--transition);
}
.info-link:hover { color: var(--orange-dk); }

.info-note {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--text-lt);
}

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px dashed var(--creme-dk);
}

.map-inner {
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-dk) 100%);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.map-inner svg { width: 36px; height: 36px; margin-bottom: 4px; }
.map-inner p { font-size: 0.88rem; color: var(--text-md); margin: 0; line-height: 1.4; }


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(250, 247, 244, 0.75);
  position: relative;
}

.footer-wave {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.footer-wave svg { display: block; }

.footer-body {
  padding-block: 70px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
.footer-logo-text {
  font-family: var(--font-h);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--creme);
}
.footer-logo-text small {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-b);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.5);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250, 247, 244, 0.6);
  margin: 0;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-lt);
  transition: color var(--transition);
}
.footer-ig:hover { color: var(--orange); }
.footer-ig svg { width: 18px; height: 18px; }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 244, 0.08);
  color: var(--orange-lt);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-link:hover {
  background: rgba(232, 145, 74, 0.2);
  color: var(--orange);
  transform: translateY(-2px);
}
.footer-social-link svg { width: 18px; height: 18px; }

/* Cols */
.footer-col h4 {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.45);
  margin-bottom: 18px;
  color: var(--orange-lt);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(250, 247, 244, 0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange-lt); }

.footer-address address p,
.footer-address .footer-hours {
  font-size: 0.88rem;
  color: rgba(250, 247, 244, 0.7);
  line-height: 1.6;
  margin: 0 0 8px;
}

.footer-site-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-lt);
  transition: color var(--transition);
}
.footer-site-link:hover { color: var(--orange); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 244, 0.08);
  padding-block: 20px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 247, 244, 0.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(250, 247, 244, 0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(250, 247, 244, 0.75); }

.footer-dev-link {
  color: rgba(250, 247, 244, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-dev-link:hover { color: rgba(250, 247, 244, 0.75); }


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .boutique-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .order-page-back {
    margin-left: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    margin-inline: 0;
  }
  .service-card { grid-column: span 1; }
  .service-card--featured { grid-column: 1 / -1; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 2; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}


/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --section-y: 64px;
  }

  .section {
    overflow-x: clip;
  }

  /* Nav mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--creme);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    z-index: 950;
    transition: right var(--transition-lg);
    box-shadow: -8px 0 40px rgba(45, 45, 45, 0.18);
    padding-block: 80px;
  }
  .nav-links.open { right: 0; }

  .nav-overlay { display: block; }

  .nav-link {
    font-size: 1rem;
    color: var(--text);
  }

  .nav-cta {
    margin-top: 0.5rem;
    padding: 13px 28px !important;
    font-size: 0.95rem !important;
  }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 24px) 20px 76px;
  }

  .hero-content {
    top: 0;
    max-width: 100%;
  }

  .hero-tag { letter-spacing: 0.14em; }
  .hero-logo-shell {
    width: min(100%, 380px);
    margin-bottom: 1.5rem;
  }
  .hero-subtitle { max-width: 620px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(280px, 80vw); justify-content: center; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { order: -1; max-width: 400px; margin-inline: auto; width: 100%; }
  .about-img-wrap { aspect-ratio: 4 / 3; }

  /* Boutique */
  .boutique-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .boutique-visual { order: -1; width: 100%; }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .order-info-card,
  .order-form-wrap {
    padding: 28px 22px;
  }

  .order-mode-grid {
    grid-template-columns: 1fr;
  }

  .order-page-shell {
    padding-top: 18px;
  }

  .order-page-back {
    top: 12px;
    margin-left: 16px;
    margin-bottom: 12px;
  }

  .delivery-popup {
    padding: 14px;
  }

  .delivery-popup__dialog {
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .delivery-popup__body {
    flex-direction: column;
  }

  .delivery-popup__map {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .delivery-popup__grid {
    width: 100%;
    max-width: none;
  }

  .about-stats { gap: 24px; }
  .stat-number { font-size: 1.6rem; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .service-card,
  .service-card--featured { grid-column: span 1; }
  .service-card > :not(.service-media):not(.service-badge):not(.service-icon) {
    padding-inline: 24px;
  }
  .service-card h3 { padding-top: 22px; }
  .service-card > .service-link { padding-bottom: 24px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 8px;
    padding-inline: 16px;
  }
  .gallery-item--wide { grid-column: 1 / -1; }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-overlay { opacity: 1; }

  /* Contact */
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-info-card { padding: 28px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ============================================================
   RESPONSIVE — SMALL (max 480px)
============================================================ */
@media (max-width: 480px) {
  .hero {
    padding: calc(var(--nav-h) + 20px) 16px 72px;
  }

  .hero-tag {
    width: min(100%, 320px);
    padding: 10px 14px;
    letter-spacing: 0.12em;
  }
  .hero-logo-shell {
    width: min(100%, 300px);
    margin-bottom: 1.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--wide { grid-column: auto; }
  .gallery-item--tall { grid-row: auto; }

  .about-stats { flex-direction: column; gap: 16px; }
}


/* ============================================================
   ACCESSIBILITY — REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-in, .slide-up, .slide-left, .slide-right {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================================
   PAGES LÉGALES (mentions-legales.html · politique-de-confidentialite.html)
============================================================ */

.legal-header {
  padding-block: calc(var(--nav-h) + 60px) 52px;
  text-align: center;
  background: linear-gradient(135deg, var(--creme) 0%, rgba(212, 160, 232, 0.1) 100%);
  border-bottom: 1px solid var(--creme-dk);
}

.legal-header .section-tag { margin-bottom: 1rem; }

.legal-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.legal-header h1 em {
  color: var(--rose-dk);
  font-family: var(--font-accent);
}

.legal-header p {
  font-size: 0.95rem;
  color: var(--text-lt);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 2.5rem;
  transition: color var(--transition), gap var(--transition);
}
.legal-back:hover { color: var(--orange-dk); gap: 10px; }

.legal-content {
  max-width: 780px;
  margin-inline: auto;
  padding: 64px clamp(20px, 5vw, 60px) 100px;
}

.legal-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--text);
  margin-top: 2.8rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rose);
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-content li { margin-bottom: 0.3rem; }

.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--orange-dk); }

.legal-placeholder {
  background: rgba(232, 145, 74, 0.12);
  color: var(--orange-dk);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 0.88em;
  font-style: italic;
  border: 1px dashed var(--orange-lt);
}
