
/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-tap-highlight-color: transparent; }

:root {
  --black:  #080603;
  --deep:   #120c04;
  --or:     #c8a04a;
  --or2:    #e8cF8a;
  --text:   #f0e8d8;
  --muted:  rgba(240,232,216,.4);
  --line:   rgba(200,160,74,.2);
  --bg:     #f5ede0;
  --bg2:    #ede0cc;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--deep);
  overflow-x: hidden;
}

/* ─── CURSOR DOT ─── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--or); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .1s;
  mix-blend-mode: multiply;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
nav.solid {
  background: rgba(8,6,3,.96);
  backdrop-filter: blur(20px);
  padding: .9rem 4rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex; align-items: baseline; gap: .6rem;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--or); letter-spacing: 3px;
}
.brand-sep { color: var(--muted); font-size: .9rem; }
.brand-sub {
  font-size: .6rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(240,232,216,.35);
}

.nav-links {
  display: flex; align-items: center; gap: 2.8rem; list-style: none;
}
.nav-links a {
  font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(240,232,216,.55); text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--or2); }
.nav-cta {
  padding: .55rem 1.5rem !important;
  border: 1px solid rgba(200,160,74,.5) !important;
  color: var(--or) !important;
  border-radius: 2px;
  transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--or) !important; color: var(--black) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 1px; background: var(--or); transition: .3s; }

/* ─── HERO ─── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=90')
    center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,6,3,.6) 0%,
      rgba(8,6,3,.3) 45%,
      rgba(8,6,3,.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--or); opacity: .7; }
.hero-eyebrow span {
  font-size: .62rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--or); font-weight: 300;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 300; color: #fff;
  line-height: .9; letter-spacing: 2px;
  margin-bottom: .4rem;
}
h1 em {
  display: block; font-style: italic; font-weight: 300;
  color: var(--or2); font-size: .6em; letter-spacing: 8px;
  margin-top: .5rem;
}

.hero-tagline {
  margin: 2rem 0 3rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem; letter-spacing: 1.5px; font-weight: 300;
  line-height: 1.7; max-width: 380px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-solid {
  display: inline-block; padding: .9rem 2.5rem;
  background: var(--or); color: var(--black);
  font-size: .7rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-solid:hover { background: var(--or2); transform: translateY(-2px); }

.btn-line {
  display: inline-block; padding: .9rem 2.5rem;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7);
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all .3s;
}
.btn-line:hover { border-color: var(--or); color: var(--or2); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-scroll span { font-size: .58rem; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── IDENTITY STRIP ─── */
.strip {
  background: var(--deep);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; overflow: hidden;
}
.strip-item {
  display: flex; align-items: center; gap: .8rem;
  color: var(--muted); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
}
.strip-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--or); }

/* ─── SECTION BASE ─── */
section { padding: 8rem 4rem; }

.s-label {
  font-size: .6rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--or); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.s-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--deep);
}
.s-title em { font-style: italic; color: #8a6030; }

/* ─── MENU ─── */
#menu { background: var(--deep); padding: 8rem 4rem; }
#menu .s-label { color: var(--or); }
#menu .s-label::after { background: rgba(200,160,74,.15); }
#menu .s-title { color: var(--text); }

.menu-head { max-width: 900px; margin: 0 auto 3rem; }

/* tab system */
.tabs {
  display: flex; gap: 0;
  margin-top: 2.5rem; margin-bottom: 0;
  border-bottom: 1px solid rgba(200,160,74,.15);
}
.tab {
  padding: .8rem 1.8rem;
  font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(240,232,216,.3); background: none; border: none;
  cursor: pointer; transition: all .3s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab:hover { color: rgba(240,232,216,.6); }
.tab.on { color: var(--or2); border-bottom-color: var(--or); }

.panel { display: none; }
.panel.on { display: block; }

/* menu rows */
.menu-rows { max-width: 900px; margin: 0 auto; }

.menu-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(200,160,74,.08);
  gap: 2rem;
  transition: opacity .2s;
}
.menu-row:hover { opacity: .75; }
.menu-row:last-child { border-bottom: none; }

.row-left {}
.row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--text); font-weight: 400;
  letter-spacing: .5px;
}
.row-desc {
  font-size: .75rem; color: var(--muted); margin-top: .2rem; letter-spacing: .5px;
}
.row-dots {
  flex: 1; border-bottom: 1px dotted rgba(200,160,74,.18);
  margin-bottom: .3rem;
}
.row-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--or); letter-spacing: 1px;
  white-space: nowrap;
}

