/* Cantal BNB — V2 Quiet mountain stay */
:root {
  --ink: #1e293b;
  --ink-2: #0f172a;
  --ink-soft: #334155;
  --paper: #f8fafc;
  --paper-2: #e2e8f0;
  --cream: #ffffff;
  --mist: #f8fafc;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --stone: #cbd5e1;
  --ember: #dc2626;
  --ember-deep: #b91c1c;
  --ember-soft: rgba(220, 38, 38, 0.12);
  --gold: #f59e0b;
  --gold-soft: rgba(245, 158, 11, 0.14);
  --emerald: #10b981;
  /* aliases → ember (red predominant brand) */
  --sage: var(--ember);
  --sage-deep: var(--ember-deep);
  --sage-soft: var(--ember-soft);
  --moss: var(--ember);
  --moss-soft: var(--ember-soft);
  --blue: #3b6d8f;
  --ok-bg: #e8f3ec;
  --ok-fg: #2d6a4f;
  --err-bg: #fdeceb;
  --err-fg: #b42318;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 4px 18px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Sora", "Segoe UI", sans-serif;
  --display: "Sora", var(--sans);
  --serif: var(--sans);
  --nav-h: 48px;
  --fab-size: 48px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;
  --section-gap: 3.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--sans);
  font-size: 16.5px;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
  overscroll-behavior-y: contain;
  letter-spacing: -0.01em;
}
body.ios-app { background: var(--mist); }
img { max-width: 100%; display: block; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
button { touch-action: manipulation; }
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.wrap {
  width: min(1080px, calc(100% - 2.25rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wrap-narrow { width: min(640px, calc(100% - 2.25rem)); margin: 0 auto; position: relative; z-index: 1; }

#app {
  min-height: 100svh;
  animation: pageIn var(--dur) var(--ease-out) both;
  /* V33: no transform — keeps position:fixed descendants viewport-fixed */
  transform: none;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #app { animation: none; }
}

.skel {
  background: linear-gradient(90deg, var(--paper-2) 25%, #fff 50%, var(--paper-2) 75%);
  background-size: 200% 100%;
  animation: skel 1.2s ease infinite;
  border-radius: 16px;
}
@keyframes skel { to { background-position: -200% 0; } }
.skel-page { padding: calc(var(--safe-t) + 5rem) 1.35rem 6rem; }
.skel-hero { height: 48svh; border-radius: var(--radius-lg); margin-bottom: 1.5rem; }
.skel-line { height: 1rem; margin: .65rem 0; }
.skel-line.w60 { width: 60%; }
.skel-line.w40 { width: 40%; }
.skel-card { height: 280px; margin: 1rem 0; border-radius: var(--radius-lg); }

/* —— Slim translucent nav —— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: var(--safe-t) 0 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--nav-h);
  padding: 0.4rem 16px;
  padding-left: calc(16px + var(--safe-l));
  padding-right: calc(16px + var(--safe-r));
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: none;
  border-bottom: 0.5px solid rgba(15, 23, 42, 0.07);
  box-shadow: none;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur);
}
.nav-inner.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
  min-width: 0;
}
.brand img,
.brand-logo {
  height: 36px;
  width: 36px;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 11px;
  flex: 0 0 auto;
  display: block;
  background: #0b0b0b;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,.12);
}
.brand-txt {
  display: flex;
  align-items: center;
  min-width: 0;
  line-height: 1;
  padding-top: 0.5px; /* optical align with mark */
}
.brand-txt strong {
  display: block;
  font-family: var(--display);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.05;
  white-space: nowrap;
}
.brand-txt span {
  display: none; /* location lives in hero/page — not sticky nav */
}
.nav-links { display: flex; gap: 0.15rem; align-items: center; flex: 0 0 auto; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 550;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: background var(--dur) var(--ease-out), opacity var(--dur);
}
.nav-links a:hover, .nav-links a.is-on {
  background: var(--ember-soft);
  color: var(--ember-deep);
  opacity: 1;
}
.nav-cta {
  background: var(--ember) !important;
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 6px 18px -10px rgba(220, 38, 38, 0.55) !important;
  font-size: 0.875rem !important;
  padding: 0.55rem 1.1rem !important;
  min-height: 40px !important;
  border-radius: var(--radius-pill) !important;
}
.nav-cta:hover {
  background: var(--ember-deep) !important;
}

/* —— Large titles —— */
.page-head {
  padding: calc(var(--safe-t) + 5rem) 0 1.25rem;
}
.page-head h1, .large-title {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(1.75rem, 6vw, 2.125rem);
  margin: 0.2rem 0 0.45rem;
  color: var(--ink);
}
.hero h1, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
h2, h3 { font-family: var(--sans); letter-spacing: -0.025em; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.01em;
}
.lede {
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  font-weight: 400;
}

/* —— Hero: photo first, title below (Airbnb) —— */
.hero {
  position: relative;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  min-height: 0;
  background: var(--mist);
}
.hero::after { display: none; }
.hero-photo {
  position: relative;
  width: 100%;
  height: min(58svh, 520px);
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #dfe8e3 0%, #c5d4cc 40%, #a8bfb4 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  transform: scale(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15,23,42,.18) 0%, transparent 35%, transparent 70%, rgba(15,23,42,.12) 100%);
}
.hero-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 23, 42, 0.45);
  border: 0.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.hero-copy {
  padding: 1.75rem 0 0.5rem;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  margin: 0 0 0.55rem;
  max-width: 16ch;
  color: var(--ink);
  text-shadow: none;
}
.hero-copy .lede {
  color: var(--muted);
  font-size: 1.05rem;
  text-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.5rem;
}
.hero-actions .btn.ghost,
.hero .link-quiet {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--sage);
  font-weight: 600;
  padding: 0.65rem 0.25rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--line);
}
.hero-meta span {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-meta strong {
  color: var(--ink);
  font-weight: 650;
  margin-right: 0.25rem;
}
/* legacy hero-inner/stats kept harmless */
.hero-inner { padding: 0; }
.hero-stats { display: none; }
.hero .kicker { display: none; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--sage);
  color: #fff;
  padding: 0.9rem 1.35rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--dur) var(--ease-spring), background var(--dur), opacity var(--dur);
  box-shadow: 0 10px 28px -16px rgba(220, 38, 38, 0.55);
}
.btn:hover { background: var(--sage-deep); }
.btn:active { transform: scale(0.97); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--line-strong);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--paper-2); }
.btn.light {
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 0.5px solid var(--line);
}
.btn.dark { background: var(--ink); color: #fff; box-shadow: none; }
.btn.block { width: 100%; }
.btn:disabled { opacity: 0.45; pointer-events: none; }
.btn-text {
  background: none;
  border: 0;
  color: var(--sage);
  font-weight: 600;
  padding: 0.5rem 0;
  cursor: pointer;
  text-decoration: none;
}

/* —— Sections & listing cards —— */
.section-pad { padding: var(--section-gap) 0; }
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-title h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  margin: 0.15rem 0 0;
}
.section-title .btn { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.85rem; }
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

/* Airbnb-style listing card: photo then meta */
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--shadow-soft);
  border: 0.5px solid var(--line);
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.card:active { transform: scale(0.985); }
.card:hover { box-shadow: var(--shadow); }
.card::after { display: none; }
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #e4ebe7, #c8d5ce);
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}
.card-media img,
.card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease-out);
}
.card:hover .card-media img,
.card:hover > img { transform: scale(1.04); }
.card-media .card-badge,
.card .card-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.65rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,.7);
}
.card-body {
  padding: 1.05rem 1.15rem 1.2rem;
  color: var(--ink);
  text-shadow: none;
  position: relative;
  z-index: 1;
  background: var(--cream);
}
.card-body .kicker {
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  text-shadow: none;
  font-size: 0.78rem;
  font-weight: 500;
}
.card-body h2 {
  margin: 0.2rem 0 0.25rem;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink);
  text-shadow: none;
  letter-spacing: -0.02em;
}
.card-body p {
  margin: 0;
  opacity: 1;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.35;
}
.card-foot {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.card-foot strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}
.price {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: none;
  border: 0;
  text-shadow: none;
}
.pill-row { display: none; }
.pill { display: none; }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 760px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.feature {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: none;
}
.feature strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  font-family: var(--sans);
}
.feature span, .feature { color: var(--ink); font-size: 0.92rem; }
.feature span { color: var(--muted); display: block; line-height: 1.4; }

.quotes {
  background: var(--cream);
  color: var(--ink);
  padding: 2.75rem 0 3.25rem;
  border-radius: 28px 28px 0 0;
  margin-top: 1.5rem;
  border-top: 0.5px solid var(--line);
}
.quotes h2 {
  color: var(--ink);
  margin: 0 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
}
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 760px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--mist);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
}
.quote p {
  font-size: 1.02rem;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}
.quote small { opacity: 1; color: var(--muted); font-size: 0.78rem; }

/* —— Property —— */
.property { padding: calc(var(--safe-t) + 4.75rem) 0 calc(9.25rem + var(--safe-b)); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 44px;
  color: var(--sage);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 1.25rem 0 1.75rem;
}
.gallery-main {
  min-height: 260px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  display: block;
  background: linear-gradient(145deg, #e4ebe7, #c8d5ce);
}
.gallery-main-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-main-wrap::after { display: none; }
.gallery-main-wrap .gallery-main { border-radius: 0; }
.stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.stack img {
  height: 88px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
  background: var(--paper-2);
}
/* 3 thumbs: keep even row; 4+: natural 2×2 (or wrap) */
.stack:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .gallery { grid-template-columns: 1.7fr 1fr; }
  .gallery-main { min-height: 420px; aspect-ratio: auto; height: 100%; }
  .stack { grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; }
  .stack:has(> :nth-child(3):last-child) { grid-template-columns: 1fr; }
  .stack img { height: 120px; }
  .layout { grid-template-columns: 1.4fr 0.9fr; gap: 1.75rem; }
}

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; list-style: none; margin: 0 0 1.1rem; }
.chips li {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
}

.book {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  border: 0.5px solid var(--line);
}
@media (min-width: 900px) {
  .book { position: sticky; top: calc(var(--safe-t) + 5rem); }
}
.book h3 { margin: 0 0 0.15rem; font-size: 1.75rem; font-family: var(--sans); }
.book label {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.85rem 0 0.3rem;
  color: var(--muted);
}
.book input, .book select, .book textarea, .field {
  width: 100%;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
  background: var(--mist);
  color: var(--ink);
}
.book .hint { font-size: 0.8rem; color: var(--muted); margin: 0.55rem 0 0; }
.book .kicker { color: var(--sage) !important; }
.book .btn.ghost { color: var(--ink); border-color: var(--line); background: var(--mist); }
.dates-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
@media (max-width: 420px) { .dates-row { grid-template-columns: 1fr; } }

.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 0.65rem; }
.cal b, .cal button {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  border: 0;
  background: transparent;
  color: inherit;
}
.cal b { opacity: 0.5; font-weight: 550; }
.cal button {
  border-radius: 12px;
  cursor: pointer;
  background: var(--mist);
  color: var(--ink);
  min-height: 40px;
  transition: transform 120ms var(--ease-spring), background 120ms;
}
.cal button:active { transform: scale(0.92); }
.cal button.busy, .cal button:disabled {
  opacity: 0.28;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal button.pick, .cal button.in {
  background: var(--sage);
  color: #fff;
  font-weight: 700;
}

.panel, .soft-panel, .section {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem;
  margin: 0.85rem 0;
  box-shadow: none;
}
.panel h2, .panel h3, .section h2 { margin: 0 0 0.55rem; font-size: 1.1rem; font-family: var(--sans); }

.tabs {
  display: flex;
  gap: 0;
  margin: 1rem 0 0.75rem;
  padding: 0.22rem;
  background: var(--paper-2);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs button {
  flex: 1 0 auto;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  min-height: 38px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background 160ms var(--ease-out), box-shadow 160ms;
}
.tabs button.on {
  background: var(--cream);
  box-shadow: 0 1px 4px rgba(15,23,42,.1);
}
.tab-pane { display: none; }
.tab-pane.on { display: block; animation: pageIn 200ms var(--ease-out); }

.around-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.around-item {
  background: var(--mist);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  border: 0.5px solid var(--line);
}
.around-item strong { display: block; font-size: 0.98rem; font-weight: 650; }
.around-item em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}
.faq details { border-bottom: 0.5px solid var(--line); padding: 0.85rem 0; }
.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; opacity: 0.4; font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.map-frame {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 16px;
  margin-top: 0.55rem;
}

.filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.15rem 0 1.5rem; }
.filters input, .filters select {
  border: 0.5px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.05rem;
  min-height: 46px;
  box-shadow: none;
}

.carnet {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--safe-t) + 5rem) 1.15rem 5.5rem;
}
.carnet h1 { font-size: clamp(1.75rem, 5vw, 2.2rem); margin: 0.25rem 0 0.95rem; font-family: var(--display); }
table { width: 100%; border-collapse: collapse; }
td, th { text-align: left; padding: 0.55rem 0; border-bottom: 0.5px solid var(--line); }

