/* ===========================================================
   Les Voyages de Céline — feuille de style partagée
   =========================================================== */
:root{
  --paper:#F5F0E3;
  --paper-2:#FBF7EC;
  --ink:#1C1B19;
  --ink-soft:#4A463F;
  --blue:#22405F;
  --blue-deep:#162A3E;
  --rust:#C5301E;
  --rust-deep:#9E2416;
  --orange:#E08A3E;
  --gold:#DBA82F;
  --forest:#4C8058;
  --line:#C9C0AC;
  --white:#FFFDF8;
  --flag-black:#1A1A1A;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
}
img{max-width:100%; display:block;}
a{color:inherit;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.84rem;
  font-weight:600;
  color:var(--rust);
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.08;
  color:var(--blue-deep);
}
h2{font-size:clamp(1.7rem, 3.2vw, 2.5rem); font-weight:600; margin-bottom:.5rem;}
h3{font-size:1.25rem; font-weight:600;}
p{color:var(--ink-soft);}
.lede{font-size:1.08rem; max-width:62ch; color:var(--ink-soft);}

/* ---------- perforation divider ---------- */
.perf{
  position:relative; height:1px;
  background:repeating-linear-gradient(to right, var(--line) 0 10px, transparent 10px 20px);
}
.perf::before, .perf::after{
  content:""; position:absolute; top:50%; transform:translateY(-50%);
  width:22px; height:22px; border-radius:50%;
  background:var(--paper); box-shadow:0 0 0 1px var(--line);
}
.perf::before{left:-11px;} .perf::after{right:-11px;}

/* ---------- nav ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:var(--white);
  border-bottom:1px solid var(--line);
  box-shadow:0 3px 14px -6px rgba(22,42,62,.14);
}
header.site::after{
  content:"";
  display:block;
  height:4px;
  background:linear-gradient(to right, var(--flag-black) 0 33.33%, var(--rust) 33.33% 66.66%, var(--gold) 66.66% 100%);
}
.flag-chip{
  display:inline-block; width:22px; height:15px; border-radius:2px; flex-shrink:0;
  background:linear-gradient(var(--flag-black) 0 33%, var(--rust) 33% 66%, var(--gold) 66% 100%);
  box-shadow:0 0 0 1px rgba(0,0,0,.15);
  vertical-align:middle;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 32px; max-width:1180px; margin:0 auto; gap:20px;
}
.brand{
  display:flex; align-items:center; gap:13px; text-decoration:none; flex-shrink:0;
}
.brand img{height:56px; width:auto; border-radius:8px;}
.brand-text{font-family:'Fraunces', serif; font-weight:600; font-size:1.18rem; color:var(--blue-deep); line-height:1.12;}
.brand-text span{display:block; font-family:'IBM Plex Mono',monospace; font-size:.65rem; letter-spacing:.08em; color:var(--rust); text-transform:uppercase; margin-top:3px;}
nav.links{display:flex; gap:24px; font-size:.88rem; font-weight:500; flex-wrap:wrap;}
nav.links a{text-decoration:none; color:var(--ink-soft); transition:color .15s; padding-bottom:3px; border-bottom:2px solid transparent;}
nav.links a:hover{color:var(--rust);}
nav.links a.active{color:var(--blue-deep); border-bottom-color:var(--rust); font-weight:600;}
.nav-right{display:flex; align-items:center; gap:14px;}
.menu-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px; flex-shrink:0;}
.menu-toggle svg{width:24px; height:24px; stroke:var(--blue-deep);}

.btn-ticket{
  position:relative;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--rust); color:var(--white);
  font-family:'IBM Plex Mono', monospace;
  font-weight:600; font-size:.8rem; letter-spacing:.03em;
  text-transform:uppercase; text-decoration:none;
  padding:12px 22px 12px 18px; border-radius:12px;
  box-shadow:0 3px 0 var(--rust-deep);
  transition:transform .12s, box-shadow .12s;
  white-space:nowrap; border:none; cursor:pointer;
}
.btn-ticket:hover{transform:translateY(-2px); box-shadow:0 5px 0 var(--rust-deep);}
.btn-ticket:active{transform:translateY(1px); box-shadow:0 2px 0 var(--rust-deep);}
.btn-ticket::before{content:"✈"; font-size:.85rem;}

.btn-outline{
  display:inline-flex; align-items:center; gap:8px;
  border:1.5px solid var(--blue-deep); color:var(--blue-deep);
  background:var(--paper-2);
  font-weight:600; font-size:.92rem; text-decoration:none;
  padding:11px 20px; border-radius:12px;
  transition:background .15s, color .15s;
}
.btn-outline:hover{background:var(--blue-deep); color:var(--white);}

/* ---------- page header banner (sous-pages) ---------- */
.page-hero{padding:52px 0 40px; border-bottom:1px solid var(--line);}
.page-hero .eyebrow{display:block; margin-bottom:.6rem;}
.page-hero h1{font-size:clamp(2rem, 4vw, 2.9rem);}
.page-hero p.lede{margin-top:.8rem;}
.breadcrumb{font-family:'IBM Plex Mono',monospace; font-size:.74rem; color:var(--ink-soft); margin-bottom:14px;}
.breadcrumb a{text-decoration:none; color:var(--rust);}

