/* =====================================================
   LE PIGEONNIER — Feuille de styles principale
   ===================================================== */

/* ---- TOKENS ---- */
:root {
  --bg:          #F5EDE0;
  --bg-linen:    #EDE3D0;
  --white:       #FBF7F2;
  --dark:        #1E1612;
  --dark-soft:   #2E2218;
  --terracotta:  #B5622E;
  --terra-deep:  #8F4D24;
  --gold:        #C4944A;
  --sage:        #5C7058;
  --sage-lt:     #7A9276;
  --text:        #3A2E24;
  --text-soft:   #6B5B4A;
  --sand:        #C8B09A;
  --sand-lt:     rgba(200,176,154,.3);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  1rem;
  --s4:  1.5rem;
  --s5:  2.5rem;
  --s6:  4rem;
  --s7:  6rem;
  --s8: 10rem;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 100px;

  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --shadow-sm: 0 2px 12px rgba(30,22,18,.06);
  --shadow-md: 0 8px 32px rgba(30,22,18,.10);
  --shadow-lg: 0 24px 64px rgba(30,22,18,.14);

  --w: 1320px;
  --w-sm: 760px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--sand); color: var(--dark); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(3rem,8vw,7rem); font-weight: 300; }
h2 { font-size: clamp(2rem,4.5vw,3.6rem); }
h3 { font-size: clamp(1.4rem,2.5vw,1.9rem); }

/* Shared utility headings */
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem,4.5vw,3.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
}
.h2--lt { color: #fff; }

/* ---- LAYOUT ---- */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
}
.wrap--sm { max-width: var(--w-sm); }
.text-c  { text-align: center; }
.bg-linen { background: var(--bg-linen) !important; }

/* ---- TAGS / LABELS ---- */
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s3);
}
.tag--lt { color: rgba(255,255,255,.7); }

/* ---- DECO LINE ---- */
.deco-line {
  width: 40px;
  height: 1.5px;
  background: var(--terracotta);
  margin: var(--s3) 0 var(--s5);
  opacity: .6;
}
.deco-line--c { margin-left: auto; margin-right: auto; }

/* ---- BODY TEXT ---- */
.p-lead {
  font-size: clamp(1.1rem,1.8vw,1.3rem);
  line-height: 1.85;
  color: var(--text);
  max-width: 58ch;
}
.p-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 60ch;
}

/* ---- LINK ARROW ---- */
.lnk-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap .4s var(--ease-out);
}
.lnk-arrow:hover { gap: var(--s3); }
.lnk-arrow svg { flex-shrink: 0; }

/* ---- UTILITIES ---- */
.dnone-sm { display: block; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all .45s var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2.8rem; font-size: .88rem; }
.btn-full { width: 100%; }

/* Filled dark */
.btn-fill, .btn-dark {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--dark);
}
.btn-fill:hover, .btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,22,18,.22);
}

/* Terracotta warm */
.btn-warm {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-warm:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(181,98,46,.3);
}

/* Outline (on light bg) */
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Ghost light (on dark bg) */
.btn-ghost-lt {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-lt:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}

/* White fill (on dark bg) */
.btn-white {
  background: var(--bg);
  color: var(--dark);
  border-color: var(--bg);
}
.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,237,224,.25);
}

/* =====================================================
   HEADER
   ===================================================== */
.hdr {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 200;
  padding: 1.4rem 0;
  transition: background .5s var(--ease-out), padding .5s var(--ease-out), box-shadow .5s;
}

/* Hero-top: transparent */
.hdr--hero {
  background: transparent;
}

/* Scrolled: frosted glass */
.hdr--on {
  background: rgba(245,237,224,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(30,22,18,.08);
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
}

.hdr__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .01em;
  z-index: 201;
  transition: color .3s;
}
.hdr--hero .hdr__logo { color: #fff; }
.hdr--on .hdr__logo { color: var(--dark); }

.hdr__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem,3vw,2.5rem);
}