/* lot */
.lot-box {
  max-width: 900px; margin: 2.5rem auto 0;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(200,160,74,.3);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(200,160,74,.07), transparent);
}
.lot-label { font-size: .58rem; letter-spacing: 5px; text-transform: uppercase; color: var(--or); margin-bottom: .5rem; }
.lot-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text); font-weight: 300; }
.lot-note { font-size: .75rem; color: var(--muted); margin-top: .4rem; }
.lot-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--or); line-height: 1; text-align: right; }
.lot-price small { font-size: 1rem; display: block; text-align: right; color: var(--muted); font-family: 'Outfit', sans-serif; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; }

/* patisseries grid */
.pat-rows { max-width: 900px; margin: 0 auto; }

/* jus */
.jus-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 2.5rem 2.5rem;
  border: 1px solid rgba(200,160,74,.2);
  border-radius: 3px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.jus-text .jus-label { font-size: .58rem; letter-spacing: 5px; text-transform: uppercase; color: var(--or); margin-bottom: .7rem; }
.jus-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--text); font-weight: 300; margin-bottom: .8rem; }
.jus-list { font-size: .82rem; color: var(--muted); line-height: 2; }
.jus-cta {
  margin-top: 1.5rem; display: inline-block;
  padding: .75rem 2rem;
  border: 1px solid rgba(200,160,74,.4); color: var(--or);
  font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all .3s;
}
.jus-cta:hover { background: var(--or); color: var(--black); }

/* ─── LIVRAISON ─── */
#livraison { background: var(--bg2); }

.livraison-grid {
  max-width: 900px; margin: 3rem auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.livraison-card {
  padding: 2rem;
  border: 1px solid rgba(18,12,4,.12);
  border-radius: 3px; background: var(--bg);
  transition: border-color .3s;
}
.livraison-card:hover { border-color: rgba(200,160,74,.4); }
.lcard-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.lcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; margin-bottom: .5rem;
}
.lcard-text { font-size: .82rem; color: #6b5030; line-height: 1.8; }
.lcard-price {
  margin-top: 1rem; display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: #8a5020;
}
.lcard-highlight {
  grid-column: span 2;
  background: var(--deep); border-color: rgba(200,160,74,.25);
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.lcard-highlight .lcard-title { color: var(--text); }
.lcard-highlight .lcard-text { color: var(--muted); }
.lcard-highlight .lcard-price { color: var(--or); }

.livraison-note {
  max-width: 900px; margin: 1.5rem auto 0;
  font-size: .75rem; color: #8a7060; letter-spacing: .3px;
  line-height: 1.7; text-align: center;
}

/* ─── COMMANDER ─── */
#commander { background: var(--deep); }
#commander .s-label { color: var(--or); }
#commander .s-label::after { background: rgba(200,160,74,.15); }
#commander .s-title { color: var(--text); }

.cmd-grid {
  max-width: 900px; margin: 3rem auto 0;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start;
}

.cmd-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--text); font-weight: 300;
  margin-bottom: 2rem;
}
.info-block { margin-bottom: 1.5rem; }
.info-block-label {
  font-size: .58rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--or); margin-bottom: .4rem;
}
.info-block-val {
  font-size: .88rem; color: rgba(240,232,216,.6); line-height: 1.6;
}
.info-block-val a { color: var(--or2); text-decoration: none; }
.info-block-val a:hover { color: var(--or); }

form { display: flex; flex-direction: column; gap: 1rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: flex; flex-direction: column; gap: .4rem;
}
.field-lbl {
  font-size: .6rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(240,232,216,.35);
}
input, select, textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .88rem;
  padding: .85rem 1rem;
  outline: none; width: 100%;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
}
select option { background: #1c1208; }
input::placeholder, textarea::placeholder { color: rgba(240,232,216,.2); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(200,160,74,.5);
  background: rgba(200,160,74,.04);
}
textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  padding: 1rem; background: var(--or); color: var(--black);
  border: none; border-radius: 2px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  transition: background .3s, transform .2s;
}
.submit-btn:hover { background: var(--or2); transform: translateY(-1px); }