/* ---------- hero (accueil) ---------- */
.hero{padding:80px 0 48px;}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
.hero h1{font-size:clamp(2.4rem, 5vw, 3.6rem); margin:0 0 .3em; letter-spacing:-.01em;}
.hero .slogan{font-family:'Fraunces', serif; font-style:italic; font-weight:500; font-size:1.25rem; color:var(--forest); margin-bottom:1.7rem;}
.hero p.desc{max-width:48ch; margin-bottom:1.8rem;}

.hero-copy .eyebrow{
  display:inline-block; background:var(--paper-2); padding:5px 12px;
  border-radius:20px; margin-bottom:12px;
}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.title-cloud{
  display:inline-block; max-width:100%; padding:18px 32px; border-radius:40px;
  background:var(--paper-2);
  box-shadow:0 0 0 12px rgba(247,243,233,.55), 0 16px 32px -20px rgba(22,42,62,.2);
  margin-bottom:.3em;
}
.title-cloud h1{margin:0;}
.hero-visual .hero-ctas{
  margin-top:20px; justify-content:center;
  background:var(--white); border:1px solid var(--line); border-radius:16px;
  padding:16px; box-shadow:0 10px 24px -18px rgba(22,42,62,.35);
}

.postcard{
  position:relative; background:var(--white); padding:14px 14px 46px;
  border-radius:14px; box-shadow:0 18px 34px -18px rgba(22,42,62,.45), 0 2px 0 rgba(0,0,0,.03);
  transform:rotate(2deg);
}
.postcard img{border-radius:8px;}
.postcard .cap{position:absolute; left:14px; right:14px; bottom:14px; font-family:'Fraunces', serif; font-style:italic; font-size:.98rem; color:var(--ink);}
.stamp{
  position:absolute; top:-14px; right:-14px; width:88px; height:88px; border-radius:50%;
  background:var(--paper-2); border:2px dashed var(--rust);
  display:flex; align-items:center; justify-content:center; text-align:center;
  transform:rotate(-8deg); box-shadow:0 6px 14px -6px rgba(0,0,0,.35);
}
.stamp span{font-family:'IBM Plex Mono', monospace; font-size:.62rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--rust-deep); line-height:1.3;}

