/* ===================================
   HOTEL LA PLANQUETTE — STYLE
   =================================== */

/* --- RESET & VARIABLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FFF;
  --bg2: #F7F5F2;
  --bg3: #EFECEA;
  --text: #1A1A1A;
  --text2: #5C5C5C;
  --text3: #8A8A8A;
  --orange: #D4752C;
  --orange-soft: #F2DCC8;
  --orange-dark: #B8611F;
  --orange-glow: #F4A264;
  --radius: 10px;
  --transition: .3s ease;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}

/* --- NAVIGATION --- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all var(--transition);
}

.topbar--white {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg3);
}

.topbar--transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.topbar--transparent.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--bg3);
}

.tb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tb-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}

.topbar--transparent:not(.scrolled) .tb-logo {
  color: white;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

.tb-logo span {
  color: var(--orange);
}

.tb-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.tb-nav a {
  color: var(--text3);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
  position: relative;
}

.tb-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}

.tb-nav a:hover::after,
.tb-nav a.active::after {
  width: 100%;
}

.tb-nav a:hover,
.tb-nav a.active {
  color: var(--orange);
}

.topbar--transparent:not(.scrolled) .tb-nav a {
  color: rgba(255, 255, 255, .85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

.topbar--transparent:not(.scrolled) .tb-nav a:hover,
.topbar--transparent:not(.scrolled) .tb-nav a.active {
  color: white;
}

.topbar--transparent:not(.scrolled) .tb-nav a::after {
  background: white;
}

.tb-cta {
  background: var(--orange) !important;
  color: white !important;
  border: none;
  padding: .55rem 1.4rem;
  font-size: .78rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border-radius: 6px;
  transition: all .2s;
  text-decoration: none;
}

.tb-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

.tb-cta::after {
  display: none !important;
}

/* --- ACCUEIL NAV --- */

/* --- LANGUAGE DROPDOWN --- */
.lang-drop {
  position: relative;
}

.lang-drop-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: 1px solid var(--bg3);
  border-radius: 6px;
  padding: .35rem .6rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text3);
  transition: all .2s;
}

.lang-drop-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.topbar--transparent:not(.scrolled) .lang-drop-btn {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
}

.topbar--transparent:not(.scrolled) .lang-drop-btn:hover {
  color: white;
  border-color: rgba(255,255,255,.5);
}

.topbar--transparent:not(.scrolled) .lang-drop-btn svg {
  stroke: rgba(255,255,255,.7);
}

.lang-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 120;
  min-width: 150px;
}

.lang-drop.open .lang-drop-menu {
  display: block;
  animation: langIn .2s ease;
}

@keyframes langIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-drop-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: .65rem 1rem;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--text2);
  cursor: pointer;
  transition: all .15s;
  border-bottom: 1px solid var(--bg3);
}

.lang-drop-menu button:last-child {
  border: none;
}

.lang-drop-menu button:hover {
  background: var(--bg2);
  color: var(--orange);
}

.lang-drop-menu button.lang-active {
  color: var(--orange);
  font-weight: 500;
  background: rgba(212,117,44,.04);
}

/* Hide Google Translate bar/banner */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
.goog-te-gadget { display: none !important; }

/* --- HAMBURGER MOBILE --- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
  background: none;
  border: none;
}

@media (min-width: 1201px) {
  .hamburger { display: none !important; }
  .lang-drop-mobile { display: none !important; }
  .tb-right-mobile { display: contents; }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .3s ease;
  border-radius: 2px;
}

.topbar--transparent:not(.scrolled) .hamburger span {
  background: white;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger.open span {
  background: var(--text) !important;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 99;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active {
  display: block;
}

/* --- LEGAL PAGES --- */
.legal-section {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 2rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--bg3);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: .6rem;
}

.legal-content ul {
  list-style: none;
  margin: .5rem 0 1rem;
}

.legal-content ul li {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.7;
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* --- SHARED --- */
.lbl {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: .6rem;
}

.bf {
  background: var(--orange);
  color: white;
  border: none;
  padding: .8rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all .2s;
}

.bf:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 117, 44, .3);
}

.sec {
  padding: 5rem 3rem;
}

.sec--alt {
  background: var(--bg2);
}

.sc {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.sc h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: .8rem;
  letter-spacing: -.01em;
}

.sc p {
  color: var(--text3);
  font-size: .9rem;
  line-height: 1.7;
}

.page-hero {
  padding: 7.5rem 3rem 3.5rem;
  background: var(--bg2);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: .5rem;
}

.page-hero p {
  color: var(--text3);
  font-size: .88rem;
}

.section-link {
  text-align: center;
  margin-top: 1.2rem;
}