.hdr__lnk {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}
.hdr--hero .hdr__lnk { color: rgba(255,255,255,.8); }
.hdr--hero .hdr__lnk:hover { color: #fff; }
.hdr--on .hdr__lnk { color: var(--text); }
.hdr--hero .hdr__lnk--on { color: #fff; }
.hdr__lnk--on { color: var(--terracotta) !important; }

.hdr__lnk::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .4s var(--ease-out);
}
.hdr__lnk:hover::after,
.hdr__lnk--on::after { width: 100%; }

/* Header CTA button */
.hdr__cta {
  padding: .55rem 1.6rem;
  font-size: .78rem;
}
.hdr--hero .hdr__cta.btn-fill {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.hdr--hero .hdr__cta.btn-fill:hover { background: var(--terra-deep); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: all .4s var(--ease-out);
  transform-origin: center;
}
.hdr--hero .burger { color: #fff; }
.hdr--on .burger { color: var(--dark); }

/* Nav open (mobile overlay) */
.hdr--open .hdr__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--dark);
  align-items: center;
  justify-content: center;
  gap: var(--s5);
}
.hdr--open .hdr__lnk {
  color: rgba(255,255,255,.8);
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 300;
}
.hdr--open .hdr__lnk--on { color: var(--terracotta) !important; }
.hdr--open .hdr__cta { display: none; }

/* Burger animation when open */
.hdr--open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr--open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr--open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================
   HERO (homepage)
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background:
    rgba(20,14,10,.62),
    linear-gradient(to top, rgba(20,14,10,.88) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(20,14,10,.38) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--s4);
  max-width: 920px;
}

.hero__eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s4);
}

.hero__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: var(--s4);
}
.hero__title-a {
  display: block;
  font-size: clamp(3.2rem,8vw,7rem);
  letter-spacing: -.03em;
}
.hero__title-b {
  display: block;
  font-style: italic;
  font-size: clamp(3.6rem,9vw,8rem);
  letter-spacing: -.03em;
  color: rgba(255,255,255,.88);
}

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem,2.2vw,1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  margin-bottom: var(--s6);
  line-height: 1.6;
}

.hero__btns {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,.5);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollLine 2.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.3); opacity: .2; }
}
.hero__scroll-txt {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* =====================================================
   HERO MINI (inner pages)
   ===================================================== */
.hero-mini {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-mini--tall {
  height: 72vh;
  min-height: 520px;
}

.hero-mini__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.hero-mini__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero-mini__vignette {
  position: absolute;
  inset: 0;
  background:
    rgba(20,14,10,.58),
    linear-gradient(to top, rgba(20,14,10,.85) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(20,14,10,.32) 0%, transparent 40%);
}

.hero-mini__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--s4);
  max-width: 860px;
}
.hero-mini__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem,6vw,5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--s3);
}
.hero-mini__title em { font-style: italic; color: rgba(255,255,255,.8); }
.hero-mini__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem,1.8vw,1.3rem);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--s5);
  line-height: 1.65;
}
.hero-mini__content .btn { margin-top: var(--s2); }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  overflow: hidden;
  background: var(--dark);
  padding: 1rem 0;
}
.marquee__belt {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeRoll 32s linear infinite;
  width: max-content;
}
.marquee__belt span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem,1.5vw,1.15rem);
  color: rgba(255,255,255,.6);
  padding: 0 2rem;
  letter-spacing: .02em;
}
.marquee__belt i {
  font-style: normal;
  color: var(--terracotta);
  font-size: .7em;
  align-self: center;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__belt { animation-play-state: paused; }

/* =====================================================
   ÉDITO (homepage asymmetric)
   ===================================================== */
.edito {
  padding: var(--s7) 0;
}
.edito__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: start;
}
.edito__big {
  font-size: clamp(2.8rem,5vw,5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--dark);
}
.edito__big em {
  font-style: italic;
  color: var(--terracotta);
}
.edito__copy {
  padding-top: clamp(2rem,4vw,4rem);
}
.edito__copy .p-lead { margin-bottom: var(--s4); }
.edito__copy .p-body { margin-bottom: var(--s4); }