/* ---------- section shell ---------- */
section{padding:76px 0;}
section.tight{padding:52px 0;}
.section-head{max-width:680px; margin-bottom:2.6rem;}
.section-head .eyebrow{display:block; margin-bottom:.6rem;}
.band-blue{background:var(--blue-deep); color:var(--white);}
.band-blue h2, .band-blue h3, .band-blue h4{color:var(--white);}
.band-blue p{color:#C8D2DC;}
.band-blue .eyebrow{color:var(--gold);}
.band-cream{background:var(--paper-2);}

/* ---------- teaser cards (accueil) ---------- */
.teaser-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.teaser-card{
  background:var(--white); border:1px solid var(--line); border-top:3px solid var(--forest); border-radius:12px;
  padding:28px; text-decoration:none; display:block;
  box-shadow:0 10px 24px -18px rgba(22,42,62,.5);
  transition:transform .15s, box-shadow .15s;
}
.teaser-card:hover{transform:translateY(-4px); box-shadow:0 16px 30px -18px rgba(22,42,62,.55);}
.teaser-card .icon{width:40px; height:40px; border-radius:50%; background:var(--paper-2); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.teaser-card .icon svg{width:20px; height:20px; stroke:var(--blue-deep);}
.teaser-card h3{margin-bottom:.5rem; font-size:1.1rem;}
.teaser-card p{font-size:.92rem; margin-bottom:.8rem;}
.teaser-card .go{font-family:'IBM Plex Mono',monospace; font-size:.74rem; text-transform:uppercase; letter-spacing:.05em; color:var(--rust); font-weight:600;}

/* ---------- qui suis-je ---------- */
.quisuisje{display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start;}
blockquote.pull{
  font-family:'Fraunces', serif; font-weight:500; font-style:italic;
  font-size:1.5rem; color:var(--blue-deep); line-height:1.35;
  border-left:3px solid var(--rust); padding-left:22px; margin-bottom:1.4rem;
}
.quisuisje p{margin-bottom:1rem;}
.signature-line{font-family:'Fraunces', serif; font-style:italic; color:var(--forest); margin-top:1.4rem;}

/* ---------- ticket-card (services) ---------- */
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.ticket-card{
  background:var(--white); border-radius:12px; padding:26px 24px 24px; position:relative;
  box-shadow:0 10px 24px -18px rgba(22,42,62,.5); border:1px solid var(--line); border-top:3px solid var(--forest);
}
.ticket-card .num{font-family:'IBM Plex Mono', monospace; font-size:.7rem; letter-spacing:.1em; color:var(--rust); text-transform:uppercase; font-weight:600; display:block; margin-bottom:10px;}
.ticket-card h3{margin-bottom:.6rem; font-size:1.12rem;}
.ticket-card ul{margin-top:.6rem; padding-left:1.1rem; color:var(--ink-soft); font-size:.94rem;}
.ticket-card ul li{margin-bottom:.35rem;}
.ticket-card .icon{width:40px; height:40px; border-radius:50%; background:var(--paper-2); display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
.ticket-card .icon svg{width:20px; height:20px; stroke:var(--blue-deep);}

.notice{margin-top:34px; background:var(--paper-2); border:1px dashed var(--gold); border-radius:10px; padding:20px 24px; font-size:.92rem;}
.notice b{color:var(--blue-deep);}
.notice code{font-family:'IBM Plex Mono',monospace; font-size:.85em; background:rgba(0,0,0,.06); padding:2px 6px; border-radius:4px; color:var(--blue-deep);}

/* ---------- destinations ---------- */
.dest-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.dest-card{background:var(--white); border-radius:12px; overflow:hidden; border:1px solid var(--line); box-shadow:0 10px 24px -18px rgba(22,42,62,.5); display:flex; flex-direction:column;}
.dest-banner{position:relative; width:100%; aspect-ratio:16/10; overflow:hidden; display:block; background:linear-gradient(135deg,#DCE7EC,#F3EEE2);}
.dest-banner img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2;}
.dest-banner .hint{position:absolute; inset:0; z-index:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; padding:14px;}
.dest-banner .hint svg{width:28px; height:28px; stroke:var(--blue-deep); opacity:.45;}
.dest-banner .hint span{font-family:'IBM Plex Mono',monospace; font-size:.66rem; letter-spacing:.03em; color:var(--ink-soft); opacity:.75;}
.dest-banner .hint code{font-weight:600; color:var(--blue-deep);}
.dest-top{padding:18px 22px 14px; display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px dashed var(--line);}
.dest-top .flag{width:34px; height:24px; border-radius:2px; overflow:hidden; box-shadow:0 0 0 1px rgba(0,0,0,.1); flex-shrink:0;}
.dest-top h3{font-size:1.15rem;}
.dest-body{padding:14px 22px 22px; flex:1; display:flex; flex-direction:column;}
.tag-row{display:flex; flex-wrap:wrap; gap:7px; margin-top:auto; padding-top:14px;}
.tag{font-family:'IBM Plex Mono', monospace; font-size:.72rem; background:var(--paper-2); border:1px solid var(--line); border-radius:20px; padding:5px 11px; color:var(--ink-soft); transition:border-color .15s, color .15s;}
.tag:hover{border-color:var(--forest); color:var(--forest);}
.dest-body p{font-size:.92rem; margin-bottom:.4rem;}
.dest-custom{margin-top:28px; display:flex; align-items:center; justify-content:space-between; gap:20px; background:var(--forest); color:var(--white); border-radius:12px; padding:22px 28px; flex-wrap:wrap;}
.dest-custom p{color:#E3ECE5; margin:0; max-width:52ch;}
.dest-custom h4{color:var(--white); font-family:'Fraunces',serif; font-size:1.1rem; margin-bottom:.3rem;}

/* ---------- confiance ---------- */
.trust-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:28px 40px;}
.trust-item{display:flex; gap:16px;}
.trust-item .mark{flex-shrink:0; width:38px; height:38px; border-radius:50%; background:var(--blue-deep); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600;}
.trust-item h3{font-size:1.05rem; margin-bottom:.3rem;}
.trust-item p{font-size:.94rem;}

/* ---------- indépendant ---------- */
.indep{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
.stat-tags{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:1.6rem;}
.stat-tag{background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.18); border-radius:10px; padding:16px 18px;}
.stat-tag .t{font-family:'Fraunces',serif; font-weight:600; color:var(--gold); font-size:1.02rem; margin-bottom:4px;}
.stat-tag p{font-size:.86rem; color:#C8D2DC; margin:0;}

/* ---------- billetterie DB ---------- */
.db-band{background:var(--white); border:1px solid var(--line); border-top:3px solid var(--forest); border-radius:12px; padding:40px; display:grid; grid-template-columns:.55fr 1fr; gap:40px; align-items:center;}
.db-band img{width:130px;}
.db-band ul{padding-left:1.15rem; margin-top:.8rem;}
.db-band ul li{margin-bottom:.4rem; color:var(--ink-soft);}

/* ---------- parcours : liste d'étapes ---------- */
.steps-list{display:flex; flex-direction:column; max-width:720px;}
.step-block{padding:6px 0;}
.step-title{font-size:1.55rem; margin-bottom:.6rem; color:var(--blue-deep);}
.step-block p{font-size:1rem; max-width:60ch;}
.step-divider{width:56px; height:4px; border-radius:4px; margin:28px 0;}
.divider-red{background:var(--rust);}
.divider-orange{background:var(--orange);}

/* ---------- partenaires ---------- */
.partners-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.partner-card{background:var(--white); border:1px solid var(--line); border-top:3px solid var(--forest); border-radius:12px; padding:28px; text-align:center;}
.partner-card .eyebrow{display:block; margin-bottom:16px;}
.partner-logos{display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; min-height:64px;}
.partner-logos img{max-height:56px; width:auto; max-width:120px; object-fit:contain;}
.partner-card p{font-size:.86rem; margin-top:16px;}

/* ---------- checklist ---------- */
.checklist{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:40px 44px; display:grid; grid-template-columns:1fr 1fr; gap:16px 32px;}
.check-item{display:flex; align-items:center; gap:12px; font-family:'Fraunces',serif; font-weight:500; font-size:1.02rem; color:var(--blue-deep);}
.check-item .c{flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--forest); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:700;}

/* ---------- section head with accordion toggle ---------- */
.section-head-row{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:1.8rem;}
.accordion-toggle{
  flex-shrink:0; width:46px; height:46px; border-radius:50%;
  background:var(--white); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  box-shadow:0 4px 12px -8px rgba(22,42,62,.4);
  transition:background .15s, transform .15s;
}
.accordion-toggle:hover{background:var(--paper-2);}
.accordion-toggle svg{width:20px; height:20px; stroke:var(--blue-deep); transition:transform .3s ease;}
.accordion-toggle.open svg{transform:rotate(180deg);}
.checklist-wrap{max-height:0; overflow:hidden; transition:max-height .4s ease;}
.checklist-wrap.open{max-height:640px;}

/* ---------- contact ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
.contact-form{display:flex; flex-direction:column; gap:14px;}
.contact-form label{font-family:'IBM Plex Mono',monospace; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--rust); margin-bottom:4px; display:block;}
.contact-form input, .contact-form textarea, .contact-form select{
  width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:9px;
  font-family:'Work Sans',sans-serif; font-size:.95rem; background:var(--white); color:var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{outline:none; border-color:var(--blue-deep);}
.contact-form textarea{resize:vertical; min-height:110px;}
.field{display:flex; flex-direction:column;}
.row-2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.contact-form button{align-self:flex-start; margin-top:6px;}
.contact-info h3{margin-bottom:1rem;}
.info-line{display:flex; gap:12px; margin-bottom:14px; align-items:flex-start;}
.info-line svg{width:18px; height:18px; stroke:var(--rust); flex-shrink:0; margin-top:3px;}
.info-line a{text-decoration:none; font-weight:500;}
.qr-box{margin-top:22px; display:flex; align-items:center; gap:20px; background:var(--paper-2); border:1px solid var(--line); border-radius:12px; padding:18px;}
.qr-box img{width:150px; height:150px; border-radius:8px; flex-shrink:0; object-fit:contain;}
.qr-box p{font-size:.88rem; margin:0;}
.form-success{display:none; background:var(--forest); color:var(--white); border-radius:10px; padding:16px 18px; font-size:.9rem; margin-top:10px;}
.form-success.show{display:block;}

/* ---------- footer ---------- */
footer{background:var(--blue-deep); color:#B9C4CD; padding:44px 0 26px; font-size:.86rem;}
footer .wrap{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;}
footer strong{color:var(--white); font-family:'Fraunces',serif; font-weight:600; font-size:1rem;}
footer .foot-col p{color:#B9C4CD; margin-bottom:.3rem;}
footer .foot-col a{color:var(--gold); text-decoration:none;}
.footer-bottom{max-width:1180px; margin:28px auto 0; padding:20px 32px 0; border-top:1px solid rgba(255,255,255,.12); font-size:.78rem; color:#8FA0AC; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;}

/* ---------- responsive ---------- */
@media (max-width:920px){
nav.links{
  position:absolute; top:calc(100% + 10px); right:20px; left:auto;
  width:min(240px, 78vw);
  background:var(--white);
  flex-direction:column; gap:0;
  border-radius:14px;
  border:1px solid transparent;
  max-height:0; overflow:hidden; opacity:0; filter:blur(6px);
  transition:max-height .22s ease, opacity .25s ease, filter .25s ease;
  box-shadow:0 16px 32px -14px rgba(22,42,62,.4);
}
nav.links.open{max-height:420px; opacity:1; filter:blur(0); border-color:var(--line);}
nav.links a{padding:13px 18px; border-bottom:1px solid var(--line); width:100%; font-size:.9rem; transition:background .15s;}
nav.links a:last-child{border-bottom:none;}
nav.links a:first-child{border-radius:13px 13px 0 0;}
nav.links a:last-child{border-radius:0 0 13px 13px;}
nav.links a:hover{background:var(--paper-2);}
nav.links a.active{border-left:3px solid var(--rust); background:var(--paper-2); padding-left:15px; font-weight:600;}
.menu-toggle{
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:38px; height:38px; background:none; border:none; cursor:pointer; padding:0; flex-shrink:0;
}
.menu-toggle .bar{display:block; width:22px; height:2.5px; background:var(--blue-deep); border-radius:2px; transition:transform .25s ease, opacity .2s ease;}
.menu-toggle.open .bar:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.menu-toggle.open .bar:nth-child(2){opacity:0;}
.menu-toggle.open .bar:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
.menu-scrim{
  position:fixed; inset:0; z-index:45;
  background:rgba(22,20,17,.22);
  backdrop-filter:blur(0px); -webkit-backdrop-filter:blur(0px);
  opacity:0; pointer-events:none;
  transition:opacity .28s ease, backdrop-filter .28s ease, -webkit-backdrop-filter .28s ease;
}
.menu-scrim.show{
  opacity:1; pointer-events:auto;
  backdrop-filter:blur(5px); -webkit-backdrop-filter:blur(5px);
}
  .hero-grid{grid-template-columns:1fr;}
  .postcard{transform:none; max-width:420px;}
  .quisuisje{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .teaser-grid{grid-template-columns:1fr;}
  .dest-grid{grid-template-columns:1fr;}
  .trust-grid{grid-template-columns:1fr;}
  .indep{grid-template-columns:1fr;}
  .db-band{grid-template-columns:1fr; text-align:center;}
  .db-band img{margin:0 auto;}
  .partners-grid{grid-template-columns:1fr;}
  .checklist{grid-template-columns:1fr; padding:28px;}
  .contact-grid{grid-template-columns:1fr;}
  .row-2{grid-template-columns:1fr;}
  footer .wrap{flex-direction:column;}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
}

/* ---------- phone tightening (beau et rapide à parcourir) ---------- */
@media (max-width:600px){
  .wrap{padding:0 20px;}
  section{padding:44px 0;}
  section.tight{padding:32px 0;}
  .page-hero{padding:32px 0 26px;}
  .hero{padding:36px 0 28px;}
  .hero .desc{margin-bottom:1.3rem;}
  .hero-ctas{gap:10px;}
  .section-head{margin-bottom:1.8rem;}
  h2{font-size:1.5rem;}
  .lede{font-size:1rem;}
  .postcard{max-width:320px; margin:0 auto; padding:10px 10px 36px;}
  .stamp{width:70px; height:70px; top:-14px; right:-14px;}
  .stamp span{font-size:.54rem;}

  .teaser-grid, .services-grid, .dest-grid, .partners-grid{gap:16px;}
  .teaser-card, .ticket-card, .dest-card, .partner-card{padding:20px;}
  .trust-grid{gap:20px;}
  .trust-item{gap:12px;}
  .trust-item .mark{width:32px; height:32px; font-size:.9rem;}

  .db-band{padding:26px 20px; gap:22px;}
  .db-band img{width:96px;}

  .steps-list .step-title{font-size:1.25rem;}
  .step-divider{margin:22px 0;}

  .checklist{padding:22px 18px; gap:12px 16px;}
  .check-item{font-size:.92rem; gap:9px;}
  .check-item .c{width:22px; height:22px; font-size:.7rem;}

  .dest-custom{padding:18px 20px; flex-direction:column; align-items:flex-start; text-align:left;}
  .indep{gap:28px;}
  .stat-tags{gap:10px;}
  .stat-tag{padding:13px 15px;}

  .contact-grid{gap:32px;}
  .qr-box{padding:14px; gap:14px;}
  .qr-box img{width:104px; height:104px;}
  .qr-box p{font-size:.82rem;}

  footer{padding:32px 0 20px;}
  .footer-bottom{margin-top:20px; padding-top:16px;}
  .nav{padding:9px 16px;}
  .brand{gap:9px;}
  .flag-chip{width:18px; height:12px;}
  .brand img{height:42px; border-radius:6px;}
  .brand-text{font-size:.98rem;}
  .brand-text span{font-size:.56rem;}

  .header-cta{display:none;}
  body{padding-bottom:76px;}

  header.site{
    background:radial-gradient(130% 200% at 25% -40%, #FFFFFF 0%, #FBF8F1 45%, #F3EEE2 100%);
    border-bottom:none;
    border-radius:0 0 24px 24px;
    box-shadow:0 10px 22px -12px rgba(22,42,62,.2);
  }
  header.site::after{border-radius:0 0 24px 24px;}

  .hero{padding:32px 0 26px;}
  .hero-grid{display:grid; gap:22px;}
  .hero-copy{text-align:center;}
  .hero-copy .eyebrow{margin-left:auto; margin-right:auto;}
  .hero .eyebrow{font-size:.7rem;}
  .title-cloud{padding:14px 22px; border-radius:30px; box-shadow:0 0 0 8px rgba(247,243,233,.55), 0 12px 26px -18px rgba(22,42,62,.2);}
  .hero h1{font-size:2rem; margin:0; position:relative; padding-bottom:16px;}
  .hero h1::after{content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:44px; height:3px; background:var(--rust); border-radius:2px;}
  .hero .slogan{font-size:1rem; margin:1.1rem 0 1.2rem;}
  .hero .desc{font-size:.88rem; margin-bottom:0; max-width:none;}
  .hero-ctas{flex-direction:column; align-items:stretch; gap:9px;}
  .hero-ctas .btn-ticket, .hero-ctas .btn-outline{justify-content:center; width:100%;}
  .hero-visual .hero-ctas{margin-top:18px; padding:14px;}
  .postcard{max-width:100%; margin:0 auto; padding:7px 7px 24px; border-radius:16px;}
  .postcard img{border-radius:10px; width:100%; aspect-ratio:16/10; object-fit:cover; object-position:center 25%;}
  .stamp{width:56px; height:56px; top:15px; right:15px; box-shadow:0 4px 10px -4px rgba(0,0,0,.3);}
  .stamp span{font-size:.46rem;}
  .postcard .cap{font-size:.82rem; left:11px; right:11px; bottom:6px;}

  .mobile-cta-bar{
    display:block; position:fixed; left:0; right:0; bottom:0; z-index:60;
    padding:10px 16px calc(10px + env(safe-area-inset-bottom));
    background:rgba(239,234,224,.97); backdrop-filter:blur(6px);
    border-top:1px solid var(--line);
  }
  .mobile-cta-bar .btn-ticket{width:100%; justify-content:center; padding:13px 20px;}
  .page-contact .mobile-cta-bar{display:none;}
  .page-contact{padding-bottom:0;}
}

.mobile-cta-bar{display:none;}