.foot {
  margin-top: 2rem;
  padding: 1.75rem 0 calc(7.75rem + var(--safe-b));
  border-top: 0.5px solid var(--line);
  background: transparent;
  color: var(--muted);
}
.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 26rem;
}
.foot-brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.foot-meta {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}
.foot-meta a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}
.foot-sep { margin: 0 0.35rem; opacity: 0.55; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin-top: 0.25rem;
  font-size: 0.7rem;
}
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:active,
.foot-links a:hover { color: var(--sage); }
.foot-copy { opacity: 0.65; }
.footer { display: contents; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15,23,42,.92);
  display: grid;
  place-items: center;
  padding: 1rem;
  animation: pageIn 180ms var(--ease-out);
  outline: none;
}
.lightbox img { max-height: 88vh; max-width: 96vw; border-radius: 14px; }
.lightbox-close {
  position: absolute;
  top: calc(var(--safe-t) + 0.75rem);
  right: 1rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #000;
  padding: 0.65rem 1rem;
  min-height: 44px;
  cursor: pointer;
  font-weight: 600;
  z-index: 2;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.92);
  color: #000;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-count {
  position: absolute;
  bottom: calc(var(--safe-b) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font: 600 0.9rem var(--sans, system-ui, sans-serif);
  letter-spacing: 0.02em;
  background: rgba(0,0,0,.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 0.85rem 1rem calc(1.1rem + var(--safe-b));
  padding-left: calc(1rem + var(--fab-size) + 0.75rem);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 0.5px solid var(--line);
  display: none;
  box-shadow: 0 -8px 30px rgba(15,23,42,.05);
}
.sticky-cta .inner {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, 100%);
  margin: 0 auto;
}
@media (max-width: 899px) {
  .sticky-cta { display: block; }
  .nav-links a:not(.nav-cta) { display: none; }
}

.ok {
  background: var(--ok-bg);
  color: var(--ok-fg);
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  margin-top: 0.75rem;
}
.err {
  background: var(--err-bg);
  color: var(--err-fg);
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  margin-top: 0.75rem;
}
.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--paper-2);
  font-weight: 650;
}
.badge.draft { background: #f5edd8; color: #7a5c28; }
.badge.archived { background: #e8ecf0; color: var(--muted); }

.prop-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.75rem 0 0.28rem;
  color: var(--muted);
  font-weight: 650;
}
.prop-form input, .prop-form textarea, .prop-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  min-height: 46px;
  border-radius: 14px;
  border: 0.5px solid var(--line);
  background: var(--mist);
}
.prop-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
@media (max-width: 520px) { .prop-form .row { grid-template-columns: 1fr; } }

/* —— Rocket FAB (quiet) + iOS action list —— */
.rocket-root { position: relative; z-index: 65; }
.rocket-fab {
  position: fixed;
  right: calc(0.95rem + var(--safe-r));
  bottom: calc(1.25rem + var(--safe-b));
  z-index: 66;
  width: var(--fab-size);
  height: var(--fab-size);
  border: 0.5px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: var(--shadow-soft), 0 8px 24px rgba(15,23,42,.08);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  transition: transform var(--dur) var(--ease-spring), background var(--dur), box-shadow var(--dur);
  -webkit-user-select: none;
  user-select: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rocket-fab:active { transform: scale(0.94); }
.rocket-fab.is-open {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(15,23,42,.45);
}
.rocket-fab .rocket-ico {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}
.rocket-fab.is-open .rocket-ico { animation: none; }
body.has-sticky-cta .rocket-fab {
  right: auto;
  left: calc(0.95rem + var(--safe-l));
  bottom: calc(1.15rem + var(--safe-b));
  z-index: 72;
}
body.pms-body .rocket-fab {
  bottom: calc(5.75rem + var(--safe-b));
  right: calc(0.95rem + var(--safe-r));
  left: auto;
}

.rocket-scrim {
  position: fixed;
  inset: 0;
  z-index: 64;
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out);
}
.rocket-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rocket-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 67;
  padding: 0 0.75rem calc(1.1rem + var(--safe-b));
  transform: translateY(110%);
  transition: transform 320ms var(--ease-spring);
  pointer-events: none;
}
.rocket-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.rocket-sheet-panel {
  width: min(400px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-radius: 22px;
  border: 0.5px solid rgba(255,255,255,.7);
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
  padding: 0.5rem 0.45rem 0.65rem;
  overflow: hidden;
}
.rocket-handle {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15,23,42,.15);
  margin: 0.25rem auto 0.55rem;
}
.rocket-sheet-title {
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 0.9rem 0.55rem;
}
.rocket-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--mist);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0.2rem 0.2rem;
}
.rocket-action {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  align-items: center;
  text-align: left;
  border: 0;
  border-bottom: 0.5px solid var(--line);
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  padding: 0.85rem 1rem;
  min-height: 56px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 160ms;
}
.rocket-action:last-child { border-bottom: 0; }
.rocket-action:active { background: var(--sage-soft); transform: none; }
.rocket-action .ra-ico {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 0.5px solid var(--line);
  font-size: 1rem;
  color: var(--sage);
}
.rocket-action span:not(.ra-ico) {
  grid-column: 2;
  grid-row: 1;
}
.rocket-action small {
  grid-column: 2;
  grid-row: 2;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}

/* —— Admin PMS V2 —— */
.pms-body { background: var(--mist); }
.pms-body .nav, .pms-body .footer, .pms-body .foot { display: none !important; }
.pms-app {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: calc(var(--safe-t) + 1.1rem) 1.1rem calc(8.25rem + var(--safe-b));
  position: relative;
  z-index: 1;
}
.pms-login {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  background: linear-gradient(180deg, var(--mist) 0%, #e8efeb 100%);
}
.pms-login-card {
  width: min(400px, 100%);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow);
}
.pms-login-card h1 { margin: 0.15rem 0 0.4rem; font-size: 1.85rem; font-family: var(--display); }
.pms-login-sub { color: var(--muted); margin: 0 0 1.25rem; font-size: 0.95rem; }
.pms-logo { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 0.85rem; object-fit: cover; }
.pms-login label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.3rem;
  color: var(--muted);
  font-weight: 650;
}
.pms-login input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 0.5px solid var(--line);
  margin-bottom: 0.95rem;
  background: var(--mist);
  min-height: 50px;
}

.pms-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.pms-head h1 {
  margin: 0.1rem 0 0;
  font-size: clamp(1.75rem, 5vw, 2.15rem);
  font-family: var(--display);
}
.pms-mini { padding: 0.5rem 0.9rem !important; font-size: 0.82rem !important; min-height: 40px !important; }
.pms-head-actions { display: flex; gap: 0.45rem; align-items: center; }
.pms-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.pms-stat {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 1rem 0.65rem;
  text-align: center;
  box-shadow: none;
}
.pms-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
}
.pms-stat span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.pms-arrivals { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.15rem; }
.pms-arrival {
  text-align: left;
  border: 0.5px solid var(--line);
  background: var(--cream);
  border-radius: 16px;
  padding: 0.95rem 1.05rem;
  cursor: pointer;
  min-height: 56px;
  box-shadow: none;
}
.pms-arrival strong { display: block; font-size: 0.95rem; }
.pms-arrival span { font-size: 0.8rem; color: var(--muted); }
.pms-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin: 0.35rem 0 0.4rem;
  flex-wrap: nowrap;
}
.pms-toolbar .btn {
  padding: 0.45rem 0.7rem;
  min-height: 40px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.pms-month {
  text-transform: capitalize;
  font-size: 0.95rem;
  font-weight: 700;
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pms-filters {
  display: flex;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  flex-wrap: nowrap;
  align-items: center;
}
.pms-filters select {
  flex: 1 1 auto;
  min-width: 0;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.85rem;
  background: var(--cream);
  min-height: 42px;
}
.pms-filters .btn {
  flex: 0 0 auto;
  padding: 0.5rem 0.85rem;
  min-height: 42px;
  white-space: nowrap;
}
.pms-hint, .pms-muted { color: var(--muted); font-size: 0.85rem; }
.pms-h2 { font-size: 1.25rem; margin: 1.5rem 0 0.65rem; font-family: var(--sans); }
.pms-search {
  width: 100%;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  margin-bottom: 1rem;
  min-height: 48px;
}
.pms-list { display: flex; flex-direction: column; gap: 0.7rem; }
.pms-card {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  box-shadow: none;
}
.pms-card-top { display: flex; justify-content: space-between; gap: 0.5rem; align-items: center; }
.pms-card-meta { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.pms-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.65rem;
  font-size: 0.85rem;
}
.linkish {
  background: none;
  border: 0;
  padding: 0;
  color: var(--sage);
  cursor: pointer;
  font-weight: 650;
  text-decoration: underline;
  min-height: 44px;
}
.pms-form-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 1.1rem; }
.pms-feed h3 { margin: 0 0 0.55rem; font-size: 1.05rem; }

.pms-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(0.85rem + var(--safe-b));
  z-index: 60;
  width: min(420px, calc(100% - 1.2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.15rem;
  padding: 0.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 0.5px solid rgba(255,255,255,.65);
  box-shadow: 0 14px 40px rgba(15,23,42,.1);
}
.pms-nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 16px;
  padding: 0.5rem 0.15rem;
  min-height: 54px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: background 160ms, color 160ms, transform 160ms var(--ease-spring);
}
.pms-nav button span { font-size: 1.1rem; line-height: 1; }
.pms-nav button.on {
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.pms-nav button:active { transform: scale(0.96); }

.pms-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15,23,42,.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  padding-bottom: calc(1.1rem + var(--safe-b));
  backdrop-filter: blur(8px);
}
.pms-sheet-panel {
  width: min(520px, 100%);
  max-height: 88svh;
  overflow: auto;
  background: var(--cream);
  border-radius: 24px;
  padding: 1.25rem 1.15rem 1.45rem;
  box-shadow: var(--shadow);
  border: 0.5px solid var(--line);
  animation: sheetUp 300ms var(--ease-spring);
}
@keyframes sheetUp {
  from { transform: translateY(28px); opacity: 0.5; }
  to { transform: none; opacity: 1; }
}
.pms-sheet-close {
  float: right;
  border: 0.5px solid var(--line);
  background: var(--mist);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 38px;
}
.pms-sheet-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.15rem; }