/* =====================================================
   SPLIT (editorial two-column)
   ===================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.split__media {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.split__media:hover img { transform: scale(1.04); }
.split__badge {
  position: absolute;
  bottom: var(--s4); left: var(--s4);
  background: rgba(245,237,224,.88);
  backdrop-filter: blur(8px);
  padding: .5rem 1.2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
}
.split__body {
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__body .p-lead { margin-bottom: var(--s4); }
.split__body .p-body { margin-bottom: var(--s5); }

/* Flip: image à droite */
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }

/* Stats bar */
.stats-bar {
  background: var(--dark);
  padding: var(--s5) 0;
}
.stats-bar__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s4) var(--s5);
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,4vw,3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__n sup {
  font-size: .45em;
  vertical-align: super;
  color: var(--terracotta);
}
.stat__l {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .4rem;
}

/* Équipements grid */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem,2vw,1.5rem);
  margin-top: var(--s6);
}
.equip-item {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  background: var(--white);
  border-radius: var(--r-md);
  border-top: 2px solid var(--sand);
  transition: border-color .3s, transform .3s;
}
.equip-item:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
}
.equip-item__icon {
  font-size: 1.5rem;
  line-height: 1;
}
.equip-item__name {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
}
.equip-item__desc {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Infos pratiques */
.infos {
  padding: var(--s7) 0;
}
.infos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem,4vw,4rem);
}
.info-col h3 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--sand-lt);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s3);
  padding: .7rem 0;
  border-bottom: 1px solid var(--sand-lt);
  font-size: .9rem;
}
.info-row__lbl {
  color: var(--text-soft);
  font-size: .82rem;
}
.info-row__val {
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

/* =====================================================
   PILLARS (4 column grid)
   ===================================================== */
.pillars {
  padding: var(--s7) 0;
}
.pillars__hd {
  margin-bottom: var(--s6);
}
.pillars__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem,3vw,3rem);
}
.pillar {
  padding: var(--s5) 0;
  border-top: 1px solid var(--sand);
}
.pillar__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -.04em;
}
.pillar__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: var(--s3);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .06em;
}
.pillar__txt {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  padding: var(--s7) 0;
}
.gallery__hd {
  margin-bottom: var(--s5);
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 3px;
  width: 100%;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-linen);
}
.gallery__cell--tall   { grid-row: span 2; }
.gallery__cell--wide   { grid-column: span 2; }
.gallery__cell--span3  { grid-column: span 3; }
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  display: block;
}
.gallery__cell:hover img { transform: scale(1.05); }
.gallery__cell-lbl {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(30,22,18,.45);
  backdrop-filter: blur(6px);
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
}

/* =====================================================
   MAP SECTION
   ===================================================== */