.form-ok {
  display: none; text-align: center; padding: 3rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--or); font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: #040302;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid rgba(200,160,74,.1);
}
.f-brand {}
.f-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--or); letter-spacing: 3px; font-weight: 300;
}
.f-brand-sub { font-size: .6rem; letter-spacing: 4px; color: rgba(240,232,216,.2); text-transform: uppercase; margin-top: .3rem; }
.f-brand-desc { font-size: .78rem; color: rgba(240,232,216,.3); line-height: 1.8; margin-top: 1.2rem; }

.f-col-title { font-size: .6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 1.2rem; }
.f-links { display: flex; flex-direction: column; gap: .7rem; }
.f-links a { font-size: .8rem; color: rgba(240,232,216,.3); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--or2); }

.f-bottom {
  grid-column: 1/-1;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,160,74,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.f-copy { font-size: .7rem; color: rgba(240,232,216,.18); }
.f-phone a { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--or); text-decoration: none; letter-spacing: 2px; }

/* ─── CALL BUBBLE ─── */
.call-bubble {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  display: flex; align-items: center; gap: .7rem;
  background: var(--or); color: var(--black);
  padding: .9rem 1.6rem; border-radius: 40px;
  font-size: .72rem; font-weight: 500; letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(200,160,74,.35);
  transition: transform .2s, background .2s;
}
.call-bubble:hover { transform: translateY(-3px); background: var(--or2); }
.call-bubble svg { width: 15px; height: 15px; }
@keyframes pulse { 0%,100%{box-shadow:0 8px 40px rgba(200,160,74,.35)} 50%{box-shadow:0 8px 50px rgba(200,160,74,.55)} }
.call-bubble { animation: pulse 3s ease-in-out infinite; }

/* ─── RESPONSIVE TABLETTE ─── */
@media (max-width: 900px) {
  /* nav */
  nav { padding: 1rem 1.5rem; }
  nav.solid { padding: .75rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; inset: 0; top: 0; padding-top: 80px;
    background: rgba(4,3,2,.99);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 490;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 3px; color: rgba(240,232,216,.7); }
  .nav-cta { font-size: 1.1rem !important; padding: .7rem 2rem !important; }
  .burger { display: flex; }
  .burger span { width: 28px; height: 2px; }

  /* strip : défilement horizontal */
  .strip {
    padding: 1rem 1.5rem;
    justify-content: flex-start;
    overflow-x: auto; gap: 2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .strip::-webkit-scrollbar { display: none; }
  .strip-item { flex-shrink: 0; font-size: .72rem; }

  /* sections */
  section { padding: 5rem 1.5rem; }
  #menu { padding: 5rem 1.5rem; }

  /* menu rows */
  .menu-row { padding: 1.1rem 0; gap: .5rem; }
  .row-dots { display: none; }
  .row-price { font-size: 1.1rem; }

  /* tabs */
  .tabs { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; padding: .8rem 1.2rem; font-size: .7rem; }

  /* lot */
  .lot-box {
    grid-template-columns: 1fr;
    gap: 1.2rem; text-align: center; padding: 1.5rem;
  }
  .lot-price { text-align: center; }

  /* livraison */
  .livraison-grid { grid-template-columns: 1fr; }
  .lcard-highlight { grid-column: span 1; flex-direction: column; }

  /* commande */
  .cmd-grid { grid-template-columns: 1fr; gap: 3rem; }
  .field-row { grid-template-columns: 1fr; }

  /* jus */
  .jus-wrap { flex-direction: column; }

  /* footer */
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .f-bottom { flex-direction: column; align-items: flex-start; }

  /* call bubble */
  .call-bubble span { display: none; }
  .call-bubble { padding: 1rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center; bottom: 1.5rem; right: 1.5rem; }
  .call-bubble svg { width: 22px; height: 22px; }

  /* cursor off on touch */
  .cursor { display: none; }
}

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 600px) {
  /* hero */
  #hero { min-height: 100svh; min-height: -webkit-fill-available; }
  .hero-media {
    background-position: center 30%;
  }
  h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); letter-spacing: 1px; }
  h1 em { letter-spacing: 4px; font-size: .55em; }
  .hero-eyebrow span { font-size: .55rem; letter-spacing: 4px; }
  .hero-tagline { font-size: .82rem; max-width: 300px; padding: 0 .5rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: .75rem; width: 100%; padding: 0 1rem; }
  .btn-solid, .btn-line { width: 100%; max-width: 300px; text-align: center; padding: 1rem 1.5rem; font-size: .72rem; min-height: 48px; display: flex; align-items: center; justify-content: center; }

  /* brand */
  .brand-sep, .brand-sub { display: none; }
  .brand-name { font-size: 1.3rem; }

  /* sections */
  section { padding: 3.5rem 1rem; }
  #menu { padding: 3.5rem 1rem; }
  .s-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .s-label { font-size: .55rem; letter-spacing: 4px; }

  /* menu */
  .menu-head { margin-bottom: 1.5rem; }
  .row-name { font-size: 1.05rem; }
  .row-desc { font-size: .72rem; }
  .row-price { font-size: 1rem; }
  .menu-row { padding: 1rem 0; flex-wrap: wrap; }

  /* tabs */
  .tab { padding: .7rem 1rem; font-size: .62rem; letter-spacing: 2px; }

  /* lot */
  .lot-box { padding: 1.2rem; }
  .lot-title { font-size: 1.15rem; }
  .lot-price { font-size: 2.2rem; }
  .lot-note { font-size: .7rem; }

  /* pâtisseries */
  .pat-name { font-size: 1.1rem; }
  .pat-price { font-size: 1.7rem; }

  /* jus */
  .jus-wrap { padding: 1.5rem; }
  .jus-title { font-size: 1.6rem; }
  .jus-list { font-size: .78rem; }

  /* formulaire */
  input, select, textarea { font-size: 16px; padding: .9rem; min-height: 48px; border-radius: 4px; }
  select { min-height: 48px; }
  .submit-btn { font-size: .75rem; padding: 1rem; min-height: 52px; border-radius: 4px; }
  .field-lbl { font-size: .58rem; }

  /* livraison */
  .livraison-card { padding: 1.5rem; }
  .lcard-highlight { flex-direction: column; gap: .8rem; }
  .lcard-title { font-size: 1.1rem; }
  .lcard-text { font-size: .78rem; line-height: 1.7; }
  .lcard-price { font-size: 1.3rem; }

  /* info blocks commande */
  .cmd-info-title { font-size: 1.3rem; }
  .info-block-val { font-size: .82rem; }

  /* footer */
  .f-brand-name { font-size: 1.5rem; }
  footer { padding: 2.5rem 1rem; gap: 1.5rem; }
  .f-brand-desc { font-size: .74rem; }
  .f-links a { font-size: .78rem; min-height: 44px; display: flex; align-items: center; }
  .f-col-title { font-size: .58rem; }

  /* call bubble */
  .call-bubble { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
}