/* Timeline — airier */
.tl-wrap { margin: 0.5rem 0 1.25rem; }
.tl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 0.5px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: none;
}
.tl-head {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--mist);
  border-bottom: 0.5px solid var(--line);
}
.tl-corner {
  flex: 0 0 auto;
  padding: 0.75rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-right: 0.5px solid var(--line);
  position: sticky;
  left: 0;
  z-index: 4;
  background: var(--mist);
}
.tl-days { display: flex; flex: 0 0 auto; }
.tl-colhead {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0;
  font-size: 0.6rem;
  border-right: 0.5px solid rgba(15,23,42,.06);
  color: var(--muted);
}
.tl-colhead strong { font-size: 0.85rem; color: var(--ink); font-weight: 700; }
.tl-colhead.is-we { background: var(--sage-soft); }
.tl-colhead.is-today strong { color: var(--sage); }
.tl-colhead.is-today { box-shadow: inset 0 -2px 0 var(--sage); }
.tl-body { min-width: max-content; }
.tl-row {
  display: flex;
  border-bottom: 0.5px solid var(--line);
  min-height: 68px;
}
.tl-row:last-child { border-bottom: 0; }
.tl-prop {
  flex: 0 0 auto;
  padding: 0.75rem 0.85rem;
  border-right: 0.5px solid var(--line);
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(244,246,248,.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}
.tl-prop strong { font-size: 0.8rem; line-height: 1.25; }
.tl-prop span { font-size: 0.66rem; color: var(--muted); }
.tl-track { position: relative; flex: 0 0 auto; }
.tl-cells { display: flex; height: 100%; min-height: 68px; }
.tl-cell {
  flex: 0 0 auto;
  height: 68px;
  border: 0;
  border-right: 0.5px solid rgba(15,23,42,.05);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.tl-cell:hover, .tl-cell:active { background: var(--sage-soft); }
.tl-cell.is-we { background: rgba(74,107,92,.03); }
.tl-cell.is-today { background: rgba(74,107,92,.07); }
.tl-bars { position: absolute; inset: 0; pointer-events: none; }
.tl-bar {
  pointer-events: auto;
  position: absolute;
  top: 18px;
  height: 32px;
  border: 0;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 650;
  padding: 0 0.65rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 12px -6px rgba(15,23,42,.3);
  text-align: left;
}
.bar-book { background: var(--sage); }
.bar-block { background: var(--ink-2); }
.bar-ota { background: var(--gold); }
.bar-in { background: #2d6a4f; }
.bar-cancel { background: #94a3b8; text-decoration: line-through; }
.tl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.tl-legend i {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  margin-right: 0.3rem;
  vertical-align: -2px;
}
.tl-legend i.bar-book { background: var(--sage); }
.tl-legend i.bar-block { background: var(--ink-2); }
.tl-legend i.bar-ota { background: var(--gold); }
.tl-legend i.bar-in { background: #2d6a4f; }

@media (max-width: 700px) {
  .tl-prop, .tl-corner { width: 92px !important; min-width: 92px !important; }
  .tl-prop strong { font-size: 0.7rem; }
}

@media print {
  .nav, .footer, .foot, .btn, .book, .sticky-cta, .rocket-root, .rocket-fab, .rocket-sheet, .rocket-scrim, .pms-nav {
    display: none !important;
  }
  .carnet { padding: 0; }
}

.marquee-wrap { display: none; }

/* Desktop hero breathing room */
@media (min-width: 900px) {
  .hero-photo {
    width: min(1080px, calc(100% - 2.25rem));
    margin: calc(var(--safe-t) + 4.25rem) auto 0;
    height: min(52svh, 480px);
    border-radius: var(--radius-lg);
  }
  .hero-copy { padding-top: 2rem; }
}


/* —— V10 polish: micro-interactions, placeholders, empty, a11y —— */
.img-fade {
  opacity: 0;
  transition: opacity 420ms var(--ease-out);
}
.img-fade.is-in { opacity: 1; }

.ph-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8efeb 0%, #d2ddd6 45%, #b8c9bf 100%);
  color: var(--sage);
  z-index: 0;
}
.ph-photo svg { width: 42px; height: 42px; opacity: 0.55; }

.empty-state {
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: var(--cream);
  border: 0.5px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.empty-state strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}
.empty-state p { margin: 0; font-size: 0.92rem; }

.book-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.85rem 0 0.25rem;
  padding: 0.85rem 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.book-total span { color: var(--muted); font-size: 0.88rem; }
.book-total strong { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }

.sticky-cta .price-line { font-size: 0.95rem; font-weight: 700; }
.sticky-cta .price-sub { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* scrolled state: see .nav-inner.is-scrolled above */

.feature, .pms-card, .quote, .pms-stat, .pms-arrival {
  transition: transform 180ms var(--ease-out), box-shadow 180ms;
}
.pms-arrival:active, .pms-card:active { transform: scale(0.985); }

.tl-bar { letter-spacing: -0.01em; line-height: 32px; }
.pms-toolbar .btn.light { min-width: 40px; padding: 0.4rem 0.65rem; }
.pms-hint {
  margin-top: 0.85rem;
  padding: 0.65rem 0.85rem;
  background: var(--sage-soft);
  border-radius: 12px;
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 500;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.date-pills { display: flex; gap: 0.5rem; margin-top: 0.55rem; }
.date-pill {
  flex: 1;
  background: var(--mist);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
}
.date-pill em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 0.15rem;
}
.date-pill strong { font-weight: 650; color: var(--ink); }

.quotes, #infos { content-visibility: auto; contain-intrinsic-size: 400px; }

@media (prefers-reduced-transparency: reduce) {
  .nav-inner, .sticky-cta, .rocket-fab, .rocket-sheet-panel, .pms-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
}


/* —— V11 —— */
body.rocket-open { overflow: hidden; touch-action: none; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: calc(var(--safe-t) + 0.75rem);
}
.tl-row { min-height: 74px; }
.tl-cells, .tl-cell { min-height: 74px; height: 74px; }
.tl-bar { top: 20px; height: 34px; line-height: 34px; font-size: 0.72rem; }
.pms-filters .btn { flex: 0 0 auto; }
.book input:user-invalid {
  border-color: rgba(180, 35, 24, 0.35);
}
.card-media { background: linear-gradient(145deg, #e8efeb, #c5d4cc); }
@media (hover: hover) {
  .card:hover { transform: translateY(-2px); }
  .btn:hover { transform: translateY(-1px); }
}


/* —— V12 booking success —— */
.ok-stay strong { display: block; margin-bottom: 0.35rem; }
.ok-stay-url {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.78rem;
  word-break: break-all;
  line-height: 1.35;
}
.ok-stay-url a { color: var(--sage-deep); font-weight: 600; }
.ok-stay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.ok-stay-actions .btn { min-height: 44px; padding: 0.65rem 1rem; font-size: 0.88rem; }


/* —— V12 gallery when few photos —— */
.gallery:not(:has(.stack)) { grid-template-columns: 1fr; }
.gallery .stack:empty { display: none; }
@media (min-width: 900px) {
  .gallery:not(:has(.stack)) { grid-template-columns: 1fr; }
}


/* —— V13 property facts + air —— */
.prop-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.prop-fact {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}
.prop-fact strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.prop-fact span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}
.property .lede { margin-bottom: 0.35rem; }
.property .large-title { margin-bottom: 0.35rem; }
.section-pad { padding: 3.5rem 0; }
@media (max-width: 420px) {
  .prop-facts { gap: 0.55rem; }
  .prop-fact { padding: 0.85rem 0.9rem; }
}


/* —— QA FIX: netlify badge + footer clearance —— */
[data-netlify-deploy-id],
#netlify-badge,
.netlify-badge,
iframe[src*="netlify"],
iframe[src*="app.netlify.com"],
a[href*="app.netlify.com"][target="_blank"]:has(img[alt*="Netlify"]),
body > a[href^="https://www.netlify.com"],
div[data-testid="badge"] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
@media (max-width: 900px) {
  [data-netlify-deploy-id],
  #netlify-badge,
  .netlify-badge,
  iframe[src*="netlify"] {
    display: none !important;
    pointer-events: none !important;
  }
}
/* Extra bottom room for sticky CTA + rocket FAB + safe-area */
.foot {
  padding-bottom: calc(7.5rem + var(--safe-b)) !important;
}
body.has-sticky-cta .foot {
  padding-bottom: calc(9rem + var(--safe-b)) !important;
}
body.pms-body .foot { padding-bottom: 0 !important; }
#app {
  padding-bottom: calc(1.25rem + var(--safe-b));
}
body.has-sticky-cta #app {
  padding-bottom: calc(6.5rem + var(--safe-b));
}


/* —— V14 UX: Netlify badge + safe bottom —— */
@media (max-width: 900px) {
  a[href*="netlify.com"],
  a[href*="netlify.app"],
  #netlify-badge,
  .netlify-badge,
  [data-netlify-deploy-id],
  body > a[style*="position: fixed"],
  body > div[style*="position: fixed"]:has(a[href*="netlify"]) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}
body.has-sticky-cta .foot {
  padding-bottom: calc(8.5rem + var(--safe-b));
}
body.pms-body {
  padding-bottom: 0;
}
.filters input, .filters select,
.book input, .book select, .book textarea, .field,
.pms-login input, .pms-search {
  font-size: 16px;
}
.ok-stay { animation: pageIn 280ms var(--ease-out); }
.gallery-main-wrap {
  background: linear-gradient(145deg, #e8efeb, #c5d4cc);
}
@media (hover: none) {
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
}


/* —— V15 —— */
.rocket-fab { z-index: 70; }
@media (max-width: 900px) {
  /* keep badge suppressed even if Netlify reinjects late */
  body > a[href*="netlify"] { display: none !important; }
}


/* —— V16 overnight —— */
.skel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 720px) {
  .skel-grid { grid-template-columns: 1fr 1fr; }
}
.skel-filters { height: 48px; border-radius: 14px; margin: 1rem 0 0.25rem; }
.skel-gallery { height: min(42svh, 360px); }
.skel-short { height: 140px; }
.skel-strip { height: 72px; border-radius: 16px; margin: 0.85rem 0; }
.skel-admin { padding-top: calc(var(--safe-t) + 1.5rem); }

.ph-mist,
.ph-photo.ph-mist,
.card-media .ph-photo {
  background: linear-gradient(145deg, var(--mist) 0%, #dfe8e3 42%, #b9c9bf 100%);
  color: var(--sage);
}
.card-media { position: relative; background: linear-gradient(145deg, var(--mist), #c5d4cc); }
.img-failed { display: none !important; }

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2.75rem 1.35rem;
}
.empty-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

/* Rocket always above Netlify badge / sticky CTA */
.rocket-root { z-index: 80; }
.rocket-scrim { z-index: 81; }
.rocket-sheet { z-index: 82; }
.rocket-fab { z-index: 83 !important; }
body.has-sticky-cta .rocket-fab { z-index: 83 !important; }
body.pms-body .rocket-fab { z-index: 83 !important; }
.rocket-sheet-panel { position: relative; z-index: 1; }

/* Admin agenda: denser days, bigger touch */
.tl-row { min-height: 72px; }
.tl-cells { min-height: 72px; }
.tl-cell { height: 72px; min-width: 40px; }
.tl-bar {
  top: 18px;
  height: 36px;
  line-height: 36px;
  font-size: 0.72rem;
  min-height: 36px;
  padding: 0 0.55rem;
}
.tl-prop { padding: 0.65rem 0.7rem; }
.tl-prop strong { font-size: 0.78rem; }
.tl-colhead { font-size: 0.58rem; padding: 0.4rem 0; }
.tl-colhead strong { font-size: 0.8rem; }
.pms-toolbar .btn.light,
.pms-toolbar .btn,
.pms-filters select,
.pms-filters .btn {
  min-height: 42px;
}
@media (max-width: 720px) {
  .pms-toolbar .btn.light,
  .pms-toolbar .btn,
  .pms-filters select,
  .pms-filters .btn {
    min-height: 40px;
  }
}
.pms-nav button { min-height: 56px; }
.pms-arrival { min-height: 52px; }
.pms-card-actions .btn,
.pms-card-actions button { min-height: 44px; }

@media (max-width: 900px) {
  body > a[href*="netlify"],
  body > div:has(> a[href*="netlify"]) {
    display: none !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }
}


/* —— V17 overnight —— */
/* Hard-kill Netlify branding / HUD / deploy badge (belt + suspenders) */
iframe[src*="netlify"],
iframe[src*="app.netlify.com"],
[class*="netlify"],
[id*="netlify" i],
a[href*="netlify.com"][target="_blank"],
a[href*="netlify.app"][target="_blank"],
a[href*="netlify.com"],
a[href*="www.netlify.com"],
#nf-notification,
[id^="nf-"],
[data-netlify-deploy-id],
[data-testid="badge"],
body > a[href*="netlify"],
body > div:has(a[href*="netlify"]),
body > div:has(iframe[src*="netlify"]),
script[src*=".netlify/scripts"],
link[href*=".netlify/scripts"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  position: fixed !important;
  left: -9999px !important;
  top: -9999px !important;
  z-index: -1 !important;
  clip: rect(0,0,0,0) !important;
}

/* Booking form date labels */
.book-dates .date-field label,
.book .date-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-soft);
  margin: 0.35rem 0 0.35rem;
}
.book .hint[role="status"] { min-height: 1.2em; }

/* iOS grouped lists (carnet / check-in) */
.ios-section-title {
  margin: 1.35rem 0 0.45rem;
  padding: 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}
.ios-group {
  background: var(--cream);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
}
.ios-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border-bottom: 0.5px solid var(--line);
  background: var(--cream);
}
.ios-row:last-child { border-bottom: 0; }
.ios-row-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.ios-row-hint { opacity: 0.92; }
.ios-label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.ios-value {
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: right;
  margin: 0;
  word-break: break-word;
}
.ios-value.muted { color: var(--muted); font-weight: 500; }
.ios-value.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.wifi-locked .ios-value.muted::before {
  content: "🔒 ";
  font-size: 0.85em;
}
.wifi-reveal {
  border-color: rgba(90, 122, 104, 0.35);
  box-shadow: 0 0 0 3px var(--sage-soft);
  animation: wifiReveal 420ms var(--ease-out) both;
}
@keyframes wifiReveal {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.wifi-unlock-banner {
  margin: 0.75rem 0 1rem;
}
.carnet-lede { margin: 0 0 0.35rem; color: var(--muted); font-size: 0.95rem; }
.carnet .section { display: none; } /* legacy unused after grouped rewrite */

/* Admin iCal copy */
.ical-copy-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  margin: 0.25rem 0 0.65rem;
}
.ical-copy-row .ical-url {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.ical-copy-row .ical-copy {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
}

/* Focus rings (clearer, high-contrast) */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--sage) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(90, 122, 104, 0.22);
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .rocket-action:focus-visible {
  outline: 3px solid var(--sage) !important;
  outline-offset: 3px !important;
}
.rocket-sheet[aria-hidden="true"] { visibility: hidden; }
.rocket-scrim[hidden] { display: none !important; }

/* Rocket slightly left — clear mid-right Netlify pill zone */
.rocket-fab {
  right: calc(1.65rem + var(--safe-r) + 28px) !important;
  bottom: calc(1.35rem + var(--safe-b)) !important;
  z-index: 90 !important;
}
body.has-sticky-cta .rocket-fab {
  right: auto !important;
  left: calc(0.95rem + var(--safe-l)) !important;
  z-index: 90 !important;
}
body.pms-body .rocket-fab {
  right: calc(1.65rem + var(--safe-r) + 28px) !important;
  left: auto !important;
  z-index: 90 !important;
}
.rocket-root { z-index: 88; }
.rocket-scrim { z-index: 89; }
.rocket-sheet { z-index: 90; }

/* v16 CSS tidy: agenda touch stays 72px (last wins) */
.tl-row { min-height: 72px; }
.tl-cells, .tl-cell { min-height: 72px; height: 72px; }


/* —— V18 overnight: guest polish + mist foot —— */
/* Slim paper/mist footer (never dark slab) */
.foot {
  margin-top: 1.5rem;
  padding: 1.35rem 0 calc(7.25rem + var(--safe-b));
  border-top: 0.5px solid var(--line);
  background: var(--mist) !important;
  color: var(--muted);
  box-shadow: none;
}
.foot-inner { gap: 0.4rem; max-width: 24rem; }
.foot-brand {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.foot-meta { font-size: 0.78rem; }
.foot-links { font-size: 0.68rem; gap: 0.65rem 1rem; margin-top: 0.15rem; }
body.has-sticky-cta .foot {
  padding-bottom: calc(8.75rem + var(--safe-b)) !important;
  background: var(--mist) !important;
}
body.pms-body .foot { display: none !important; }

/* Spacing rhythm */
.hero-copy { padding: 1.5rem 0 0.35rem; }
.hero-actions { margin-top: 1.25rem; gap: 0.75rem; }
.section-pad { padding: 2.75rem 0; }
.cards-grid { gap: 1.35rem; }
@media (min-width: 640px) {
  .cards-grid { gap: 1.6rem; }
}
.quotes { padding: 2.35rem 0 2.75rem; margin-top: 1.25rem; }
.filters { margin: 1rem 0 1.25rem; }

/* Property card typography */
.card-body {
  padding: 0.95rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.card-body h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.card-body p {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 0.5px solid var(--line);
  font-size: 0.86rem;
}
.card-foot strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.card-media .card-badge {
  font-size: 0.68rem;
  padding: 0.28rem 0.6rem;
}

/* Sticky CTA vs left FAB — clear gutter, aligned bar */
.sticky-cta {
  padding: 0.75rem 1rem calc(0.95rem + var(--safe-b));
  padding-left: calc(1.05rem + var(--fab-size) + 0.85rem + var(--safe-l));
  background: rgba(255,255,255,.9);
  z-index: 40;
}
.sticky-cta .inner { gap: 0.55rem; }
.sticky-cta .btn {
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
  white-space: nowrap;
  background: var(--sage);
  color: #fff;
  box-shadow: 0 10px 28px -16px rgba(220, 38, 38, 0.55);
}
.sticky-cta .btn:hover { background: var(--sage-deep); }
.sticky-cta .price-line { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.02em; }
.sticky-cta .price-sub { font-size: 0.72rem; }
body.has-sticky-cta .rocket-fab {
  left: calc(0.85rem + var(--safe-l)) !important;
  right: auto !important;
  bottom: calc(0.95rem + var(--safe-b)) !important;
  z-index: 90 !important;
}

/* —— V22 overnight —— */
.ok-stay-qr {
  display: flex;
  justify-content: center;
  margin: 0.85rem auto 0.15rem;
  padding: 0.85rem;
  width: fit-content;
  max-width: 100%;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(15,23,42,.06));
}
.ok-stay-qr img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 8px;
}
.gallery-cap {
  margin: 0.45rem 0 0.15rem;
  padding: 0 0.1rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.gallery-main-wrap .gallery-cap { margin-top: 0.55rem; margin-bottom: 0.35rem; }
.gallery-thumb { margin: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.gallery-thumb img { width: 100%; border-radius: var(--radius, 14px); display: block; }
.stack { gap: 0.75rem; }

.checkin-help {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 0;
}
.checkin-help-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.checkin-help-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  margin: 0;
  padding: 0.55rem 1.25rem calc(1.35rem + var(--safe-b));
  background: rgba(255,255,255,.96);
  border-radius: 22px 22px 0 0;
  border: 0.5px solid var(--line);
  box-shadow: 0 -12px 40px rgba(15,23,42,.14);
  color: var(--ink);
}
.checkin-help-card h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.25rem;
  font-family: var(--display, var(--sans));
  letter-spacing: -0.02em;
}
.checkin-help-card p {
  margin: 0 0 0.7rem;
  color: var(--ink-soft, var(--ink));
  font-size: 0.95rem;
  line-height: 1.45;
}
.checkin-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.checkin-help-actions .btn { flex: 1 1 120px; min-height: 46px; justify-content: center; }

.pms-login {
  background: linear-gradient(165deg, var(--mist) 0%, #eef3f0 42%, #e4ece8 100%);
  padding: 2.25rem 1.35rem calc(2.5rem + var(--safe-b));
}
.pms-login-card {
  width: min(420px, 100%);
  padding: 2.1rem 1.55rem 1.75rem;
  background: rgba(255,255,255,.94);
  border: 0.5px solid rgba(27, 67, 50, 0.12);
  box-shadow: 0 18px 48px -28px rgba(15, 36, 28, 0.35), var(--shadow-soft, 0 8px 24px rgba(15,23,42,.06));
}
.pms-login-card .kicker { color: var(--sage) !important; letter-spacing: 0.08em; }
.pms-login label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft, var(--muted));
  margin: 0.55rem 0 0.4rem;
}
.pms-login input {
  min-height: 52px;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  padding: 1rem 1.05rem;
  margin-bottom: 1.15rem;
  background: var(--mist);
  border-color: rgba(27, 67, 50, 0.16);
}

.book { display: flex; flex-direction: column; gap: 0.15rem; }
.book label { margin-top: 0.95rem; }
.book .row, .book-dates { gap: 0.85rem; }
.ok-stay-actions { gap: 0.55rem; flex-wrap: wrap; }

.rocket-fab {
  opacity: 0.92;
  box-shadow: 0 4px 14px rgba(15,23,42,.07), 0 1px 3px rgba(15,23,42,.04);
}
.rocket-fab.is-open { opacity: 1; }

/* V22 audit: date pristine empty — only :user-invalid (see above) */
/* V22 audit: agenda sticky label — keep day-1 readable when scrolled to today */
.tl-scroll {
  scroll-padding-left: 126px;
  scroll-padding-inline-start: 126px;
}
@media (max-width: 720px) {
  .tl-scroll {
    scroll-padding-left: 100px;
    scroll-padding-inline-start: 100px;
  }
}
.tl-corner, .tl-prop {
  box-shadow: 6px 0 12px -8px rgba(15, 23, 42, 0.18);
}
.ph-photo.is-dim,
.gallery-thumb.is-dim .ph-photo {
  min-height: 120px;
  aspect-ratio: 1;
  border-radius: var(--radius, 14px);
  background: linear-gradient(145deg, var(--mist), #d7e2dc);
  display: grid;
  place-items: center;
  color: var(--muted);
}
.gallery-thumb.is-dim { cursor: default; }


/* V23 — date FR readouts + denser admin toolbar already above */
.date-readout {
  display: block;
  min-height: 1.1em;
  margin-top: 0.28rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 550;
}
.date-format-hint {
  margin: 0.35rem 0 0.15rem !important;
  font-size: 0.75rem !important;
  color: var(--muted);
}
@media (max-width: 720px) {
  .pms-toolbar { gap: 0.28rem; }
  .pms-toolbar .btn { padding: 0.4rem 0.55rem; font-size: 0.85rem; }
  .pms-month { font-size: 0.88rem; }
  .pms-filters { gap: 0.35rem; margin-bottom: 0.55rem; }
}


/* —— V26 booking stay card —— */
.ok-stay {
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.96), rgba(232,239,235,.92));
  border: 0.5px solid rgba(27, 67, 50, 0.14);
  box-shadow: 0 10px 28px -18px rgba(15, 36, 28, 0.28);
}
.ok-stay strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ok-stay-lead {
  margin: 0.25rem 0 0.65rem;
  color: var(--ink-soft, var(--muted));
  font-size: 0.9rem;
  line-height: 1.4;
}
.ok-stay-copied {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--sage-deep);
}
.ok-stay-url {
  margin: 0.2rem 0 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--mist);
  border-radius: 12px;
  border: 0.5px solid var(--line);
  font-size: 0.76rem;
  word-break: break-all;
  line-height: 1.4;
}
.ok-stay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ok-stay-actions .btn {
  flex: 1 1 140px;
  min-height: 46px;
  justify-content: center;
}
.ok-stay-qr {
  margin: 0.95rem 0 0.15rem;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.75rem 0.7rem;
  background: #fff;
  border-radius: 16px;
  border: 0.5px solid var(--line);
}
.ok-stay-qr img {
  display: block;
  width: 168px;
  height: 168px;
  border-radius: 10px;
}
.ok-stay-qr span {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.book .hint { margin-top: 0.75rem; line-height: 1.4; }
@media (max-width: 420px) {
  .ok-stay { padding: 0.95rem 0.9rem 1.05rem; }
  .ok-stay-actions .btn { flex: 1 1 100%; }
}


/* —— V27 overnight —— */
/* FR date shell over native picker (extends V26 date-readout) */
.date-field-shell {
  position: relative;
  display: block;
  min-height: 52px;
}
.date-field-shell .date-field-display,
.date-field-shell .date-readout,
.date-field-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 2.4rem 0 0.95rem;
  pointer-events: none;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  background: var(--cream, #fff);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  margin: 0;
}
.date-field-display.is-empty,
.date-field-shell .date-readout.is-empty {
  color: var(--muted);
  font-weight: 500;
}
.date-field-shell input[type="date"] {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 52px;
  color: transparent !important;
  caret-color: transparent;
  background: transparent;
  -webkit-text-fill-color: transparent;
}
.date-field-shell input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
  position: absolute;
  right: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
}
.date-field-shell input[type="date"]::-webkit-datetime-edit,
.date-field-shell input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.date-field-shell input[type="date"]::-webkit-datetime-edit-text,
.date-field-shell input[type="date"]::-webkit-datetime-edit-month-field,
.date-field-shell input[type="date"]::-webkit-datetime-edit-day-field,
.date-field-shell input[type="date"]::-webkit-datetime-edit-year-field {
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* hide legacy below-input readout spacing when shelled */
.date-field:has(.date-field-shell) > .date-readout { display: none; }
.date-format-hint { margin: 0.35rem 0 0.15rem; font-size: 0.75rem; }

.book-cal {
  margin: 0.85rem 0 0.35rem;
  padding: 0.85rem 0.95rem 1rem;
  background: rgba(255,255,255,.72);
  border: 0.5px solid var(--line);
  border-radius: 16px;
}
.book-cal > summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink-soft, var(--muted));
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style: none;
}
.book-cal > summary::-webkit-details-marker { display: none; }
.cal-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0.35rem;
}
.cal-toolbar .btn {
  padding: 0.35rem 0.75rem;
  min-height: 40px;
  min-width: 40px;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.25rem 0 0.55rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 550;
}
.cal-legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.cal-legend i {
  width: 11px;
  height: 11px;
  border-radius: 4px;
  display: inline-block;
  border: 0.5px solid var(--line);
}
.cal-leg-free { background: var(--cream, #fff); }
.cal-leg-busy { background: #e4e8ec; opacity: 0.9; }
.cal-leg-pick { background: var(--sage); border-color: var(--sage); }
.cal-empty-hint { margin: 0.55rem 0 0; font-size: 0.8rem; }

.seo-landing .seo-copy {
  margin: 1rem 0 1.35rem;
  padding: 1.05rem 1.05rem;
  line-height: 1.55;
  font-size: 0.95rem;
  color: var(--ink-soft, var(--ink));
}
.seo-landing .seo-copy p { margin: 0 0 0.75rem; }
.seo-landing .seo-copy p:last-child { margin-bottom: 0; }
.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 0.25rem;
}
.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--mist);
  border: 0.5px solid var(--line);
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.seo-chip:active { transform: scale(0.97); }
@media (max-width: 720px) {
  .seo-landing .seo-copy {
    padding: 0.95rem 0.95rem;
    font-size: 0.92rem;
  }
  .seo-landing .large-title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .seo-landing .lede { font-size: 0.98rem; }
}


/* —— V28 overnight —— */
body.pms-login-screen .rocket-root,
body.pms-login-screen .rocket-fab,
body.pms-login-screen .rocket-sheet,
body.pms-login-screen .rocket-scrim {
  display: none !important;
  pointer-events: none !important;
}
.book-contact.soft-panel {
  margin: 0.95rem 0 0.35rem;
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.book-contact .kicker { margin-bottom: 0.35rem; }
.book-contact label { margin-top: 0.45rem; }
.book-contact input { margin-bottom: 0.15rem; }
.book-guests { margin-top: 0.85rem; }
.book-submit { margin-top: 1.05rem !important; }
.book-hint { margin-top: 0.65rem; line-height: 1.45; }
.book-cal > summary {
  color: var(--sage-deep, var(--ink-soft));
  letter-spacing: -0.01em;
}
.book-cal:not([open]) > summary {
  margin: 0;
}
.book-cal:not([open]) {
  padding-bottom: 0.55rem;
}
@media (max-width: 720px) {
  .book {
    padding: 1.05rem 1rem 1.25rem;
  }
  .book h3 { margin: 0.15rem 0 0.65rem !important; }
  .book-cal { margin-top: 0.65rem; }
  .ok-stay-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .ok-stay-actions .btn:first-child { grid-column: 1 / -1; }
  .gallery-main-wrap .gallery-cap,
  .gallery-cap {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--muted);
  }
  .foot-links {
    gap: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }
  .prop-facts {
    gap: 0.65rem;
  }
  .sticky-cta .inner {
    padding-top: 0.65rem;
    padding-bottom: calc(0.65rem + var(--safe-b, 0px));
  }
  .sticky-cta .price-sub {
    font-size: 0.78rem;
    opacity: 0.78;
  }
}
@media (max-width: 420px) {
  .ok-stay-actions { grid-template-columns: 1fr; }
  .ok-stay-actions .btn { flex: 1 1 auto; }
}

/* —— V29 overnight: mobile QA —— */
:root {
  --anchor-offset: calc(var(--safe-t) + var(--nav-h) + 1.35rem);
}

/* Sticky nav anchor offset */
#infos,
#pourquoi,
#faq-home,
#book,
section[id],
.property .large-title,
.page-head,
.seo-landing .large-title {
  scroll-margin-top: var(--anchor-offset);
}

/* FAQ: separate icon column — no collision with wrapped Saint-Flour */
.faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  column-gap: 0.85rem;
  align-items: start;
  justify-content: stretch;
}
.faq summary .faq-q {
  min-width: 0;
  padding-right: 0.15rem;
  line-height: 1.35;
}
.faq summary::after {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  line-height: 1.2;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

/* Admin agenda: min day width + reliable horizontal scroll */
.tl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.tl-cell,
.tl-colhead {
  flex: 0 0 auto;
  min-width: 44px;
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .tl-cell,
  .tl-colhead {
    min-width: 52px;
  }
  .tl-scroll {
    scroll-padding-left: 100px;
    scroll-padding-inline-start: 100px;
  }
  .tl-prop, .tl-corner {
    width: 100px !important;
    min-width: 100px !important;
  }
}

/* FAB: consistent placement + safe-area; never cover date fields / chips */
.rocket-fab {
  right: calc(0.95rem + var(--safe-r)) !important;
  left: auto !important;
  bottom: calc(1.25rem + var(--safe-b)) !important;
  z-index: 90 !important;
}
body.has-sticky-cta .rocket-fab {
  right: auto !important;
  left: calc(0.85rem + var(--safe-l)) !important;
  bottom: calc(0.95rem + var(--safe-b)) !important;
}
body.pms-body .rocket-fab {
  right: calc(0.95rem + var(--safe-r)) !important;
  left: auto !important;
  bottom: calc(5.75rem + var(--safe-b)) !important;
}

/* Bottom clearance so sticky CTA + FAB never cover booking dates / chips */
body.has-sticky-cta .property .chips,
body.has-sticky-cta .property .book-dates,
body.has-sticky-cta .property .date-field,
body.has-sticky-cta .property .book {
  position: relative;
  z-index: 1;
}
body.has-sticky-cta .property .layout {
  padding-bottom: calc(5.5rem + var(--safe-b));
}
body.has-sticky-cta .property .chips {
  padding-bottom: 0.35rem;
  margin-bottom: 1.25rem;
  /* clear left FAB when chips sit low in the viewport */
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 900px) {
  body.has-sticky-cta .property .chips {
    /* keep chips clear of left FAB when near bottom */
    scroll-margin-bottom: calc(var(--fab-size) + 1.5rem + var(--safe-b));
  }
  body.has-sticky-cta .property .book-dates,
  body.has-sticky-cta .property .date-field-shell,
  body.has-sticky-cta .property .book label {
    scroll-margin-bottom: calc(5.5rem + var(--safe-b));
  }
  /* Extra end padding on book form so last fields clear FAB+CTA */
  body.has-sticky-cta .property .book {
    padding-bottom: calc(1.5rem + var(--fab-size) * 0.15);
    margin-bottom: 0.5rem;
  }
  /* Soft left gutter on amenity chips so a left FAB never sits on them */
  body.has-sticky-cta .property .chips li:first-child {
    margin-left: 0;
  }
}

/* Soften: query-busted assets still get a short edge cache (not year immutable) — see _headers */


/* —— V31 overnight: mobile air + touch + photo honesty —— */
@media (max-width: 720px) {
  .filters {
    gap: 0.75rem;
    margin: 1.15rem 0 1.55rem;
    padding: 0.15rem 0.1rem 0.35rem;
  }
  .filters input,
  .filters select {
    min-height: 44px;
    padding: 0.7rem 0.9rem;
  }
  .cards-grid {
    gap: 1.55rem;
    padding: 0.15rem 0 0.5rem;
  }
  .card-body {
    padding: 1.05rem 1.15rem 1.2rem;
  }
  .card-media .card-badge,
  .card .card-badge {
    color: #0f1c18;
    background: rgba(255,255,255,.94);
    text-shadow: 0 1px 2px rgba(255,255,255,.85);
    box-shadow: 0 1px 8px rgba(15,28,24,.12);
  }
  .card-body h2 {
    color: var(--ink);
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
    font-weight: 700;
  }
  .pms-list {
    gap: 0.95rem;
    padding-bottom: 0.35rem;
  }
  .pms-card {
    padding: 1.2rem 1.15rem 1.25rem;
  }
  .pms-card-top {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .pms-card-top .badge {
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.25;
  }
}

/* Guest steppers / selects — ≥44px touch */
.book-guests select,
.book-guests input,
.book .book-guests select {
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 0.85rem;
  font-size: 16px;
}
.book-guests label {
  display: block;
  margin-bottom: 0.35rem;
}

/* La Place honesty note under gallery captions */
.gallery-honesty {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  background: rgba(232, 239, 235, 0.65);
  border-radius: 12px;
  border: 0.5px solid var(--line);
}

/* Footer / sticky safe-area — keep clear of CTA + FAB */
.foot {
  padding-bottom: calc(7.75rem + var(--safe-b)) !important;
}
body.has-sticky-cta .foot {
  padding-bottom: calc(9.25rem + var(--safe-b)) !important;
}
body.has-sticky-cta #app {
  padding-bottom: calc(6.75rem + var(--safe-b));
}

/* —— V32 overnight —— */
/* Check-in / séjour / carnet air + property below-fold mobile polish */

.checkin-form.soft-panel,
.checkin-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem 1.35rem;
  margin: 1.1rem 0 1.35rem;
  border-radius: 18px;
}
.checkin-form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}
.checkin-lede {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.checkin-form label {
  display: block;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft, var(--muted));
}
.checkin-form .field,
.checkin-form input,
.checkin-form select,
.checkin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  font-size: 16px; /* iOS zoom prevent */
  border-radius: 14px;
  box-sizing: border-box;
}
.checkin-form textarea.field {
  min-height: 72px;
  resize: vertical;
}
.checkin-form .date-field {
  margin: 0;
}
.checkin-form .date-field-shell {
  min-height: 52px;
}
.checkin-form .date-format-hint {
  margin: 0.3rem 0 0.15rem;
}
.checkin-form .btn.block,
.checkin-form #addGuest,
.checkin-form [type="submit"] {
  width: 100%;
  min-height: 44px;
  margin-top: 0.35rem;
}
.checkin-form > p {
  margin: 0.65rem 0 0;
}