.map-section {
  position: relative;
  height: 560px;
}
.map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(.85) contrast(.95);
}
.map__card {
  position: absolute;
  bottom: var(--s5);
  left: var(--s5);
  width: clamp(260px, 28vw, 340px);
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: 0 8px 40px rgba(30,22,18,.18);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  z-index: 2;
}
.map__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin: 0;
}
.map__card-addr {
  font-size: .82rem;
  color: var(--text-soft);
  letter-spacing: .04em;
}
.map__dists {
  list-style: none;
  padding: 0;
  margin: var(--s2) 0 0;
  border-top: 1px solid var(--sand);
  padding-top: var(--s2);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.map__dists li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.map__dist-lieu {
  font-size: .85rem;
  color: var(--dark);
  font-weight: 400;
}
.map__dist-time {
  font-size: .78rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: .03em;
}

/* =====================================================
   AROUND (homepage section with bg image)
   ===================================================== */
.around {
  position: relative;
  padding: var(--s8) 0;
  overflow: hidden;
}
.around__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.around__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.around__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,.62);
}
.around__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.around__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem,2vw,1.4rem);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--s5);
  max-width: 52ch;
}
.around__dists {
  display: flex;
  gap: var(--s6);
  flex-wrap: wrap;
}
.dist {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.dist__n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.dist__n sup {
  font-size: .5em;
  vertical-align: super;
  font-weight: 400;
  color: var(--sand);
}
.dist__l {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.around .tag--lt, .around .h2--lt { display: block; }
.around .h2--lt { margin-bottom: var(--s4); }

/* =====================================================
   INVITE
   ===================================================== */
.invite {
  padding: var(--s7) 0;
}
.invite__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.invite__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.invite__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.invite__img:hover img { transform: scale(1.04); }
.invite__body .p-lead { margin-bottom: var(--s4); }
.invite__btns {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: var(--s7) 0;
  background: var(--bg);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem);
  align-items: start;
}
.contact__info .p-body { margin-bottom: var(--s5); }
.contact__addr {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.contact__row {
  display: flex;
  gap: var(--s4);
  font-size: .92rem;
  align-items: baseline;
  border-bottom: 1px solid var(--sand-lt);
  padding-bottom: var(--s3);
}
.contact__lbl {
  min-width: 120px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  flex-shrink: 0;
}

/* Form */
.contact__form-wrap {
  background: var(--bg-linen);
  border-radius: var(--r-lg);
  padding: clamp(2rem,4vw,3.5rem);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}
.fg {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.fg label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--sand);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .3s;
  outline: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,98,46,.1);
}
.fg textarea { resize: vertical; min-height: 100px; }

/* Feedback messages */
.form-feedback { margin-top: var(--s2); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s2);
  padding: var(--s4) var(--s3);
}
.form-success svg {
  flex-shrink: 0;
  margin-bottom: .5rem;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--dark);
}
.form-success__sub {
  font-size: .95rem;
  color: var(--text-soft);
  max-width: 36ch;
  line-height: 1.7;
}
.form-error {
  font-size: .9rem;
  color: #b0392e;
  background: #fdf1f0;
  border: 1px solid #f5c6c2;
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.ftr {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: var(--s6) 0 var(--s4);
}
.ftr__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  margin-bottom: var(--s6);
}
.ftr__brand p {
  font-size: .85rem;
  margin-top: .3rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.ftr__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: var(--s3);
}
.ftr h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--s3);
}
.ftr ul li { margin-bottom: .6rem; }
.ftr ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.ftr ul li a:hover { color: #fff; }
.ftr__social {
  display: flex;
  gap: var(--s4);
  margin-top: var(--s4);
}
.ftr__social a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.ftr__social a:hover { color: #fff; }
.ftr__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--s4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.ftr__bottom a {
  color: rgba(255,255,255,.45);
  transition: color .3s;
}
.ftr__bottom a:hover { color: rgba(255,255,255,.8); }

/* =====================================================
   CLIP REVEAL (.js-cr)
   ===================================================== */
.js-cr {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-out);
}
.js-cr.cr-on {
  clip-path: inset(0 0% 0 0);
}

/* =====================================================
   SCROLL REVEAL (.rv)
   ===================================================== */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   ALENTOURS PAGE — specific components
   ===================================================== */

/* A-INTRO */
.a-intro {
  padding: var(--s7) 0 var(--s6);
}
.a-intro .p-lead {
  margin: var(--s4) auto;
  text-align: center;
}
.a-intro .p-body {
  margin: 0 auto;
  text-align: center;
  color: var(--text-soft);
}

/* A-SECTION */
.a-section {
  padding: var(--s7) 0;
}
.a-section__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s5);
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--sand-lt);
}
.a-section__hd-left { flex: 1; }
.a-section__hd-left .deco-line { margin-bottom: var(--s4); }
.a-section__hd-left .p-body { max-width: 52ch; }