.section-link a {
  color: var(--orange);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.section-link a:hover {
  color: var(--orange-dark);
}

/* --- PAGE SYSTEM --- */
.page {
  display: none;
  opacity: 0;
}

.page.visible {
  display: block;
  animation: pageIn .5s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible-anim {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ===================================
   LANDING PAGE
   =================================== */

/* --- HERO --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 12, 8, .35) 0%, rgba(15, 12, 8, .6) 100%);
}

.hero-c {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .72rem;
  font-weight: 500;
  padding: .5rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255, 255, 255, .2);
}

.hero-badge i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; box-shadow: 0 0 6px var(--orange); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  color: white;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-glow);
}

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .15);
}

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

.bl {
  background: rgba(255, 255, 255, .12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .35);
  padding: .8rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all .25s;
  backdrop-filter: blur(4px);
}

.bl:hover {
  background: rgba(255, 255, 255, .22);
  border-color: white;
  transform: translateY(-2px);
}

.scroll-h {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.scroll-h::after {
  content: '';
  width: 1.5px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .6), transparent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

/* --- BAND / STATS --- */
.band {
  display: flex;
  border-bottom: 1px solid var(--bg3);
}

.band-item {
  flex: 1;
  padding: 1.8rem;
  text-align: center;
  border-right: 1px solid var(--bg3);
  transition: background .3s;
}

.band-item:last-child {
  border: none;
}

.band-item:hover {
  background: var(--bg2);
}

.band-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--orange);
}

.band-lbl {
  font-size: .66rem;
  color: var(--text3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* --- SPLIT / ABOUT --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.split:hover .split-img img {
  transform: scale(1.03);
}

.split-txt {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.split-txt h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.split-txt p {
  color: var(--text2);
  font-size: .87rem;
  line-height: 1.75;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.split-txt p + p {
  margin-top: .6rem;
}

.split-txt .lbl {
  position: relative;
  z-index: 1;
}

.split-quote {
  margin-top: 1rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--orange);
  font-size: .9rem;
  position: relative;
  z-index: 1;
}

.sheep-oneline {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  background: url('../assets/img/oneline-orange.png') no-repeat right center/contain;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}

/* --- ROOMS --- */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 3rem auto 0;
  max-width: 1100px;
}

.rc {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bg3);
  background: var(--bg);
  transition: all .3s;
}

.rc:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  border-color: transparent;
}

.rc-img {
  height: 200px;
  overflow: hidden;
}

.rc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.rc:hover .rc-img img {
  transform: scale(1.06);
}

.rc-body {
  padding: 1.3rem 1.5rem;
}

.rc-tag {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 500;
  margin-bottom: .5rem;
}

.rc h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .4rem;
}

.rc-info {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rc-ft {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: .8rem;
  border-top: 1px solid var(--bg3);
}

.rc-pr {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--orange);
}

.rc-pr span {
  font-size: .7rem;
  color: var(--text3);
  font-family: 'DM Sans', sans-serif;
}

.rc-se {
  font-size: .68rem;
  color: var(--text3);
}

/* --- LANDING CAT --- */
.landing-cat-section {
  padding: 0;
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 3;
}

.landing-cat {
  position: relative;
  width: 130px;
  margin-left: auto;
  margin-right: 10%;
  pointer-events: none;
  transform: translateY(-85%);
}

.landing-cat img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,.08));
}

@media (max-width: 768px) {
  .landing-cat {
    width: 80px;
    margin-right: 6%;
    transform: translateY(-145%);
  }
}

/* --- WEATHER WIDGET --- */
.weather-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .6rem 1.2rem;
  background: var(--bg2);
  border: 1px solid var(--bg3);
  border-radius: 30px;
  width: fit-content;
  margin: 1.5rem auto;
}

.weather-icon { font-size: 1.2rem; }

.weather-temp {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--orange);
}

.weather-desc {
  font-size: .75rem;
  color: var(--text3);
}

/* --- GOOGLE MAPS --- */
.ct-map {
  max-width: 960px;
  margin: 0 auto;
}

.ct-map-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}

/* --- FETE / REGION --- */
.fete {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--orange);
  max-width: 1100px;
  margin: 3rem auto 0;
}

.fete-l {
  background: var(--orange);
  padding: 2.2rem;
  color: white;
}

.fete-l .lbl {
  color: rgba(255, 255, 255, .5);
}

.fete-l h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.fete-l > p {
  font-size: .82rem;
  opacity: .85;
}

.fete-r {
  padding: 2.2rem;
}

.fete-r p {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.75;
}

.fete-r .extra {
  margin-top: .8rem;
  font-size: .76rem;
  color: var(--orange);
  font-weight: 500;
}

.rgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
  margin: 1.5rem auto 0;
  max-width: 1200px;
}

.rcard {
  padding: 1.2rem;
  border: 1px solid var(--bg3);
  border-radius: 8px;
  transition: all .3s;
}

.rcard:hover {
  border-color: var(--orange);
  background: var(--bg2);
  transform: translateY(-2px);
}

.rcard h4 {
  font-family: 'Fraunces', serif;
  font-size: .88rem;
  font-weight: 400;
  margin-bottom: .2rem;
}

