/* ═══════════════════════════════════════════════════════════════
   LA CABANE À SUSHI — M. Georges
   style.css — Identité visuelle rose luxe japonaise moderne
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --nude:   #FDF7F5;
  --rose1:  #F5ECE9;
  --rose2:  #EDD8D2;
  --rose3:  #DFBFB6;
  --forest: #263424;
  --black:  #0D0B0A;
  --dark:   #141210;
  --gold:   #C49A5A;
  --white:  #FFFFFF;
  --t1:     #0D0B0A;
  --t2:     #4A3F3A;
  --t3:     #9A8880;
  --shadow: rgba(160,80,60,.16);
  --border: rgba(180,130,115,.13);
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--nude);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--rose3); }

/* ── ATOMS ──────────────────────────────────────────────────── */
.lbl {
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  letter-spacing: 3.5px; text-transform: uppercase;
  display: block; color: var(--t3);
}
.lbl-gold  { color: var(--gold); }
.lbl-white { color: rgba(255,255,255,.45); }

/* Boutons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 15px 40px;
  transition: all .35s cubic-bezier(.23,1,.32,1);
  white-space: nowrap; cursor: pointer;
}
.btn-dark {
  background: var(--forest); color: #fff;
  border: 1px solid var(--forest);
}
.btn-dark:hover { background: transparent; color: var(--forest); }

.btn-outline {
  background: transparent; color: var(--forest);
  border: 1px solid rgba(38,52,36,.3);
}
.btn-outline:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: #fff; color: var(--black); }

/* Lien flèche */
.link-arr {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 9px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--t2); transition: color .3s, gap .4s;
}
.link-arr::after {
  content: ''; width: 28px; height: 1px;
  background: currentColor; transition: width .4s;
}
.link-arr:hover { color: var(--gold); gap: 18px; }
.link-arr:hover::after { width: 48px; }

/* Reveal */
.rv  { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.rv.vis { opacity: 1; transform: none; }
.rv2 { opacity: 0; transition: opacity 1.4s ease; }
.rv2.vis { opacity: 1; }
.rv.d1 { transition-delay: .1s; } .rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; } .rv.d4 { transition-delay: .4s; }
.rv.d5 { transition-delay: .5s; } .rv.d6 { transition-delay: .6s; }

/* Séparateur doré */
.gold-rule { width: 32px; height: 1px; background: var(--gold); margin: 20px 0 44px; }

/* ── SAKURA PETALS ───────────────────────────────────────────── */
.sakura-field {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 2;
}
.petal {
  position: absolute;
  width: 10px; height: 13px;
  background: rgba(230,175,165,.5);
  border-radius: 50% 50% 50% 0 / 50% 50% 50% 0;
  animation: petalFall var(--dur, 9s) var(--delay, 0s) ease-in-out infinite;
  top: -20px;
}
@keyframes petalFall {
  0%   { transform: translateX(0) translateY(-20px) rotate(0deg) scale(1); opacity: 0; }
  8%   { opacity: .7; }
  85%  { opacity: .35; }
  100% { transform: translateX(var(--drift, 40px)) translateY(105vh) rotate(var(--spin, 600deg)) scale(.7); opacity: 0; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; height: 72px;
  transition: background .5s, border-color .5s;
}
.nav.on {
  background: rgba(253,247,245,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-brand .jp  { font-size: 8px; letter-spacing: 4px; color: var(--gold); }
.nav-brand .nm  { font-family: var(--serif); font-size: 13px; font-weight: 400; letter-spacing: .5px; color: var(--black); }
.nav-links { display: flex; gap: 44px; }
.nav-links a {
  font-size: 9px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--t2); transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; }
.nav-cta {
  font-size: 9px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--forest); color: #fff;
  padding: 14px 30px; transition: background .3s;
}
.nav-cta:hover { background: var(--gold); }
.nav-cta-ghost {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest); margin-right: 10px;
}
.nav-cta-ghost:hover { background: var(--forest); color: #fff; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-burger span { width: 20px; height: 1px; background: var(--black); display: block; transition: all .35s; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 46% 54%;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 148px 88px 100px 92px;
  background: var(--nude); position: relative; overflow: hidden;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 9px; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 52px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 8.5vw, 130px);
  font-weight: 300; line-height: .86;
  color: var(--black); letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; font-weight: 300; }