/* Carousel nav buttons */
.carousel-nav {
  display: flex;
  gap: var(--s2);
  flex-shrink: 0;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .35s var(--ease-out);
}
.carousel-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: scale(1.06);
}

/* Carousel scroll container */
.carousel {
  overflow: hidden;
  position: relative;
}
.carousel__track {
  display: flex;
  gap: clamp(1rem,2vw,1.5rem);
  transition: transform .55s var(--ease-out);
  will-change: transform;
  cursor: grab;
}
.carousel__track:active { cursor: grabbing; }

/* ---- ACARD (gastronomie / marchés) ---- */
.acard {
  flex: 0 0 clamp(280px, 33%, 380px);
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.acard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.acard--compact .acard__img { aspect-ratio: 16/9; }

.acard__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-linen);
}
.acard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.acard:hover .acard__img img { transform: scale(1.06); }

/* Fallback placeholder */
.acard__img--fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--bg-linen) 0%, var(--sand) 100%);
}
.acard__img--fallback img { display: none; }

.acard__cat {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: rgba(30,22,18,.65);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: var(--r-pill);
}

.acard__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1;
}
.acard__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acard__lieu {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.acard__dist {
  font-size: .72rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: .06em;
}
.acard__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--dark);
  line-height: 1.2;
}
.acard__txt {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
}
.acard__tags {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-top: var(--s1);
}
.acard__tags span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--bg-linen);
  color: var(--text-soft);
  padding: .2rem .7rem;
  border-radius: var(--r-pill);
}
.acard__cta {
  margin-top: var(--s2);
}

/* ---- NATURE GRID ---- */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem,2vw,1.5rem);
}
.nature-grid .ncard:nth-child(4),
.nature-grid .ncard:nth-child(5) {
  grid-column: span 1;
}
/* 5 items: first row 3, second row 2 centered */
@supports (grid-template-columns: subgrid) {
  .nature-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .nature-grid .ncard:nth-child(1),
  .nature-grid .ncard:nth-child(2),
  .nature-grid .ncard:nth-child(3) { grid-column: span 2; }
  .nature-grid .ncard:nth-child(4) { grid-column: 2 / span 2; }
  .nature-grid .ncard:nth-child(5) { grid-column: 4 / span 2; }
}