.checkin-guest {
  margin: 0.75rem 0 1rem;
  padding: 1rem 0.95rem 1.05rem;
  background: rgba(232, 239, 235, 0.45);
  border: 0.5px solid var(--line);
  border-radius: 16px;
}
.checkin-guest .kicker {
  margin: 0 0 0.55rem;
  letter-spacing: 0.12em;
}
.checkin-guest label:first-of-type {
  margin-top: 0.15rem;
}

.sejour-wrap .large-title {
  margin: 0.15rem 0 0.45rem;
}
.sejour-lede {
  margin: 0 0 1.15rem;
  line-height: 1.45;
}
.wifi-unlock-banner {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(90, 122, 104, 0.14);
  border: 0.5px solid rgba(90, 122, 104, 0.35);
  color: var(--ink);
  line-height: 1.4;
}
.wifi-unlock-banner strong {
  color: var(--sage-deep, #9a3412);
}

@media (max-width: 720px) {
  .sejour-wrap {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
  .sejour-wrap .large-title {
    margin-bottom: 0.55rem;
  }
  .sejour-lede {
    margin-bottom: 1.35rem;
  }
  .checkin-form.soft-panel,
  .checkin-form {
    padding: 1.2rem 1.05rem 1.4rem;
    gap: 0.4rem;
  }
  .checkin-guest {
    padding: 1.05rem 0.9rem 1.15rem;
    margin: 0.85rem 0 1.15rem;
  }

  .carnet {
    padding: 0.15rem 0.1rem 0.5rem;
  }
  .carnet .ios-section-title {
    margin: 1.35rem 0 0.55rem;
  }
  .carnet-lede {
    margin-bottom: 0.75rem;
    line-height: 1.45;
  }
  .ios-group {
    margin-bottom: 0.35rem;
    border-radius: 16px;
  }
  .ios-row {
    min-height: 52px;
    padding: 0.85rem 1.05rem;
    gap: 0.85rem;
  }
  .ios-row-stack {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .property .chips {
    gap: 0.6rem;
    margin: 0 0 1.35rem;
    padding: 0.15rem 0 0.25rem;
  }
  .property .chips li {
    min-height: 40px;
    padding: 0.55rem 0.95rem;
  }
  .property .prop-facts {
    gap: 0.75rem;
    margin: 0 0 1.45rem;
  }
  .property .prop-fact {
    padding: 1.05rem 1.05rem;
  }
  .property .soft-panel.tab-pane,
  .property .tab-pane.soft-panel {
    padding: 1.15rem 1.1rem 1.25rem;
    margin: 0.75rem 0 1.15rem;
  }
  .property .around-grid {
    gap: 0.85rem;
  }
  .property .tabs {
    margin: 1.15rem 0 0.85rem;
    padding: 0.28rem;
    gap: 0.15rem;
  }
  .property .tabs button {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
  }
}

/* Lightbox touch targets — ensure ≥44×44 */
.lightbox-close {
  min-width: 44px;
  min-height: 44px;
  padding: 0.7rem 1.05rem;
}
.lightbox-nav {
  width: 48px;
  height: 48px;
  min-width: 44px;
  min-height: 44px;
}

/* Rocket stays discreet; sticky CTA / FAB gutter from V18/V31 untouched */
.rocket-fab {
  opacity: 0.9;
}
.rocket-fab.is-open {
  opacity: 1;
}

/* —— V33 overnight —— */

/* Catalog / property pages: clear fixed nav (page-head often has padding-top:0 inline) */
.property {
  padding-top: calc(var(--safe-t) + 5.25rem);
}
/* Sticky CTA must stay viewport-fixed (never trapped by #app containing block) */
.sticky-cta {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}
/* Logements / cards: more air under fixed nav; badges clear first paint */
.page-head {
  padding-top: calc(var(--safe-t) + 5.35rem);
  scroll-margin-top: calc(var(--safe-t) + var(--nav-h) + 1rem);
}
.cards-grid {
  scroll-margin-top: calc(var(--safe-t) + var(--nav-h) + 0.75rem);
  padding-top: 0.35rem;
}
.card-media .card-badge,
.card .card-badge {
  top: 1.05rem;
}
@media (max-width: 720px) {
  .wrap.property > .page-head,
  section.wrap.property .page-head {
    padding-top: 0.35rem;
  }
  .property {
    padding-top: calc(var(--safe-t) + 5.15rem);
  }
  .cards-grid {
    padding-top: 0.45rem;
  }
}

/* —— V34 overnight —— */

/* Admin login skeleton — never looks like agenda */
.skel-login {
  display: grid;
  place-items: center;
  min-height: min(70svh, 640px);
  padding: 2rem 1.25rem calc(2rem + var(--safe-b, 0px));
  background: linear-gradient(165deg, var(--mist) 0%, #eef3f0 42%, #e4ece8 100%);
}
.skel-login-card {
  width: min(420px, 100%);
  padding: 2rem 1.5rem 1.75rem;
  background: rgba(255,255,255,.94);
  border: 0.5px solid rgba(27, 67, 50, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}
.skel-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 0.35rem;
}
.skel-login .skel-line.center { margin-left: auto; margin-right: auto; }
.skel-input { height: 48px; border-radius: 14px; }
.skel-btn { height: 48px; border-radius: 14px; margin-top: 0.25rem; }
.skel-admin.skel-login { padding-top: calc(var(--safe-t) + 1rem); }

/* Mobile agenda month list */
.pms-month-list {
  display: none;
  margin: 1rem 0 0.35rem;
  padding: 0 0 calc(0.5rem + var(--safe-b, 0px));
  gap: 0.65rem;
  flex-direction: column;
}
.pms-month-list-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}
.pms-month-list-head strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pms-month-card {
  display: block;
  width: 100%;
  text-align: left;
  min-height: 56px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 0.5px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(15,23,42,.05));
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pms-month-card:disabled {
  opacity: 0.85;
  cursor: default;
}
.pms-month-card:not(:disabled):active {
  transform: scale(0.985);
}
.pms-month-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.pms-month-card-top strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.pms-month-card-meta {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-soft, var(--muted));
  line-height: 1.35;
}
.pms-month-empty {
  padding: 0.85rem 0.25rem 0.35rem;
}
@media (max-width: 720px) {
  .pms-month-list {
    display: flex;
  }
}

/* Gallery captions — stronger contrast on mist/navy panel */
.gallery-cap,
.gallery-main-wrap .gallery-cap,
.gallery-thumb .gallery-cap {
  color: var(--ink-soft, #2a3a4f);
  background: linear-gradient(180deg, rgba(244,246,248,.92), rgba(232,239,235,.88));
  border: 0.5px solid rgba(11, 18, 32, 0.08);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.35;
}
.gallery-main-wrap .gallery-cap {
  margin-top: 0.6rem;
}

/* Property book form air on mobile */
@media (max-width: 720px) {
  .book .book-dates {
    margin-bottom: 0.35rem;
  }
  .book .book-guests {
    margin-top: 1.05rem;
    gap: 0.95rem;
  }
  .book .book-cal {
    margin-top: 0.85rem;
    margin-bottom: 0.35rem;
  }
  .book .hint.date-format-hint,
  .book #rangeHint {
    margin-bottom: 0.55rem;
  }
}

/* —— V35 overnight —— */
/* ~4px horizontal bleed at 390px (hero-media scale(1.02), full-bleed fixed chrome,
   subpixel wrap/padding). clip — not hidden — so sticky/fixed stay viewport-fixed. */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  max-width: 100%;
}
#app {
  overflow-x: clip;
  max-width: 100%;
}
/* Soften the known ~3.9px offender; parent .hero-photo already clips */
.hero-media {
  transform: none;
}