.rcard p {
  font-size: .74rem;
  color: var(--text3);
  line-height: 1.5;
}

/* V2 cards with thumbnail */
.rcard-v2 {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.rcard-text {
  flex: 1;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.rcard-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .5rem;
}

.rcard-foot .tt {
  margin-top: 0;
}

.rcard-btn {
  font-size: .58rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .05em;
}

.rcard:hover .rcard-btn {
  color: var(--orange-dark);
  text-decoration: underline;
}

.rcard-thumb {
  width: 70px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .rcard-thumb {
    width: 55px;
  }
}

.tt {
  display: inline-block;
  margin-top: .4rem;
  font-size: .58rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .15rem .5rem;
  border-radius: 3px;
}

/* --- ETAPE --- */
.etape-sec {
  padding: 4.5rem 3rem;
  background: linear-gradient(135deg, var(--bg2) 0%, #FDF6EF 100%);
  position: relative;
  overflow: hidden;
}

.etape-sec::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 2px solid var(--orange-soft);
  border-radius: 50%;
  opacity: .4;
}

.etape-sec::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--orange-soft);
  border-radius: 50%;
  opacity: .3;
}

/* Etape V2 */
.etape-v2 {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.etape-header h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: .5rem;
}

.etape-header p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.etape-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.etape-step {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  flex: 1;
  max-width: 200px;
  transition: all .3s;
  position: relative;
}

.etape-step:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.etape-step-num {
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etape-step-icon {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.etape-step-name {
  font-weight: 500;
  font-size: .82rem;
  margin-bottom: .2rem;
}

.etape-step-desc {
  font-size: .72rem;
  color: var(--text3);
}

.etape-step-arrow {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 300;
  opacity: .5;
}

.etape-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.etape-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.etape-from {
  font-size: .72rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.etape-amt {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}

.etape-per {
  font-size: .72rem;
  color: var(--text3);
}

.etape-note {
  font-size: .72rem;
  color: var(--text3);
}

/* --- GALLERY --- */
.gstrip-spacer {
  height: 2.5rem;
}

.gstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
  overflow: hidden;
}

.gi {
  overflow: hidden;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gi:hover img {
  transform: scale(1.08);
}

/* --- SERVICES --- */
.svcs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 2.5rem auto 0;
  border: 1px solid var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1100px;
}

.sv {
  padding: 1.5rem .8rem;
  text-align: center;
  border-right: 1px solid var(--bg3);
  transition: all .3s;
}

.sv:last-child {
  border: none;
}

.sv:hover {
  background: var(--bg2);
  transform: translateY(-2px);
}

.sv-i {
  width: 40px;
  height: 40px;
  margin: 0 auto .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 1rem;
}

.sv-n {
  font-size: .72rem;
  font-weight: 500;
  margin-bottom: .15rem;
}

.sv-p {
  font-size: .6rem;
  color: var(--orange);
  font-weight: 500;
}

/* --- TARIFS (landing) --- */
.tcard {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--bg3);
  overflow: hidden;
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.ttabs {
  display: flex;
  border-bottom: 1px solid var(--bg3);
}

.tab {
  flex: 1;
  text-align: center;
  padding: .9rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text3);
  cursor: pointer;
  transition: all .2s;
  border-bottom: 2px solid transparent;
}

.tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: rgba(212, 117, 44, .03);
}

.tab-sub {
  font-size: .58rem;
  color: var(--text3);
  display: block;
}

.tbody {
  padding: 1.3rem 1.8rem;
}

.trow {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: .4rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--bg3);
  font-size: .83rem;
  align-items: center;
}

.trow:last-child {
  border: none;
}

.trow.hd {
  font-size: .63rem;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trow .pr {
  font-family: 'Fraunces', serif;
  color: var(--orange);
  font-size: .95rem;
}

.trow .na {
  font-size: .7rem;
  color: var(--text3);
  font-style: italic;
  grid-column: span 2;
}

.tex {
  padding: 1rem 1.8rem;
  background: var(--bg2);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: var(--text2);
  border-top: 1px solid var(--bg3);
}

.tex strong {
  font-weight: 500;
  color: var(--text);
}

/* --- CONTACT --- */

/* Quick cards */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.ct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--bg3);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all .3s;
}

.ct-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.ct-card-icon {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.ct-card strong {
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: .2rem;
}

.ct-card span {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 500;
}

/* Grid form + infos */
.ct-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.ct-form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.ct-form-sub {
  color: var(--text3);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}

.ct-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-info-block strong {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .4rem;
}

.ct-info-block p {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.6;
}

.ct-access {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ct-access > div {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text2);
  padding: .3rem 0;
  border-bottom: 1px solid var(--bg3);
}

.ct-access > div:last-child {
  border: none;
}

.ct-access span:last-child {
  color: var(--orange);
  font-weight: 500;
  font-size: .78rem;
}

.ct-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
}