.hero-signed {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 300;
  color: var(--t2); letter-spacing: .5px; margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--forest);
  border: 1px solid var(--forest); padding: 9px 20px;
  border-radius: 40px; margin-bottom: 40px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--forest);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-foot {
  position: absolute; bottom: 48px; left: 92px;
  display: flex; align-items: center; gap: 14px;
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--t3);
}
.hero-foot::before {
  content: ''; width: 1px; height: 36px; background: var(--rose3);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .3; height: 24px; }
  50%       { opacity: .7; height: 44px; }
}
.hero-right { position: relative; overflow: hidden; background: var(--rose2); }
.hero-right img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker { background: var(--forest); overflow: hidden; padding: 14px 0; white-space: nowrap; }
.ticker-t { display: inline-flex; animation: tick 44s linear infinite; }
.ticker-i {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: rgba(255,255,255,.28); padding: 0 32px;
  display: inline-flex; align-items: center; gap: 32px;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .5; flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INTRO QUOTE ─────────────────────────────────────────────── */
.intro {
  background: var(--nude); padding: 136px 88px;
  text-align: center; border-bottom: 1px solid var(--border);
  position: relative;
}
.intro p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 3.4vw, 46px); font-weight: 300;
  color: var(--black); line-height: 1.52; letter-spacing: .2px;
  max-width: 860px; margin: 0 auto;
}

/* ── SUSHI POP ───────────────────────────────────────────────── */
#sushi-pop { background: var(--rose1); }
.sp-layout {
  display: grid; grid-template-columns: 44% 56%;
  min-height: 760px;
}

/* Panel gauche — photo tube plein-bleed */
.sp-tube-panel {
  position: relative; overflow: hidden;
  background: #E8D8CC;
}
.sp-tube-panel::before { display: none; }
.sp-tube-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .9s cubic-bezier(.23,1,.32,1);
}
.sp-tube-panel:hover .sp-tube-img { transform: scale(1.03); }

.sp-content {
  padding: 100px 80px 80px 68px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--nude);
}
.sp-idx {
  font-family: var(--serif); font-size: 120px; font-weight: 300;
  color: rgba(0,0,0,.04); line-height: 1; margin-bottom: -28px; user-select: none;
}
.sp-h {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 300; line-height: .88; letter-spacing: -1.5px;
  color: var(--black); margin-bottom: 22px;
}
.sp-sub  { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 300; color: var(--t2); margin-bottom: 12px; }
.sp-p    { font-size: 13px; font-weight: 300; color: var(--t2); line-height: 2.1; margin-bottom: 44px; max-width: 340px; }

/* Roll list */
.roll-list { border-top: 1px solid var(--border); margin-top: 8px; }
.roll-row {
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 28px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  cursor: default; transition: padding-left .3s;
}
.roll-row:hover { padding-left: 8px; }
.roll-img {
  width: 200px; height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 40px rgba(140,60,40,.24));
  transition: transform .5s cubic-bezier(.23,1,.32,1);
  flex-shrink: 0;
}
.roll-row:hover .roll-img { transform: scale(1.07) translateY(-6px); }
.roll-nm {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--black); margin-bottom: 3px; transition: color .3s;
}
.roll-row:hover .roll-nm { color: var(--gold); }
.roll-ing { font-size: 11px; font-weight: 300; color: var(--t3); line-height: 1.7; }
.roll-px  { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--black); white-space: nowrap; }

/* ── CAN'CAKES ───────────────────────────────────────────────── */
#cancakes { background: var(--nude); }
.cc-banner {
  position: relative; height: 54vh; min-height: 400px; overflow: hidden;
}
.cc-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cc-banner-over {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(253,247,245,.92) 0%, rgba(253,247,245,.65) 45%, transparent 75%);
  display: flex; align-items: center; padding: 0 100px;
}
.cc-h {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 300; line-height: .84; letter-spacing: -2px;
  color: var(--black); margin-bottom: 14px;
}
.cc-sub2 {
  font-size: 9px; font-weight: 300; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
}

.cc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rose2);
}
.cc-card {
  background: var(--nude);
  padding: 64px 28px 52px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background .5s; overflow: hidden;
}
.cc-card:hover { background: var(--white); }
.cc-photo {
  width: 240px; height: 240px;
  object-fit: contain;
  margin-bottom: 36px;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.22));
  transition: transform .7s cubic-bezier(.23,1,.32,1), filter .7s;
}
.cc-card:hover .cc-photo {
  transform: translateY(-12px) scale(1.06);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.3));
}
.cc-nm  { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 8px; }
.cc-ing { font-size: 11px; font-weight: 300; color: var(--t3); line-height: 1.9; margin-bottom: 22px; }
.cc-px  { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--black); }