/* —— V36 overnight —— */
/* Mobile ≤720px: carnet/check-in air, booking success vs sticky/rocket,
   admin month cards, property gallery/chips/skeletons, filter soft-panel,
   card title contrast. Prefer root fixes over more overflow clip. */

/* 1) Carnet / séjour / check-in — more air, soft panels, wifi contrast */
@media (max-width: 720px) {
  .carnet {
    padding: 0.35rem 0.2rem 1.25rem;
  }
  .carnet .ios-section-title {
    margin: 1.55rem 0 0.65rem;
    padding: 0 0.45rem;
  }
  .carnet-lede {
    margin-bottom: 0.95rem;
    padding: 0 0.15rem;
  }
  .ios-group {
    margin-bottom: 0.55rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px -16px rgba(15, 36, 28, 0.22);
  }
  .ios-row {
    min-height: 54px;
    padding: 0.95rem 1.15rem;
    gap: 0.95rem;
  }
  .ios-row-stack {
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }
  .ios-value.mono {
    color: var(--ink, #0b1220);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    background: rgba(232, 239, 235, 0.65);
    padding: 0.28rem 0.55rem;
    border-radius: 10px;
    border: 0.5px solid rgba(27, 67, 50, 0.14);
  }
  .wifi-reveal {
    border-color: rgba(90, 122, 104, 0.45);
    box-shadow: 0 0 0 3px rgba(90, 122, 104, 0.18);
  }
  .wifi-unlock-banner {
    padding: 1rem 1.1rem;
    margin: 0.85rem 0 1.15rem;
    border-radius: 16px;
    font-size: 0.95rem;
  }
  .checkin-form.soft-panel,
  .checkin-form {
    padding: 1.35rem 1.15rem 1.55rem;
    margin: 1.15rem 0 1.55rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 28px -18px rgba(15, 36, 28, 0.24);
  }
  .checkin-form .field,
  .checkin-form input,
  .checkin-form select,
  .checkin-form textarea,
  .checkin-form .btn.block,
  .checkin-form #addGuest,
  .checkin-form [type="submit"] {
    min-height: 48px;
  }
  .checkin-guest {
    padding: 1.15rem 1rem 1.25rem;
    margin: 0.95rem 0 1.25rem;
    border-radius: 18px;
  }
  .sejour-wrap {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    padding-bottom: calc(1.5rem + var(--safe-b, 0px));
  }
}

/* 2) Booking success + sticky CTA — clear rocket/safe-area; copy feedback */
body.has-sticky-cta .book #bookMsg,
body.has-sticky-cta .property #bookMsg,
body.has-sticky-cta .ok-stay {
  scroll-margin-bottom: calc(7.5rem + var(--safe-b, 0px) + var(--fab-size, 3.25rem));
}
body.has-sticky-cta .ok-stay {
  margin-bottom: calc(1.25rem + var(--safe-b, 0px));
}
@media (max-width: 720px) {
  body.has-sticky-cta .property .book,
  body.has-sticky-cta .book {
    padding-bottom: calc(2.75rem + var(--fab-size, 3.25rem) * 0.35 + var(--safe-b, 0px));
  }
  .ok-stay {
    padding: 1.15rem 1.05rem 1.25rem;
  }
  .ok-stay-copied {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.75rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(90, 122, 104, 0.16);
    border: 0.5px solid rgba(90, 122, 104, 0.35);
    color: var(--sage-deep, #9a3412);
    font-size: 0.84rem;
    font-weight: 700;
  }
  .ok-stay-copied[hidden] {
    display: none !important;
  }
  .ok-stay-copied.is-visible {
    animation: wifiReveal 320ms var(--ease-out, ease-out) both;
  }
  .ok-stay-actions .btn.is-copied,
  #copyStay.is-copied {
    background: rgba(90, 122, 104, 0.18);
    border-color: rgba(90, 122, 104, 0.4);
    color: var(--sage-deep, #9a3412);
    font-weight: 700;
  }
  .ok-stay-url {
    font-size: 0.78rem;
    padding: 0.75rem 0.85rem;
  }
}

/* 3) Admin authenticated ≤720px — month cards / résas badges not clipped */
@media (max-width: 720px) {
  .pms-month-list {
    padding: 0.15rem 0.15rem calc(1rem + var(--safe-b, 0px));
    gap: 0.75rem;
  }
  .pms-month-card {
    padding: 1.05rem 1.1rem 1.1rem;
    min-height: 64px;
    border-radius: 18px;
    overflow: visible;
  }
  .pms-month-card-top {
    gap: 0.55rem 0.75rem;
    align-items: center;
  }
  .pms-month-card-top strong {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.98rem;
  }
  .pms-month-card-top .badge {
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
    padding: 0.28rem 0.6rem;
  }
  .pms-month-card-meta {
    margin-top: 0.45rem;
    line-height: 1.4;
  }
  .pms-list {
    gap: 1.05rem;
    padding: 0.25rem 0.1rem 1.15rem;
  }
  .pms-card {
    padding: 1.25rem 1.2rem 1.35rem;
    overflow: visible;
  }
  .pms-card-top {
    gap: 0.45rem 0.65rem;
  }
  .pms-card-top .badge {
    flex: 0 0 auto;
    max-width: calc(100% - 0.25rem);
    white-space: normal;
    overflow: visible;
    line-height: 1.3;
  }
}

/* 4) Property — gallery caption, around/SEO chips air, softer skeletons */
.gallery-cap,
.gallery-main-wrap .gallery-cap,
.gallery-thumb .gallery-cap {
  color: #0f1c18;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(232,239,235,.94));
  border: 0.5px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 4px 14px -8px rgba(15, 28, 24, 0.28);
  font-weight: 650;
}
@media (max-width: 720px) {
  .property .around-grid {
    gap: 1rem;
    margin: 0.35rem 0 0.85rem;
  }
  .property .around-item {
    padding: 0.95rem 0.95rem;
    border-radius: 16px;
  }
  .seo-chip-row {
    gap: 0.65rem;
    margin: 1.55rem 0 0.55rem;
    padding: 0.1rem 0 0.35rem;
  }
  .seo-chip {
    min-height: 44px;
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
  }
  .skel-page {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .skel,
  .skel-line,
  .skel-card,
  .skel-filters,
  .skel-gallery,
  .skel-short,
  .skel-strip,
  .skel-hero {
    background: linear-gradient(90deg, rgba(232,239,235,.55) 0%, rgba(244,246,248,.88) 48%, rgba(232,239,235,.55) 100%);
    background-size: 200% 100%;
    opacity: 0.92;
    border-radius: 16px;
  }
  .skel-card {
    border-radius: 20px;
  }
  .skel-filters {
    border-radius: 18px;
    height: 56px;
  }
}

/* 5) Home / logements — filter soft-panel + card title contrast on overlays */
@media (max-width: 720px) {
  .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.15rem 0 1.65rem;
    padding: 0.95rem 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.92);
    border: 0.5px solid var(--line, rgba(11,18,32,.1));
    border-radius: 18px;
    box-shadow: 0 8px 22px -16px rgba(15, 36, 28, 0.2);
  }
  .filters input,
  .filters select {
    min-height: 48px;
    flex: 1 1 140px;
  }
  .card-body h2 {
    color: var(--ink, #0b1220);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
  }
  .card-media .card-badge,
  .card .card-badge {
    color: #0a1411;
    background: rgba(255,255,255,.96);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(15,28,24,.14);
  }
  /* Contain hover zoom so cards don't bleed past V35 clip at 390px */
  .card:hover .card-media img,
  .card:hover > img {
    transform: scale(1.02);
  }
  .cards-grid,
  .wrap,
  .section-pad {
    max-width: 100%;
  }
}

/* —— V41: final guest chrome (glass header, ember, rhythm) —— */
@media (max-width: 720px) {
  :root { --nav-h: 44px; }

  .wrap,
  .wrap-narrow {
    width: min(1080px, calc(100% - 32px));
  }

  .nav-inner {
    min-height: 44px;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
    background: rgba(255, 255, 255, 0.78);
  }
  .nav-inner.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  }
  .brand {
    gap: 0.62rem;
    min-height: 40px;
  }
  .brand img,
  .brand-logo {
    height: 32px;
    width: 32px;
    border-radius: 10px;
    object-position: center 46%;
  }
  .brand-txt {
    padding-top: 0.75px;
  }
  .brand-txt strong {
    font-size: 1.02rem;
    letter-spacing: -0.012em;
    font-weight: 650;
  }
  .nav-cta {
    background: var(--ember) !important;
    color: #fff !important;
    min-height: 36px !important;
    padding: 0.45rem 0.95rem !important;
    font-size: 0.84rem !important;
    font-weight: 650 !important;
    box-shadow: none !important;
  }

  .sticky-cta .btn,
  .sticky-cta .btn#stickyBook {
    background: var(--ember) !important;
    color: #fff !important;
  }
  .sticky-cta .btn:hover {
    background: var(--ember-deep) !important;
  }

  .page-head {
    padding-top: calc(var(--safe-t) + 4.55rem);
  }
  .property {
    padding-top: calc(var(--safe-t) + 4.45rem);
  }
  .skel-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Booking card air */
  .book {
    padding: 1.2rem 1.05rem 1.35rem;
  }
  .book-contact.soft-panel {
    margin-top: 1.05rem;
    gap: 0.4rem;
  }
  .gallery {
    gap: 0.65rem;
    margin-bottom: 1.85rem;
  }
  .gallery-cap {
    margin-top: 0.35rem;
  }

  /* Slimmer footer on guest */
  .foot {
    margin-top: 1.5rem;
    padding: 1.35rem 0 calc(7.25rem + var(--safe-b));
  }
  .foot-brand {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
  .foot-links {
    gap: 0.55rem 0.95rem;
    font-size: 0.68rem;
  }

  /* Discreet rocket */
  .rocket-fab {
    opacity: 0.92;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  }
}

@media (min-width: 721px) {
  :root { --nav-h: 52px; }
  .nav-inner {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }
  .brand-logo {
    height: 38px;
    width: 38px;
    border-radius: 12px;
  }
  .brand-txt strong {
    font-size: 1.125rem;
    letter-spacing: -0.015em;
  }
  .nav-cta {
    min-height: 42px !important;
    padding: 0.55rem 1.2rem !important;
  }
  .hero-copy h1 {
    max-width: 18ch;
  }
  .foot {
    padding: 1.5rem 0 3.5rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-inner,
  .nav-inner.is-scrolled {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* —— V42: studio energy (bold red, white cards, big price) —— */
body, body.ios-app {
  background: var(--mist);
  color: var(--ink);
}
.nav-cta {
  box-shadow: 0 6px 18px -10px rgba(220, 38, 38, 0.65) !important;
}
.nav-inner {
  border-bottom: 0.5px solid rgba(15, 23, 42, 0.06);
}
.brand-txt strong {
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* Cinematic hero: title ON photo */
.hero {
  background: #fff;
}
.hero-photo {
  height: min(62svh, 560px);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(145deg, #e2e8f0, #94a3b8);
}
.hero-photo::after {
  background: linear-gradient(180deg, rgba(15,23,42,.28) 0%, transparent 26%, transparent 42%, rgba(15,23,42,.82) 100%);
}
.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.65rem;
  color: #fff;
}
.hero-overlay .kicker-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}
.hero-overlay h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 7vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.45rem;
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero-overlay .lede {
  color: rgba(255,255,255,.92);
  font-size: 0.98rem;
  max-width: 34ch;
  margin: 0 0 1rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.hero-overlay .hero-actions { margin-top: 0; }
.hero-overlay .btn {
  background: var(--ember);
  box-shadow: 0 12px 28px -12px rgba(220, 38, 38, 0.9);
}
.hero-overlay .link-quiet,
.hero-overlay .hero-actions .link-quiet {
  color: #fff;
  opacity: 0.95;
}
.hero-badge { display: none; }
.hero-copy {
  padding: 1.35rem 0 0.25rem;
}
.hero-copy h1 { display: none; }
.hero-copy .lede { display: none; }
.hero-copy .hero-actions { display: none; }
.hero-meta {
  margin-top: 0.85rem;
  padding-top: 0.95rem;
}
.hero-meta strong { color: var(--ember); }

/* Price-forward cards */
.card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
  background: #fff;
}
.card:hover {
  box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.35);
  transform: translateY(-2px);
}
.card-media { aspect-ratio: 16 / 11; border-radius: 17px 17px 0 0; }
.card-body { padding: 1.1rem 1.15rem 1.25rem; }
.card-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.card-foot {
  margin-top: 0.95rem;
  align-items: baseline;
  gap: 0.35rem;
}
.card-foot strong {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
}
.card-foot .card-nuit {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.card-cta {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ember);
}

/* Feature grid with icons */
.features.features-icons {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .features.features-icons { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
}
@media (min-width: 960px) {
  .features.features-icons { grid-template-columns: repeat(3, 1fr); }
}
.feature.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 22px -18px rgba(15, 23, 42, 0.3);
}
.feat-ico {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: var(--ember);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
}
.feat-row strong {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}
.feat-row span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.bref-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.35rem 1.2rem 1.45rem;
  box-shadow: 0 14px 36px -22px rgba(15, 23, 42, 0.35);
  margin: 0 0 1.35rem;
}
.bref-panel h2 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}
.bref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .bref-grid { grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
}
.bref-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.bref-item .feat-ico {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
}
.bref-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.12rem;
}
.bref-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}
.bref-callout {
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 12px;
  color: #92400e;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Punchy testimonials */
.quotes {
  background: transparent;
  border-top: 0;
  padding: 2.5rem 0 3rem;
  margin-top: 0.5rem;
}
.quotes .quotes-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.quotes h2 {
  margin: 0 0 0.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.quotes-accent {
  width: 5.5rem;
  height: 0.28rem;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #14b8a6);
}
.quote {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.3);
}
.quote-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.quote p {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.quote-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.82rem;
}
.quote-meta strong { color: var(--ink); font-weight: 700; }
.quote-meta span { color: var(--muted); }

/* Studio-like red booking card */
.book.book-studio {
  background: linear-gradient(145deg, #dc2626 0%, #dc2626 45%, #b91c1c 100%);
  color: #fff;
  border: 0;
  border-radius: 20px;
  padding: 1.45rem 1.25rem 1.55rem;
  box-shadow: 0 22px 50px -18px rgba(185, 28, 28, 0.65);
  position: relative;
  overflow: hidden;
}
.book.book-studio::before,
.book.book-studio::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.book.book-studio::before { width: 10rem; height: 10rem; top: -3rem; right: -2rem; filter: blur(2px); }
.book.book-studio::after { width: 8rem; height: 8rem; bottom: -2rem; left: -2rem; }
.book.book-studio > * { position: relative; z-index: 1; }
.book.book-studio .kicker,
.book.book-studio .book-pill {
  display: inline-flex;
  background: rgba(255,255,255,.18);
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.book.book-studio h3,
.book.book-studio .book-price {
  color: #fff;
  font-size: clamp(2rem, 6vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0.75rem 0 1.1rem;
  font-variant-numeric: tabular-nums;
}
.book.book-studio .book-price small {
  font-size: 0.42em;
  font-weight: 500;
  opacity: 0.9;
  margin-left: 0.15rem;
}
.book.book-studio label {
  color: rgba(255,255,255,.95);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 650;
}
.book.book-studio input,
.book.book-studio select,
.book.book-studio textarea,
.book.book-studio .date-field-shell,
.book.book-studio .field {
  background: rgba(255,255,255,.95) !important;
  border: 2px solid rgba(255,255,255,.25) !important;
  color: var(--ink) !important;
  border-radius: 14px !important;
}
.book.book-studio .date-field-display { color: var(--ink); }
.book.book-studio .date-field-display.is-empty { color: #94a3b8; }
.book.book-studio .hint,
.book.book-studio .date-format-hint,
.book.book-studio .book-hint,
.book.book-studio #rangeHint,
.book.book-studio #calHint {
  color: rgba(255,255,255,.82) !important;
}
.book.book-studio .book-contact.soft-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}
.book.book-studio .book-contact .kicker { background: transparent; padding: 0; }
.book.book-studio .book-total {
  background: rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  color: #fff;
}
.book.book-studio .book-total span { color: rgba(255,255,255,.85); }
.book.book-studio .book-total strong { color: #fff; }
.book.book-studio details.book-cal {
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 0.35rem 0.65rem 0.75rem;
  border: 1px solid rgba(255,255,255,.18);
}
.book.book-studio details.book-cal summary { color: #fff; font-weight: 650; }
.book.book-studio .cal button { background: rgba(255,255,255,.92); color: var(--ink); }
.book.book-studio .cal button.pick,
.book.book-studio .cal button.in {
  background: #fff !important;
  color: var(--ember) !important;
  font-weight: 700;
}
.book.book-studio .cal b { color: rgba(255,255,255,.7); }
.book.book-studio .btn.book-submit,
.book.book-studio .btn.block {
  background: #fff !important;
  color: var(--ember) !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,.35) !important;
  border: 0 !important;
}
.book.book-studio .btn.book-submit:hover,
.book.book-studio .btn.block:hover {
  background: #fef2f2 !important;
}
.book.book-studio .btn.light {
  background: rgba(255,255,255,.2) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
}
.book.book-studio .cal-legend { color: rgba(255,255,255,.85); }

/* Property title punch */
.property .large-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(1.85rem, 6vw, 2.35rem);
}
.property .kicker { color: var(--ember); font-weight: 700; }
.property .lede .lede-accent,
.lede-accent { color: var(--ember); font-weight: 700; }

/* Sticky CTA → studio full red energy */
.sticky-cta {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0.85rem calc(0.75rem + var(--safe-b));
}
.sticky-cta .inner {
  background: var(--ember);
  color: #fff;
  border-radius: 18px;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 14px 36px -10px rgba(185, 28, 28, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-cta .price-line {
  color: #fff !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}
.sticky-cta .price-sub { color: rgba(255,255,255,.85) !important; }
.sticky-cta .btn,
.sticky-cta .btn#stickyBook {
  background: #fff !important;
  color: var(--ember) !important;
  font-weight: 800 !important;
  box-shadow: none !important;
  min-height: 44px;
  padding: 0.55rem 1.1rem !important;
}
.sticky-cta .btn:hover {
  background: #fef2f2 !important;
}
.sticky-cta.sticky-cta-studio .inner {
  justify-content: center;
}
.sticky-cta.sticky-cta-studio .btn {
  width: 100%;
  justify-content: center;
  background: transparent !important;
  color: #fff !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  padding: 0.7rem 1rem !important;
}
.sticky-cta.sticky-cta-studio .sticky-meta { display: none; }

.section-title h2 { font-weight: 800; }
.btn {
  font-weight: 700;
  box-shadow: 0 10px 28px -14px rgba(220, 38, 38, 0.7);
}

@media (max-width: 720px) {
  .hero-overlay { padding: 1.25rem 1.1rem 1.4rem; }
  .hero-overlay h1 { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .nav-cta {
    background: var(--ember) !important;
  }
  .sticky-cta .btn,
  .sticky-cta .btn#stickyBook {
    background: #fff !important;
    color: var(--ember) !important;
  }
  .sticky-cta.sticky-cta-studio .btn {
    background: transparent !important;
    color: #fff !important;
  }
}

/* —— V43: studio-red header + footer (guest chrome) —— */
body:not(.pms-body) .nav-inner,
body:not(.pms-body) .nav-inner.is-scrolled {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
  border-bottom: none !important;
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.28) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body:not(.pms-body) .brand {
  color: #fff !important;
}
body:not(.pms-body) .brand-txt strong {
  color: #fff !important;
}
body:not(.pms-body) .brand-logo,
body:not(.pms-body) .brand img {
  /* keep crest readable on deep red */
  filter: brightness(1.08) contrast(1.05);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.35), inset 0 0 0 0.5px rgba(255,255,255,.12);
  background: #fff;
}
body:not(.pms-body) .nav-links a:not(.nav-cta) {
  color: #fff !important;
  opacity: 0.92;
}
body:not(.pms-body) .nav-links a:not(.nav-cta):hover,
body:not(.pms-body) .nav-links a:not(.nav-cta).is-on {
  background: rgba(255,255,255,0.16) !important;
  color: #fff !important;
  opacity: 1;
}
/* Cream / white Réserver on red bar */
body:not(.pms-body) .nav-cta {
  background: #fff !important;
  color: #b91c1c !important;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.25) !important;
}
body:not(.pms-body) .nav-cta:hover {
  background: #fef2f2 !important;
  color: #991b1b !important;
}

/* Solid ember footer (not mist/paper) */
body:not(.pms-body) .foot {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fef2f2 !important;
  border-top: none !important;
  box-shadow: none;
}
body:not(.pms-body).has-sticky-cta .foot {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%) !important;
}
body:not(.pms-body) .foot-brand {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.14em;
}
body:not(.pms-body) .foot-meta,
body:not(.pms-body) .foot-meta a,
body:not(.pms-body) .foot-links a,
body:not(.pms-body) .foot-copy {
  color: #fef2f2 !important;
}
body:not(.pms-body) .foot-meta a:hover,
body:not(.pms-body) .foot-links a:hover,
body:not(.pms-body) .foot-links a:active {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body:not(.pms-body) .foot-sep {
  opacity: 0.7;
  color: #fecaca;
}

@media (prefers-reduced-transparency: reduce) {
  body:not(.pms-body) .nav-inner,
  body:not(.pms-body) .nav-inner.is-scrolled {
    background: #dc2626 !important;
  }
}

@media (max-width: 720px) {
  body:not(.pms-body) .nav-inner,
  body:not(.pms-body) .nav-inner.is-scrolled {
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%) !important;
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.22) !important;
  }
  body:not(.pms-body) .nav-cta {
    background: #fff !important;
    color: #b91c1c !important;
  }
}


/* —— V44: property carousel + clean booking + header structure —— */

/* Horizontal scroll-snap carousel (replaces 1+4 grid) */
.gallery.gallery-carousel {
  display: block;
  position: relative;
  margin: 1rem 0 1.35rem;
  gap: 0;
}
.gallery.gallery-carousel .carousel-viewport {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eeea, #cfdad3);
}
.gallery.gallery-carousel .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.gallery.gallery-carousel .carousel-track::-webkit-scrollbar { display: none; }
.gallery.gallery-carousel .carousel-slide {
  flex: 0 0 88%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  min-width: 0;
}
.gallery.gallery-carousel .carousel-slide:last-child {
  flex-basis: 100%;
}
.gallery.gallery-carousel .carousel-img,
.gallery.gallery-carousel .carousel-slide img {
  display: block;
  width: 100%;
  height: min(42svh, 320px);
  object-fit: cover;
  cursor: zoom-in;
  background: #d7e0db;
  border-radius: 0;
}
.gallery.gallery-carousel .carousel-slide .ph-photo {
  height: min(42svh, 320px);
  display: grid;
  place-items: center;
}
.gallery.gallery-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  min-height: 1rem;
}
.gallery.gallery-carousel .carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.gallery.gallery-carousel .carousel-dot.is-on {
  background: var(--ember);
  transform: scale(1.25);
}
.gallery.gallery-carousel .gallery-honesty {
  margin: 0.45rem 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 900px) {
  .gallery.gallery-carousel .carousel-slide { flex-basis: 72%; }
  .gallery.gallery-carousel .carousel-img,
  .gallery.gallery-carousel .carousel-slide img,
  .gallery.gallery-carousel .carousel-slide .ph-photo {
    height: min(48svh, 420px);
  }
}

/* Coherent SVG icons (one stroke style) */
.feat-ico .ico-svg,
.bref-item .feat-ico .ico-svg {
  width: 1.38rem;
  height: 1.38rem;
  display: block;
}
.feat-ico {
  color: var(--ember);
}
.bref-callout {
  background: transparent;
  border: 0;
  padding: 0.85rem 0 0;
  margin-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 550;
  justify-content: center;
}

/* Booking: kill assist dump, keep status only when useful */
.book .hint.date-format-hint,
.book .hint.book-hint,
.book .hint.cal-empty-hint,
.book.book-studio .hint.date-format-hint,
.book.book-studio .hint.book-hint,
.book.book-studio .hint.cal-empty-hint {
  display: none !important;
}
.book .hint.range-hint,
.book.book-studio .hint.range-hint,
.book #rangeHint.range-hint {
  min-height: 0;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.book #rangeHint.range-hint.is-empty {
  display: none;
}
.book #rangeHint.range-hint.is-err {
  color: #fecaca !important;
}
.book.book-studio .cal-legend {
  font-size: 0.72rem;
  gap: 0.65rem;
  margin: 0.35rem 0 0.45rem;
  opacity: 0.9;
}