.cl {
  font-size: .86rem;
  color: var(--text2);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cl strong {
  font-weight: 500;
  color: var(--text);
  display: block;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .12rem;
}

.ci {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--bg3);
  color: var(--text);
  padding: .8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  margin-bottom: .65rem;
  outline: none;
  transition: all .2s;
  border-radius: 6px;
}

.ci:focus {
  border-color: var(--orange);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(212, 117, 44, .1);
}

.ci::placeholder {
  color: var(--text3);
}

.crow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

textarea.ci {
  height: 120px;
  resize: vertical;
}

.cnote {
  margin-top: 1.3rem;
  padding: 1rem;
  background: var(--orange-soft);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--text2);
}

.cnote strong {
  color: var(--orange-dark);
  font-weight: 500;
}

.soc-links {
  margin-top: .8rem;
}

.soc {
  display: inline-flex;
  align-items: center;
  padding: .4rem .8rem;
  border: 1px solid var(--bg3);
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: all .2s;
  margin: .2rem .2rem 0 0;
}

.soc:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(212, 117, 44, .04);
}

.btn-full {
  width: 100%;
  padding: .85rem;
}

/* ===================================
   TARIFS PAGE
   =================================== */
.tp-section {
  max-width: 960px;
  margin: 0 auto;
}

/* Toggle saison */
.tp-toggle {
  display: flex;
  background: var(--bg2);
  border-radius: 10px;
  padding: 4px;
  max-width: 440px;
  margin: 0 auto 3rem;
  border: 1px solid var(--bg3);
}

.tp-tog-btn {
  flex: 1;
  background: none;
  border: none;
  padding: .8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
}

.tp-tog-btn.active {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.tp-tog-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text3);
}

.tp-tog-btn.active .tp-tog-label {
  color: var(--orange);
}

.tp-tog-dates {
  display: block;
  font-size: .65rem;
  color: var(--text3);
  margin-top: .1rem;
}

/* Cards */
.tp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tp-card {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s;
}

.tp-card:hover {
  border-color: var(--orange-soft);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  transform: translateY(-3px);
}

.tp-card--accent {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(212, 117, 44, .12);
}

.tp-card-pop {
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 20px;
}

.tp-card-head {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg3);
}

.tp-card-icon {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.tp-card-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.tp-card-sub {
  font-size: .72rem;
  color: var(--text3);
}

.tp-card-prices {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-bottom: 1.5rem;
}

.tp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--bg3);
}

.tp-price-row:last-child {
  border: none;
}

.tp-price-label {
  font-size: .8rem;
  color: var(--text2);
}

.tp-price-val {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--orange);
  font-weight: 500;
}

.tp-price-row--na {
  opacity: .6;
}

.tp-price-na {
  font-size: .72rem;
  color: var(--text3);
  font-style: italic;
}

.tp-card-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: .7rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.tp-card-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.tp-card--accent .tp-card-cta {
  box-shadow: 0 4px 12px rgba(212, 117, 44, .3);
}

/* Etape tarifs */
.tp-etape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: white;
  border: 1px solid var(--orange);
  border-radius: 12px;
}

.tp-etape h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.tp-etape p {
  color: var(--text2);
  font-size: .85rem;
}

.tp-etape-note {
  font-size: .7rem;
  color: var(--text3);
  margin-top: .4rem;
  display: block;
}

.tp-etape-right {
  text-align: center;
  flex-shrink: 0;
}

.tp-etape-from {
  display: block;
  font-size: .65rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tp-etape-price {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1.1;
}

.tp-etape-per {
  display: block;
  font-size: .68rem;
  color: var(--text3);
}

/* Extras tarifs */
.tp-extras {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.tp-extras-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.tp-extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tp-extra {
  padding: 1.2rem;
  background: var(--bg2);
  border-radius: 10px;
  border: 1px solid var(--bg3);
  transition: all .2s;
}

.tp-extra:hover {
  border-color: var(--orange-soft);
}

.tp-extra-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: .2rem;
}

.tp-extra-name {
  font-size: .8rem;
  font-weight: 500;
}

.tp-extra-detail {
  font-size: .68rem;
  color: var(--text3);
}

/* Info pratiques tarifs */
.tp-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tp-info p {
  font-size: .8rem;
  color: var(--text3);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tp-info .bf {
  text-decoration: none;
}

/* ===================================
   CHAMBRES PAGE
   =================================== */

/* -- Intro -- */
.ch-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ch-intro-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ch-intro-text p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.8;
}

.ch-intro-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.ch-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  background: var(--bg2);
  border-radius: 8px;
  border: 1px solid var(--bg3);
  transition: all .2s;
}

.ch-badge:hover {
  border-color: var(--orange-soft);
  background: white;
}

.ch-badge-icon {
  font-size: 1rem;
}

.ch-badge-text {
  font-size: .76rem;
  font-weight: 500;
  color: var(--text2);
}