/* ─── RESPONSIVE TRÈS PETIT ÉCRAN ─── */
@media (max-width: 380px) {
  h1 { font-size: 2.4rem; }
  h1 em { font-size: .5em; letter-spacing: 3px; }
  .hero-tagline { font-size: .78rem; }
  .btn-solid, .btn-line { font-size: .65rem; padding: .85rem 1rem; }
  section { padding: 3rem .8rem; }
  #menu { padding: 3rem .8rem; }
  .s-title { font-size: 1.5rem; }
  .row-name { font-size: .95rem; }
  .row-price { font-size: .9rem; }
  .lot-price { font-size: 1.8rem; }
  footer { padding: 2rem .8rem; }
  .f-brand-name { font-size: 1.3rem; }
  nav { padding: .8rem 1rem; }
  nav.solid { padding: .6rem 1rem; }
  .brand-name { font-size: 1.15rem; }
  .livraison-card { padding: 1.2rem; }

  /* Ensure no horizontal overflow */
  .cmd-grid { gap: 2rem; }
  .lot-box { padding: 1rem; }
  .jus-wrap { padding: 1.2rem; }
}

/* ─── LANDSCAPE PHONE ─── */
@media (max-height: 500px) and (orientation: landscape) {
  #hero { min-height: 100vh; }
  h1 { font-size: 2.5rem; }
  h1 em { font-size: .5em; }
  .hero-tagline { margin: 1rem 0 1.5rem; font-size: .75rem; }
  .hero-btns { flex-direction: row; }
  .hero-scroll { display: none; }
  .btn-solid, .btn-line { width: auto; max-width: none; }
}

/* ─── SAFE AREA (iPhone notch) ─── */
@supports (padding: env(safe-area-inset-bottom)) {
  .call-bubble { bottom: calc(1.2rem + env(safe-area-inset-bottom)); }
  footer { padding-bottom: calc(2.5rem + env(safe-area-inset-bottom)); }
  nav { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
}

/* ─── FADE-IN ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