/* —— Header structure redesign (not just color) —— */
body:not(.pms-body) .nav-inner,
body:not(.pms-body) .nav-inner.is-scrolled,
body:not(.pms-body) .nav-inner.nav-inner--bar {
  background: #dc2626 !important;
  background-image: none !important;
  color: #fff !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 20px -12px rgba(185, 28, 28, 0.45) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  min-height: 52px;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  padding-left: calc(14px + var(--safe-l));
  padding-right: calc(14px + var(--safe-r));
  align-items: center;
  gap: 0.85rem;
}
body:not(.pms-body) .brand {
  gap: 0.65rem;
  min-height: 40px;
  color: #fff !important;
}
body:not(.pms-body) .brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
  overflow: hidden;
  flex: 0 0 auto;
}
body:not(.pms-body) .brand-logo,
body:not(.pms-body) .brand img {
  height: 30px !important;
  width: 30px !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 0 !important;
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
  display: block;
}
body:not(.pms-body) .brand-txt strong {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
body:not(.pms-body) .nav-cta {
  background: #fff !important;
  color: #b91c1c !important;
  min-height: 38px !important;
  padding: 0.45rem 1.05rem !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 8px -4px rgba(0,0,0,0.28) !important;
}
body:not(.pms-body) .nav-cta:hover {
  background: #fef2f2 !important;
  color: #991b1b !important;
}

@media (max-width: 720px) {
  body:not(.pms-body) .nav-inner,
  body:not(.pms-body) .nav-inner.is-scrolled,
  body:not(.pms-body) .nav-inner.nav-inner--bar {
    min-height: 48px;
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 16px -10px rgba(185, 28, 28, 0.4) !important;
  }
  body:not(.pms-body) .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  body:not(.pms-body) .brand-logo,
  body:not(.pms-body) .brand img {
    height: 28px !important;
    width: 28px !important;
  }
  body:not(.pms-body) .brand-txt strong {
    font-size: 0.98rem;
  }
  body:not(.pms-body) .nav-cta {
    min-height: 34px !important;
    padding: 0.38rem 0.9rem !important;
    font-size: 0.82rem !important;
  }
  .gallery.gallery-carousel .carousel-slide { flex-basis: 86%; }
  .gallery.gallery-carousel .carousel-img,
  .gallery.gallery-carousel .carousel-slide img {
    height: min(38svh, 280px);
  }
  .property .lede { font-size: 0.98rem; }
  .bref-panel { padding: 1.15rem 1rem 1.2rem; }
  .book.book-studio { padding: 1.25rem 1.05rem 1.35rem; }
}

@media (prefers-reduced-transparency: reduce) {
  body:not(.pms-body) .nav-inner,
  body:not(.pms-body) .nav-inner.is-scrolled {
    background: #dc2626 !important;
  }
}


/* —— V45: 390px rhythm + carousel polish + conversion cards + header —— */

/* Property head: title + big price hierarchy (studio-like) */
.property .prop-head {
  margin: 0 0 0.85rem;
}
.property .prop-head .kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.property .prop-head .large-title {
  margin: 0 0 0.35rem;
  line-height: 1.08;
}
.property .prop-price-line {
  margin: 0 0 0.45rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.property .prop-price-line strong {
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ember);
  line-height: 1;
}
.property .prop-price-line span {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--muted);
}
.property .prop-lede {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted);
}
.property .back-link {
  margin-bottom: 0.15rem;
  min-height: 36px;
  font-size: 0.88rem;
}
.property .carnet-link {
  margin: 0.15rem 0 0.55rem;
}
.property .carnet-link a {
  color: var(--ember-deep);
  font-weight: 650;
  text-decoration: none;
  font-size: 0.92rem;
}