/* -- Room cards -- */
.ch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1060px;
  margin: 0 auto;
  border-bottom: 1px solid var(--bg3);
}

.ch-card--reverse {
  direction: rtl;
}

.ch-card--reverse > * {
  direction: ltr;
}

.ch-card-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.ch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

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

/* Carousel */
.ch-carousel {
  position: relative;
}

.ch-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}

.ch-carousel-img.active {
  opacity: 1;
  position: relative;
}

.ch-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all .2s;
  opacity: 0;
  line-height: 1;
}

.ch-carousel:hover .ch-arrow {
  opacity: 1;
}

.ch-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.ch-arrow-l { left: .8rem; }
.ch-arrow-r { right: .8rem; }

.ch-carousel-dots {
  position: absolute;
  bottom: .8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 2;
}

.ch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .2s;
  border: 1.5px solid white;
}

.ch-dot.active {
  background: white;
}

/* Room quantity badge */
.ch-card-qty {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(0,0,0,.5);
  color: white;
  font-size: .65rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.ch-card-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: white;
  color: var(--orange);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.ch-card--reverse .ch-card-tag {
  left: auto;
  right: 1.2rem;
}

.ch-card-body {
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ch-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .8rem;
  line-height: 1.3;
}

.ch-card-desc {
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.ch-card-equip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.ch-card-equip span {
  font-size: .72rem;
  color: var(--text2);
  background: var(--bg2);
  padding: .35rem .7rem;
  border-radius: 20px;
  border: 1px solid var(--bg3);
}

.ch-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--bg3);
}

.ch-card-price {
  display: flex;
  flex-direction: column;
}

.ch-price-big {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}

.ch-price-sub {
  color: var(--text3);
  font-size: .78rem;
}

.ch-price-hs {
  font-size: .68rem;
  color: var(--text3);
  margin-top: .2rem;
}

.ch-card-btn {
  text-decoration: none;
  white-space: nowrap;
  font-size: .74rem;
}

/* -- Bon à savoir -- */
.ch-bon {
  max-width: 900px;
  margin: 0 auto;
}

.ch-bon-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

.ch-bon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.ch-bon-item {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all .2s;
}

.ch-bon-item:hover {
  border-color: var(--orange-soft);
  transform: translateY(-2px);
}

.ch-bon-icon {
  font-size: 1.5rem;
  margin-bottom: .6rem;
}

.ch-bon-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: .4rem;
}

.ch-bon-item p {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.6;
}

/* -- CTA -- */
.ch-cta {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, #FDF6EF, var(--bg2));
  border-radius: 14px;
  border: 1px solid var(--orange-soft);
}

.ch-cta h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .4rem;
}

.ch-cta p {
  color: var(--text2);
  font-size: .88rem;
  margin-bottom: 1.5rem;
}

.ch-cta-btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ch-cta-btns .bf {
  text-decoration: none;
}

.ch-cta-mobile {
  text-decoration: none;
  background: white;
  color: var(--orange);
  border-color: var(--orange);
}

/* ===================================
   REGION PAGE
   =================================== */

/* Intro */
.rg-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.rg-intro-text {
  max-width: 520px;
}

.rg-intro-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 400;
  margin-bottom: .8rem;
  line-height: 1.3;
}

.rg-intro-text p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.75;
}

.rg-intro-stats {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.rg-stat {
  text-align: center;
  padding: 1rem 1.2rem;
  background: var(--bg2);
  border-radius: 10px;
  border: 1px solid var(--bg3);
}

.rg-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .2rem;
}

.rg-stat-lbl {
  font-size: .65rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Fête */
.rg-fete {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bg3);
  background: white;
}

.rg-fete-img {
  overflow: hidden;
  min-height: 280px;
}

.rg-fete-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rg-fete-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rg-fete-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .8rem;
}

.rg-fete-body p {
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.75;
}

.rg-fete-extra {
  margin-top: .8rem;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 500;
  padding-top: .8rem;
  border-top: 1px solid var(--bg3);
}

/* POI - Points d'intérêt */
.rg-pois {
  max-width: 960px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rg-poi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--bg3);
}

.rg-poi--reverse {
  direction: rtl;
}

.rg-poi--reverse > * {
  direction: ltr;
}

.rg-poi-img {
  overflow: hidden;
  min-height: 280px;
}

.rg-poi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.rg-poi:hover .rg-poi-img img {
  transform: scale(1.04);
}

.rg-poi-body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rg-poi-time {
  display: inline-block;
  font-size: .62rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .2rem .6rem;
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  align-self: flex-start;
}

.rg-poi-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .5rem;
}

.rg-poi-body p {
  color: var(--text2);
  font-size: .86rem;
  line-height: 1.7;
}

/* Quick grid */
.rg-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1060px;
  margin: 2.5rem auto 0;
}

.rg-quick {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bg3);
  background: white;
  transition: all .3s;
}

.rg-quick:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  border-color: transparent;
}