/* ── BOISSONS ────────────────────────────────────────────────── */
#boissons { background: var(--rose1); padding: 128px 0 0; }
.bois-head { text-align: center; padding: 0 88px 84px; }
.bois-h {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300; line-height: .86; letter-spacing: -2px;
  color: var(--black); margin-bottom: 14px;
}
.bois-s { font-family: var(--serif); font-style: italic; font-size: 18px; font-weight: 300; color: var(--t2); }
.bois-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rose2);
}
.bois-card {
  background: var(--rose1);
  padding: 72px 28px 60px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background .4s; position: relative; overflow: hidden;
}
.bois-card:hover { background: var(--nude); }
.bois-card::after {
  content: ''; position: absolute; bottom: 0; left: 22%; right: 22%;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .55s cubic-bezier(.23,1,.32,1);
}
.bois-card:hover::after { transform: scaleX(1); }
.bois-photo {
  height: 280px; width: auto;
  object-fit: contain; margin-bottom: 40px;
  filter: drop-shadow(0 14px 44px rgba(140,80,60,.2));
  transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.bois-card:hover .bois-photo { transform: translateY(-10px) scale(1.03); }
.bois-nm  { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 6px; }
.bois-tag { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--t2); margin-bottom: 12px; display: block; }
.bois-p   { font-size: 11px; font-weight: 300; color: var(--t3); line-height: 1.9; margin-bottom: 22px; }
.bois-px  { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--black); }

/* ── PRESTIGE ────────────────────────────────────────────────── */
#prestige {
  display: grid; grid-template-columns: 42% 58%;
  min-height: 520px; background: var(--dark);
}
.pres-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 72px 100px 92px;
}
.pres-lbl { font-size: 9px; font-weight: 300; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 36px; display: block; }
.pres-h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 300; line-height: .88; letter-spacing: -1px;
  color: #fff; margin-bottom: 14px;
}
.pres-sub { font-family: var(--serif); font-style: italic; font-size: 18px; font-weight: 300; color: rgba(255,255,255,.38); margin-bottom: 52px; }
.pres-right { position: relative; overflow: hidden; }
.pres-right img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }

/* ── VITRINE ─────────────────────────────────────────────────── */
#vitrine { position: relative; height: 52vh; min-height: 380px; overflow: hidden; }
#vitrine img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.vitrine-over {
  position: absolute; inset: 0;
  background: rgba(10,9,8,.36);
  display: flex; align-items: flex-end; padding: 64px 100px;
}
.vitrine-over h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300; color: #fff; letter-spacing: -1px;
  line-height: .92; margin-top: 10px;
}