/* Booking card: bigger studio-like 95€ block */
.book.book-studio {
  padding: 1.35rem 1.15rem 1.4rem;
}
.book.book-studio .book-pill {
  margin-bottom: 0.15rem;
}
.book.book-studio .book-price {
  font-size: clamp(2.35rem, 9vw, 2.85rem);
  margin: 0.45rem 0 1rem;
  line-height: 1;
}
.book.book-studio .book-price small {
  font-size: 0.38em;
  font-weight: 550;
  opacity: 0.92;
}
.book.book-studio .book-contact.soft-panel {
  padding-top: 0.75rem;
}
.book.book-studio .book-contact .kicker { display: none; }

/* Clean amenity chips (no icon noise) */
.chips.chips-clean,
.property .chips.chips-clean {
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0;
}
.chips.chips-clean li,
.property .chips.chips-clean li {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  min-height: 34px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

/* Carousel: full-bleed peek + smoother snap + better dots */
.gallery.gallery-carousel {
  margin: 0.65rem 0 1.1rem;
}
.gallery.gallery-carousel .carousel-viewport {
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.gallery.gallery-carousel .carousel-track {
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  gap: 0.55rem;
  padding-right: 12%;
}
.gallery.gallery-carousel .carousel-slide {
  flex: 0 0 88%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px -16px rgba(15, 23, 42, 0.35);
}
.gallery.gallery-carousel .carousel-slide:last-child {
  flex-basis: 88%;
}
.gallery.gallery-carousel .carousel-img,
.gallery.gallery-carousel .carousel-slide img,
.gallery.gallery-carousel .carousel-slide .ph-photo {
  height: min(40svh, 300px);
  border-radius: 16px;
}
.gallery.gallery-carousel .carousel-dots {
  gap: 0.35rem;
  margin-top: 0.7rem;
}
.gallery.gallery-carousel .carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  transition: width 0.22s var(--ease-out), background 0.18s ease, transform 0.18s ease;
}
.gallery.gallery-carousel .carousel-dot.is-on {
  width: 18px;
  background: var(--ember);
  transform: none;
}

/* Full-bleed peek inside .wrap on narrow screens */
@media (max-width: 720px) {
  .wrap.property .gallery.gallery-carousel {
    width: calc(100% + 2.25rem);
    margin-left: -1.125rem;
    margin-right: -1.125rem;
  }
  .wrap.property .gallery.gallery-carousel .carousel-track {
    padding-left: 1.125rem;
    padding-right: 14%;
    gap: 0.5rem;
  }
  .wrap.property .gallery.gallery-carousel .carousel-slide {
    flex-basis: 86%;
    border-radius: 14px;
  }
  .wrap.property .gallery.gallery-carousel .carousel-img,
  .wrap.property .gallery.gallery-carousel .carousel-slide img,
  .wrap.property .gallery.gallery-carousel .carousel-slide .ph-photo {
    height: min(36svh, 260px);
    border-radius: 14px;
  }
}

/* Tighten 390px property rhythm */
@media (max-width: 420px) {
  .property {
    padding-top: calc(var(--safe-t) + 4.15rem);
  }
  .property .prop-head { margin-bottom: 0.65rem; }
  .property .prop-head .large-title {
    font-size: clamp(1.65rem, 8.2vw, 2rem);
  }
  .property .prop-price-line strong {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }
  .property .prop-lede { font-size: 0.9rem; }
  .bref-panel {
    padding: 1rem 0.9rem 1.05rem;
    margin-bottom: 0.95rem;
    border-radius: 16px;
  }
  .bref-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
  }
  .bref-grid { gap: 0.7rem; }
  .book.book-studio {
    padding: 1.15rem 0.95rem 1.25rem;
    border-radius: 18px;
  }
  .book.book-studio .book-price {
    font-size: clamp(2.2rem, 11vw, 2.65rem);
    margin: 0.35rem 0 0.85rem;
  }
  .property .chips.chips-clean {
    margin-bottom: 0.85rem;
  }
  .property .tabs {
    margin: 0.85rem 0 0.55rem;
  }
}