.rg-quick-img {
  height: 140px;
  overflow: hidden;
}

.rg-quick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.rg-quick:hover .rg-quick-img img {
  transform: scale(1.05);
}

.rg-quick-body {
  padding: 1rem;
}

.rg-quick-body h4 {
  font-family: 'Fraunces', serif;
  font-size: .9rem;
  font-weight: 400;
  margin-bottom: .2rem;
}

.rg-quick-body p {
  font-size: .74rem;
  color: var(--text3);
  line-height: 1.5;
  margin-bottom: .4rem;
}

.rg-quick-time {
  font-size: .6rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .15rem .5rem;
  border-radius: 3px;
}

/* Placeholder pour photos manquantes */
.rg-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--text3);
  font-style: italic;
  border: 2px dashed var(--bg3);
}

/* ===================================
   RESERVATION PAGE
   =================================== */
.rsv-section {
  max-width: 1000px;
  margin: 0 auto;
}

.rsv-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.rsv-form {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 12px;
  padding: 2.5rem;
}

.rsv-form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--bg3);
}

.rsv-field {
  margin-bottom: .8rem;
}

.rsv-field label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: .3rem;
}

.rsv-field select.ci {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2rem;
}

.rsv-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.rsv-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1.2rem 0;
  padding: 1rem;
  background: var(--bg2);
  border-radius: 8px;
}

.rsv-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text2);
  cursor: pointer;
}

.rsv-check input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

/* Conditions */
.rsv-conditions {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg2);
  border-radius: 10px;
  border: 1px solid var(--bg3);
}

.rsv-conditions h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.rsv-cond-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.rsv-cond-item {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.rsv-cond-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.rsv-cond-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: .1rem;
}

.rsv-cond-item p {
  font-size: .76rem;
  color: var(--text3);
  line-height: 1.5;
}

.rsv-accept {
  padding-top: 1rem;
  border-top: 1px solid var(--bg3);
  font-size: .82rem;
}

.rsv-accept a {
  text-decoration: underline;
}

.rsv-submit {
  width: 100%;
  padding: .9rem;
  font-size: .88rem;
  margin-top: .5rem;
}

.rsv-submit.disabled {
  background: var(--bg3);
  color: var(--text3);
  cursor: not-allowed;
  pointer-events: none;
}

.rsv-summary-deposit span:last-child {
  font-family: 'Fraunces', serif;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 500;
}

.rsv-legal {
  font-size: .7rem;
  color: var(--text3);
  text-align: center;
  margin-top: .8rem;
  line-height: 1.5;
}

/* Summary */
.rsv-summary {
  position: sticky;
  top: 80px;
}

.rsv-summary-card {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 1rem;
}

.rsv-summary-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.rsv-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text2);
  padding: .4rem 0;
}

.rsv-summary-row span:last-child {
  font-weight: 500;
  color: var(--text);
}

.rsv-summary-sep {
  border-top: 1px solid var(--bg3);
  margin: .5rem 0;
}

.rsv-summary-total {
  font-size: .95rem;
  font-weight: 500;
}

.rsv-summary-total span:last-child {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--orange);
}

.rsv-summary-note {
  font-size: .68rem;
  color: var(--text3);
  text-align: center;
  margin-top: .8rem;
}

.rsv-help {
  background: var(--bg2);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  font-size: .82rem;
}

.rsv-help strong {
  display: block;
  margin-bottom: .2rem;
}

.rsv-help p {
  color: var(--text3);
  font-size: .75rem;
  margin-bottom: .4rem;
}

.rsv-help a {
  display: block;
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  font-size: .85rem;
}

/* ===================================
   BLOG PAGE
   =================================== */
.blog-section {
  max-width: 1000px;
  margin: 0 auto;
}

/* Meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
}

.blog-cat {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  background: var(--orange);
  padding: .2rem .6rem;
  border-radius: 3px;
}

.blog-date {
  font-size: .7rem;
  color: var(--text3);
}

.blog-read {
  font-size: .78rem;
  color: var(--orange);
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}

.blog-read:hover {
  color: var(--orange-dark);
}

/* Featured */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bg3);
  margin-bottom: 2.5rem;
  cursor: pointer;
  transition: all .3s;
}

.blog-featured:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
  border-color: transparent;
}

.blog-featured-img {
  overflow: hidden;
  min-height: 320px;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.03);
}

.blog-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: .8rem;
}