/* ── BOXES ───────────────────────────────────────────────────── */
#boxes { background: var(--nude); padding: 148px 88px; }
.bx-head { text-align: center; margin-bottom: 84px; }
.bx-h {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 300; letter-spacing: -1.5px;
  color: var(--black); margin-bottom: 12px;
}
.bx-s { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 300; color: var(--t2); }
.bx-grid {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rose2);
}
.bx-card {
  background: var(--nude); padding: 56px 32px 48px;
  text-align: center; transition: background .4s; position: relative;
}
.bx-card:hover { background: var(--white); }
.bx-card.star { background: var(--forest); }
.bx-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 2px; margin-bottom: 28px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.16));
  transition: transform .7s cubic-bezier(.23,1,.32,1);
}
.bx-card:hover .bx-photo { transform: scale(1.03); }
.bx-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 8px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 18px; white-space: nowrap;
}
.bx-lbl  { font-size: 8px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--t3); display: block; margin-bottom: 10px; }
.bx-sz   { font-family: var(--serif); font-size: 88px; font-weight: 300; line-height: 1; color: var(--gold); }
.bx-nm   { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 300; color: var(--black); margin: 4px 0; }
.bx-pc   { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--t3); display: block; margin-bottom: 24px; }
.bx-div  { width: 24px; height: 1px; background: var(--rose2); margin: 0 auto 20px; }
.bx-desc { font-size: 12px; font-weight: 300; color: var(--t2); line-height: 2; margin-bottom: 24px; }
.bx-px   { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--black); }
.bx-card.star .bx-lbl,
.bx-card.star .bx-nm,
.bx-card.star .bx-pc,
.bx-card.star .bx-desc { color: rgba(255,255,255,.38); }
.bx-card.star .bx-div  { background: rgba(255,255,255,.08); }
.bx-card.star .bx-px   { color: #fff; }
.bx-card.star .bx-sz   { color: rgba(255,255,255,.7); }

/* ── EXPERIENCE ──────────────────────────────────────────────── */
#experience {
  background: var(--black);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.exp-cell {
  padding: 72px 44px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.exp-cell:last-child { border-right: none; }
.exp-ico {
  width: 40px; height: 40px; margin: 0 auto 36px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.exp-nm { font-family: var(--serif); font-size: 17px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.exp-p  { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.26); line-height: 2; }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--nude); padding: 148px 88px; }
.ct-wrap {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start;
}
.ct-h {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 300; line-height: .88; letter-spacing: -2px;
  color: var(--black); margin-bottom: 20px;
}
.ct-rule { width: 32px; height: 1px; background: var(--gold); margin: 20px 0 44px; }
.ct-infos { display: flex; flex-direction: column; }
.ci { padding: 22px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 0; }
.ci:first-child { padding-top: 0; }
.ci:last-child  { border-bottom: none; }
.ci strong { font-size: 8px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.ci p { font-size: 14px; font-weight: 300; color: var(--t2); line-height: 1.9; }
.sc-label {
  font-size: 9px !important; font-weight: 500 !important;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest) !important; margin-bottom: 4px !important;
  display: flex; align-items: center; gap: 6px;
}
.ci a:hover { color: var(--gold); transition: color .3s; }
.ct-form { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 8px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--t3); }
.fg input, .fg textarea {
  background: var(--white); border: 1px solid var(--border);
  border-bottom: 1.5px solid var(--rose2);
  color: var(--t1); font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none; resize: none;
  transition: border-bottom-color .3s;
}
.fg input:focus, .fg textarea:focus { border-bottom-color: var(--forest); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsub {
  background: var(--forest); color: #fff; border: none;
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 48px; cursor: pointer;
  align-self: flex-start; margin-top: 6px; transition: background .3s;
}
.fsub:hover { background: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--black); padding: 56px 88px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.ft-brand .ft-jp { font-size: 8px; letter-spacing: 4px; color: rgba(255,255,255,.18); display: block; margin-bottom: 4px; }
.ft-brand .ft-nm { font-family: var(--serif); font-size: 14px; font-weight: 400; color: rgba(255,255,255,.8); }
.ft-brand .ft-addr { font-size: 10px; font-weight: 300; color: rgba(255,255,255,.22); margin-top: 6px; line-height: 1.7; }
.ft-copy { font-size: 9px; font-weight: 300; letter-spacing: 1.5px; color: rgba(255,255,255,.14); text-align: center; }
.ft-links { display: flex; justify-content: flex-end; gap: 28px; align-items: center; }
.ft-links a {
  font-size: 9px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.22); transition: color .3s;
}
.ft-links a:hover { color: var(--gold); }
.ft-phone { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.32); margin-top: 4px; letter-spacing: 1px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav { padding: 0 40px; }
  .nav-links { gap: 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { min-height: 100svh; }
  .hero-right { height: 65vw; position: relative; }
  .hero-right img { position: absolute; }
  .sp-layout { grid-template-columns: 1fr; }
  .sp-tube-panel { height: 56vw; }
  .sp-content { padding: 72px 48px; }
  .cc-banner-over { padding: 0 48px; }
  .cc-grid { grid-template-columns: 1fr 1fr; }
  .bois-grid { grid-template-columns: 1fr 1fr; }
  #prestige { grid-template-columns: 1fr; }
  .pres-right { height: 60vw; }
  .bx-grid { grid-template-columns: 1fr 1fr; }
  #experience { grid-template-columns: 1fr 1fr; }
  .exp-cell:nth-child(2) { border-right: none; }
  .ct-wrap { grid-template-columns: 1fr; gap: 64px; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 40px; }
  .ft-links { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 24px; height: 60px; }
  .hero-left { padding: 120px 24px 80px; }
  .hero-foot { left: 24px; }
  .intro { padding: 80px 24px; }
  .sp-content { padding: 56px 24px; }
  .sp-tube-panel { padding: 48px 24px; }
  .sp-tube-img { max-height: 380px; }
  .roll-row { grid-template-columns: 130px 1fr auto; gap: 16px; }
  .roll-img { width: 130px; height: auto; }
  .cc-banner-over { padding: 0 24px; }
  .cc-grid { grid-template-columns: 1fr; }
  .bois-grid { grid-template-columns: 1fr; }
  #boissons { padding: 80px 0 0; }
  .bois-head { padding: 0 24px 56px; }
  #boxes { padding: 100px 24px; }
  .bx-grid { grid-template-columns: 1fr 1fr; }
  #experience { grid-template-columns: 1fr 1fr; }
  .exp-cell { padding: 48px 20px; }
  #contact { padding: 100px 24px; }
  .frow { grid-template-columns: 1fr; }
  .pres-left { padding: 72px 24px; }
  .vitrine-over { padding: 32px 24px; }
  #vitrine { height: 320px; }
  footer { padding: 36px 24px; }
}


/* ── FORM SUCCESS MESSAGE ─────────────────────────────────────── */
#form-success {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 48px 32px;
  opacity: 0;
  transition: opacity .5s ease;
}
#form-success.visible { opacity: 1; }
.form-success-inner { text-align: center; }
.form-success-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.form-success-inner h3 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--forest);
  margin-bottom: 14px;
}
.form-success-inner p {
  font-family: var(--sans);
  font-size: 13px; font-weight: 300;
  color: var(--t2); line-height: 1.8;
  margin-bottom: 24px;
}
.form-success-sign {
  font-family: var(--serif);
  font-style: italic; font-size: 16px;
  color: var(--gold); letter-spacing: .5px;
}