.ncard {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.ncard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.ncard__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-linen);
}
.ncard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.ncard:hover .ncard__img img { transform: scale(1.06); }
.ncard__img--fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-linen) 0%, var(--sage-lt) 100%);
}
.ncard__img--fallback img { display: none; }
.ncard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--s3);
}
.ncard__cat-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(30,22,18,.45);
  backdrop-filter: blur(4px);
  padding: .25rem .7rem;
  border-radius: var(--r-pill);
}
.ncard__body {
  padding: var(--s4);
}
.ncard__meta {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s2);
}
.ncard__meta span:last-child { color: var(--terracotta); }
.ncard__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--s2);
  letter-spacing: -.01em;
}
.ncard__txt {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ---- CULTURE GRID ---- */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem,2vw,2rem);
}
.ccard {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  display: flex;
  flex-direction: column;
}
.ccard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.ccard__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-linen);
}
.ccard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.ccard:hover .ccard__img img { transform: scale(1.06); }
.ccard__img--fallback::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-linen) 0%, var(--sand) 100%);
}
.ccard__img--fallback img { display: none; }
.ccard__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1;
}
.ccard__cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.ccard__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.ccard__lieu {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.ccard__txt {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
}
.ccard__body .lnk-arrow { margin-top: var(--s3); }

/* ---- DESTINATIONS ---- */
.destinations { }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  align-items: start;
}
.dest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--sand-lt);
  gap: var(--s4);
}
.dest-item__left {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.dest-item__n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: -.04em;
  flex-shrink: 0;
  line-height: 1;
}
.dest-item__city {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -.01em;
}
.dest-item__desc {
  display: block;
  font-size: .8rem;
  color: var(--text-soft);
  margin-top: .1rem;
}
.dest-item__time {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--terracotta);
  text-transform: uppercase;
  flex-shrink: 0;
}
.dest-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-linen);
}
.dest-map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.dest-map__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  color: var(--text-soft);
  text-align: center;
  padding: var(--s5);
}
.dest-map__placeholder svg { color: var(--sand); }
.dest-map__placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
}
.dest-map__placeholder small {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.dest-map__placeholder code {
  font-size: .72rem;
  font-family: monospace;
  background: var(--bg);
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  color: var(--terracotta);
  margin-top: var(--s2);
}

/* ---- CTA BAND ---- */
.cta-band {
  position: relative;
  padding: var(--s8) 0;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,.68);
}
.cta-band__body {
  position: relative;
  z-index: 2;
}
.cta-band__body .tag--lt { display: block; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin: var(--s3) 0 var(--s4);
  letter-spacing: -.02em;
}
.cta-band__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem,1.8vw,1.3rem);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--s5);
  line-height: 1.6;
}
.cta-band__btns {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .stats-bar__row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  .infos__grid { grid-template-columns: 1fr 1fr; }
  .pillars__row { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__cell--tall  { grid-row: auto; }
  .gallery__cell--wide  { grid-column: span 2; }
  .gallery__cell--span3 { grid-column: span 2; }
  .nature-grid { grid-template-columns: repeat(2, 1fr); }
  @supports (grid-template-columns: subgrid) {
    .nature-grid { grid-template-columns: repeat(2, 1fr); }
    .nature-grid .ncard:nth-child(1),
    .nature-grid .ncard:nth-child(2),
    .nature-grid .ncard:nth-child(3),
    .nature-grid .ncard:nth-child(4) { grid-column: span 1; }
    .nature-grid .ncard:nth-child(5) { grid-column: span 2; }
  }
}

@media (max-width: 768px) {
  .hdr__nav { display: none; }
  .hdr__cta { display: none; }
  .burger { display: flex; }

  .dnone-sm { display: none; }

  .edito__grid { grid-template-columns: 1fr; }
  .edito__copy { padding-top: 0; }

  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 16/10; min-height: 280px; }
  .split__media img { height: 100%; }

  .invite__grid { grid-template-columns: 1fr; }
  .invite__img { aspect-ratio: 16/9; }

  .map-section { height: auto; display: flex; flex-direction: column; }
  .map__frame { position: relative; height: 340px; }
  .map__card { position: relative; bottom: auto; left: auto; width: 100%; border-radius: 0; box-shadow: none; border-top: 3px solid var(--terracotta); }
  .contact__grid { grid-template-columns: 1fr; }

  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .ftr__brand { grid-column: span 2; }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__cell--span3 { grid-column: span 2; }

  .stats-bar__row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .infos__grid { grid-template-columns: 1fr; }
  .split--flip { direction: ltr; }
  .a-section__hd { flex-direction: column; align-items: flex-start; }
  .carousel-nav { align-self: flex-start; }

  .acard { flex: 0 0 clamp(240px,80vw,340px); }

  .culture-grid { grid-template-columns: 1fr; }
  .nature-grid { grid-template-columns: 1fr; }
  @supports (grid-template-columns: subgrid) {
    .nature-grid { grid-template-columns: 1fr; }
    .nature-grid .ncard { grid-column: span 1 !important; }
  }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-map { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .hero-mini--tall { height: 85vh; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .pillars__row { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .ftr__brand { grid-column: span 1; }
  .frow { grid-template-columns: 1fr; }
  .around__dists { gap: var(--s4); }
  .hero__btns { flex-direction: column; align-items: center; }
  .invite__btns { flex-direction: column; }
  .cta-band__btns { flex-direction: column; align-items: center; }
}