.blog-featured-body > p {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

/* Grid cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bg3);
  cursor: pointer;
  transition: all .3s;
  background: white;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  border-color: transparent;
}

.blog-card-img {
  height: 180px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.3rem 1.5rem;
}

.blog-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: .5rem;
}

.blog-card-body > p {
  color: var(--text3);
  font-size: .78rem;
  line-height: 1.65;
  margin-bottom: .8rem;
}

/* ===================================
   FOOTER
   =================================== */
.foot {
  border-top: 1px solid var(--bg3);
  padding: 2.5rem 3rem 2rem;
  text-align: center;
  font-size: .7rem;
  color: var(--text3);
  position: relative;
  overflow: hidden;
  min-height: 70px;
}

.foot a {
  color: var(--orange);
  text-decoration: none;
}

.foot a:hover {
  text-decoration: underline;
}

.foot-txt {
  position: relative;
  z-index: 2;
}

.fsheep {
  position: absolute;
  bottom: -5px;
  z-index: 1;
}

.fsheep svg {
  opacity: .4;
  display: block;
}

/* Pixel sheep walk animation */
.fsheep .leg-fl, .fsheep .leg-br {
  animation: legWalk .4s steps(1) infinite;
}

.fsheep .leg-fr, .fsheep .leg-bl {
  animation: legWalk .4s steps(1) infinite .2s;
}

@keyframes legWalk {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* --- Blog read time --- */
.blog-read-time {
  font-size: .68rem;
  color: var(--text3);
  font-style: italic;
}

/* --- Blog article full view --- */
.blog-back {
  background: none;
  border: 1px solid var(--bg3);
  border-radius: 6px;
  padding: .5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--text2);
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all .2s;
}

.blog-back:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.blog-full {
  max-width: 720px;
  margin: 0 auto;
}

.blog-full-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.blog-full-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 2rem 0 .8rem;
  color: var(--text);
}

.blog-full-content p {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: .8rem;
}

.blog-full-content ul {
  margin: .8rem 0 1.2rem 1.2rem;
}

.blog-full-content li {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: .4rem;
}

.blog-full-content strong {
  color: var(--text);
}

.blog-cta-box {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: linear-gradient(135deg, #FDF6EF, var(--bg2));
  border-radius: 12px;
  border: 1px solid var(--orange-soft);
  text-align: center;
}

.blog-cta-box p {
  font-size: .9rem;
  color: var(--text2);
  margin-bottom: 1rem;
}

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter-bar {
  background: linear-gradient(135deg, #FDF6EF, var(--bg2));
  border-top: 1px solid var(--bg3);
  padding: 2.5rem 3rem;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.newsletter-text p {
  font-size: .85rem;
  color: var(--text3);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: .7rem 1rem;
  border: 1px solid var(--bg3);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  outline: none;
  background: white;
  transition: border .2s;
}

.newsletter-input:focus {
  border-color: var(--orange);
}

.newsletter-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: .7rem 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--orange-dark);
}

.newsletter-note {
  font-size: .68rem;
  color: var(--text3);
  margin-top: .6rem;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }

}

/* ===================================
   REGION MODAL
   =================================== */
.region-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.region-modal-overlay.open {
  display: flex;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.region-modal {
  background: white;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlide .3s ease;
}

@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.region-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.region-modal-close:hover {
  background: var(--bg2);
}

.region-modal-img {
  width: 100%;
  height: 280px;
  background: var(--bg2);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.region-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-modal-body {
  padding: 2rem;
}

.region-modal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.region-modal-body p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: .6rem;
}

.region-modal-body ul {
  margin: .6rem 0 1rem 1rem;
}

.region-modal-body li {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: .3rem;
}

.region-modal-tips {
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--orange-soft);
  border-radius: 10px;
  font-size: .84rem;
  color: var(--text2);
}

.region-modal-tips strong {
  color: var(--orange-dark);
}

@media (max-width: 600px) {
  .region-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .region-modal {
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
  }

  .region-modal-img {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
}

/* ===================================
   CHATBOT
   =================================== */
.chat-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 117, 44, .4);
  z-index: 200;
  transition: all .3s;
}

.chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(212, 117, 44, .5);
}

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #C62828;
  color: white;
  font-size: .6rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.chat-window {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 380px;
  height: 520px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bg3);
}

.chat-window.open {
  display: flex;
  animation: chatIn .3s ease;
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--orange);
  color: white;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  overflow: hidden;
}

.dolly-avatar {
  background: rgba(255, 255, 255, .2);
  padding: 0;
}

.dolly-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-header strong {
  display: block;
  font-size: .88rem;
}

.chat-status {
  font-size: .68rem;
  opacity: .8;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  padding: 4px;
}