/* Header: premium flat red, studio proportions */
body:not(.pms-body) .nav-inner,
body:not(.pms-body) .nav-inner.is-scrolled,
body:not(.pms-body) .nav-inner.nav-inner--bar {
  background: #dc2626 !important;
  background-image: none !important;
  min-height: 54px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 1px 0 rgba(127, 29, 29, 0.35), 0 10px 28px -14px rgba(127, 29, 29, 0.55) !important;
}
body:not(.pms-body) .brand {
  gap: 0.7rem;
  min-height: 42px;
}
body:not(.pms-body) .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.45), 0 4px 10px -6px rgba(0,0,0,0.35);
}
body:not(.pms-body) .brand-logo,
body:not(.pms-body) .brand img {
  height: 30px !important;
  width: 30px !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
body:not(.pms-body) .brand-txt strong {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}
body:not(.pms-body) .nav-cta {
  min-height: 36px !important;
  padding: 0.4rem 1.15rem !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em;
  border-radius: 999px !important;
  box-shadow: 0 2px 10px -4px rgba(0,0,0,0.3) !important;
}
@media (max-width: 720px) {
  body:not(.pms-body) .nav-inner,
  body:not(.pms-body) .nav-inner.is-scrolled,
  body:not(.pms-body) .nav-inner.nav-inner--bar {
    min-height: 50px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  body:not(.pms-body) .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  body:not(.pms-body) .brand-logo,
  body:not(.pms-body) .brand img {
    height: 28px !important;
    width: 28px !important;
  }
  body:not(.pms-body) .nav-cta {
    min-height: 34px !important;
    padding: 0.36rem 1rem !important;
    font-size: 0.82rem !important;
  }
}

/* Home conversion cards — big price + clear CTA pill */
.card.card-conv .card-body {
  padding: 1.05rem 1.1rem 1.15rem;
}
.card.card-conv .card-body h2 {
  font-size: 1.22rem;
  margin: 0 0 0.25rem;
}
.card.card-conv .card-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
  margin: 0;
}
.card-foot.card-foot-conv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.card-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.card-foot.card-foot-conv strong,
.card-price-block strong {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.card-foot.card-foot-conv .card-nuit,
.card-price-block .card-nuit {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 550;
}
.card-cta.card-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-height: 36px;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--ember);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: 0 8px 18px -10px rgba(185, 28, 28, 0.7);
}
.card.card-conv:hover .card-cta-pill {
  background: var(--ember-deep);
}

/* Kill leftover assistive microcopy on guest booking */
.book .hint.date-format-hint,
.book .hint.book-hint,
.book .hint.cal-empty-hint,
.book.book-studio .hint.date-format-hint,
.book.book-studio .hint.book-hint,
.book.book-studio .hint.cal-empty-hint,
.book .book-assist,
.property .book-assist {
  display: none !important;
}


/* Village services — light 2 blocks */
.village-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .village-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.75rem; }
}
.village-block {
  background: var(--panel, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
}
.village-h {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ember, #dc2626);
}
.village-flat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.village-flat li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink, #0f172a);
  line-height: 1.35;
}

/* Hotel badge icons — solid disc, not outline set */
.feat-ico {
  background: transparent !important;
  border: 0 !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  color: var(--ember, #dc2626);
}
.bref-item .feat-ico {
  width: 2.15rem !important;
  height: 2.15rem !important;
}

.quote-meta { display: flex; align-items: center; gap: 0.65rem; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex: 0 0 auto;
  background: #e2e8f0;
}
.quote-meta > div { display: flex; flex-direction: column; gap: 0.1rem; }
.acces-form label { display: grid; gap: 0.35rem; margin: 0.75rem 0; font-weight: 600; font-size: 0.9rem; }
.acces-form input {
  font: inherit; font-weight: 500; padding: 0.75rem 0.85rem;
  border-radius: 12px; border: 1px solid rgba(15,23,42,.12);
}