.chat-close:hover { opacity: 1; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.chat-msg {
  max-width: 85%;
}

.chat-msg.bot {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
}

.chat-msg-bubble {
  padding: .7rem 1rem;
  border-radius: 12px;
  font-size: .84rem;
  line-height: 1.55;
}

.chat-msg.bot .chat-msg-bubble {
  background: var(--bg2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-msg-bubble {
  background: var(--orange);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-msg-time {
  font-size: .6rem;
  color: var(--text3);
  margin-top: .2rem;
  padding: 0 .2rem;
}

.chat-msg.user .chat-msg-time {
  text-align: right;
}

.chat-suggestions {
  display: flex;
  gap: .4rem;
  padding: .5rem 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--bg3);
}

.chat-suggestions button {
  background: white;
  border: 1px solid var(--bg3);
  border-radius: 20px;
  padding: .35rem .8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--orange);
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
}

.chat-suggestions button:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.chat-input-bar {
  display: flex;
  gap: .5rem;
  padding: .8rem 1rem;
  border-top: 1px solid var(--bg3);
  background: white;
}

.chat-input-bar input {
  flex: 1;
  border: 1px solid var(--bg3);
  border-radius: 24px;
  padding: .6rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  outline: none;
  transition: border .2s;
}

.chat-input-bar input:focus {
  border-color: var(--orange);
}

.chat-send {
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}

.chat-send:hover { background: var(--orange-dark); }

.chat-typing {
  display: flex;
  gap: 4px;
  padding: .5rem 1rem;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text3);
  border-radius: 50%;
  animation: typing .8s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes typing {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* Mobile chat */
@media (max-width: 600px) {
  .chat-window {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    border-radius: 16px 16px 0 0;
    z-index: 210;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .2);
  }

  .chat-bubble {
    bottom: 1rem;
    right: 1rem;
  }

  .chat-input-bar input {
    font-size: 16px; /* Prevents iOS zoom */
  }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
  .hamburger {
    display: flex !important;
  }

  .fsheep {
    display: none !important;
  }

  .nav-accueil {
    display: block !important;
  }

  .tb-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 0 2rem;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .12);
    z-index: 105;
  }

  .tb-nav.open {
    right: 0;
  }

  .tb-nav a {
    color: var(--text) !important;
    font-size: .95rem;
    font-weight: 500;
    display: block;
    padding: .9rem 2rem;
    border-bottom: 1px solid var(--bg3);
    transition: all .2s;
    text-shadow: none !important;
  }

  .tb-nav a:hover,
  .tb-nav a.active {
    color: var(--orange) !important;
    background: var(--bg2);
    padding-left: 2.4rem;
  }

  .tb-nav a::after {
    display: none;
  }

  .tb-nav a.tb-cta {
    width: calc(100% - 4rem);
    text-align: center;
    padding: .85rem;
    margin: 1.5rem 2rem 0;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    color: white !important;
    background: var(--orange) !important;
    font-size: .95rem;
    font-weight: 500;
    border-bottom: none;
  }

  .lang-drop-mobile {
    display: block;
  }

  .tb-nav .lang-drop {
    display: none;
  }

  .tb-right-mobile {
    display: flex;
    align-items: center;
    gap: .6rem;
  }

  .tb-inner {
    padding: .8rem 1.5rem;
  }

  .split,
  .ch-row,
  .cgrid,
  .etape-inner {
    grid-template-columns: 1fr;
  }

  .split-img,
  .ch-img {
    min-height: 250px;
    height: auto;
  }

  .rooms,
  .rgrid {
    grid-template-columns: 1fr;
  }

  .svcs {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gstrip {
    grid-template-columns: 1fr 1fr;
    height: 300px;
  }

  .band {
    flex-wrap: wrap;
  }

  .band-item {
    flex: 1 0 50%;
    border-bottom: 1px solid var(--bg3);
  }

  .sec {
    padding: 3rem 1.5rem;
  }

  .split-txt {
    padding: 2.5rem 1.5rem;
  }

  .page-hero {
    padding: 6rem 1.5rem 2.5rem;
  }

  .ch-row.reverse {
    direction: ltr;
  }

  .etape-steps {
    flex-direction: column;
    gap: .8rem;
  }

  .etape-step {
    max-width: 100%;
  }

  .etape-step-arrow {
    transform: rotate(90deg);
  }

  .ch-intro-inner {
    grid-template-columns: 1fr;
  }

  .ch-card,
  .ch-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .ch-card-img {
    min-height: 250px;
  }

  .ch-card-body {
    padding: 2rem 1.5rem;
  }

  .ch-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ch-card-btn {
    width: 100%;
    text-align: center;
  }

  .ch-bon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-cards {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .rg-intro-inner {
    flex-direction: column;
  }

  .rg-fete {
    grid-template-columns: 1fr;
  }

  .rg-poi,
  .rg-poi--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .rg-poi-body {
    padding: 2rem 1.5rem;
  }

  .rg-quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 220px;
  }

  .blog-featured-body {
    padding: 1.5rem;
  }

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

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

  .rsv-field-group {
    grid-template-columns: 1fr;
  }

  .rsv-summary {
    position: static;
  }

  .tp-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .tp-etape {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .tp-extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ch-card--reverse .ch-card-tag {
    left: 1.2rem;
    right: auto;
  }

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

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

@media (max-width: 480px) {
  .svcs {
    grid-template-columns: repeat(2, 1fr);
  }

  .gstrip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gi {
    height: 180px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Fix: force qty badge always right on all cards */
.ch-card-qty {
  right: 1.2rem !important;
  left: auto !important;
}
