/* Les Jardins de Potamos — "Carnet de voyage" (hand-drawn / watercolour) */

/* Polices : chargées dans le <head> de la page (plus rapide qu'un @import).
   Voir build.mjs → pageHtml() : Caveat (titres manuscrits) + Nunito (texte). */

:root {
  --paper:      #f3ecdc;
  --paper-2:    #ece2cd;
  --paper-card: #faf6ec;
  --ink:        #1f5d86;   /* Aegean ink — headings & strokes */
  --ink-deep:   #163f5c;
  --text:       #38474e;   /* soft body text */
  --muted:      #6b7a80;
  --wash:       #8bbcd8;   /* watercolour blue */
  --wash-soft:  #cfe1ee;
  --wash-deep:  #5a9bc0;
  --rose:       #cf6f8a;   /* bougainvillea */
  --sun:        #e7b24c;   /* sun */
  --olive:      #7d8a52;   /* olive */
  --line:       #cdbf9f;
  --hand: 'Caveat', 'Segoe Print', cursive;
  --body: 'Nunito', system-ui, -apple-system, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }

.site {
  position: relative;
  background:
    radial-gradient(60vw 40vw at 84% -6%, rgba(139,188,216,0.20), transparent 60%),
    radial-gradient(46vw 38vw at -8% 38%, rgba(207,111,138,0.10), transparent 60%),
    radial-gradient(50vw 40vw at 110% 86%, rgba(231,178,76,0.10), transparent 60%),
    var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* paper grain */
.site::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: multiply;
}
.site > * { position: relative; z-index: 1; }

.shell { width: 100%; max-width: 1140px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 44px); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--hand); font-weight: 700; margin: 0; line-height: 1.24; color: var(--ink); letter-spacing: 0.5px; }
h4 { font-family: var(--hand); font-weight: 700; margin: 0; color: var(--ink); letter-spacing: .3px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.kicker { font-family: var(--hand); font-weight: 600; font-size: 1.7rem; color: var(--wash-deep); transform: rotate(-2deg); display: inline-block; }

/* ---------- hand-drawn underline under important words ---------- */
.pen { position: relative; white-space: nowrap; }
.pen svg { position: absolute; left: -2%; right: -2%; width: 104%; bottom: -0.32em; height: 0.42em; overflow: visible; color: var(--rose); }

/* ---------- buttons (sketch box) ---------- */
.ink-btn {
  display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap;
  font-family: var(--hand); font-weight: 700; font-size: 1.55rem; line-height: 1;
  color: var(--paper-card); background: var(--ink);
  padding: 0.5em 1.3em 0.42em; cursor: pointer; border: 0;
  border-radius: 235px 18px 220px 22px / 22px 210px 20px 235px;
  box-shadow: 0 8px 16px -8px rgba(22,63,92,0.42);
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}
.ink-btn:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 0 12px 22px -10px rgba(22,63,92,0.45); }
.ink-btn:active { transform: translateY(1px); box-shadow: 0 5px 10px -6px rgba(22,63,92,0.4); }
.ink-btn--ghost { background: transparent; color: var(--ink); border: 2.5px solid var(--ink); box-shadow: none; padding: 0.44em 1.04em 0.36em; }
.ink-btn--ghost:hover { background: var(--wash-soft); box-shadow: 0 8px 16px -9px rgba(31,93,134,0.4); }
.ink-btn--full { width: 100%; justify-content: center; font-size: 1.7rem; padding-block: 0.55em 0.46em; }

/* ---------- sketch boxes / cards ---------- */
.sketch-box {
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  border-radius: 255px 14px 235px 16px / 16px 225px 18px 255px;
  box-shadow: 0 16px 34px -20px rgba(31,93,134,0.32);
}

/* ---------- reveal (transform-only; always visible) ---------- */
.reveal { transform: translateY(16px) rotate(-0.4deg); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal--in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none; transition: none; } }

/* ---------- ink draw-on (pathLength=1 trick; resting state = drawn) ---------- */
.ink-draw [data-draw] { stroke-dasharray: 1; stroke-dashoffset: 0; }
.ink-draw.play [data-draw] { animation: inkDraw 1.5s cubic-bezier(.55,.06,.32,1) both; }
.ink-draw.play [data-draw].d2 { animation-delay: .28s; }
.ink-draw.play [data-draw].d3 { animation-delay: .54s; }
.ink-draw.play [data-draw].d4 { animation-delay: .8s; }
.ink-draw.drawn [data-draw] { stroke-dashoffset: 0 !important; animation: none !important; }
@keyframes inkDraw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
/* washes fade in softly after the lines */
.ink-draw [data-wash] { opacity: 1; }
.ink-draw.play [data-wash] { animation: washIn 1.1s ease .7s both; }
.ink-draw.drawn [data-wash] { opacity: 1 !important; animation: none !important; }
@keyframes washIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .ink-draw.play [data-draw], .ink-draw.play [data-wash] { animation: none; } }

/* ---------- continuous, gentle motions (transform-based → safe) ---------- */
@keyframes bob   { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-7px) rotate(1.4deg); } }
@keyframes sway  { 0%,100% { transform: rotate(-2.5deg); } 50% { transform: rotate(2.5deg); } }
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes drift { 0% { transform: translateX(-8vw) translateY(0); } 50% { transform: translateX(40vw) translateY(-14px);} 100% { transform: translateX(92vw) translateY(4px); } }
@keyframes waveSlide { from { transform: translateX(0); } to { transform: translateX(-400px); } }
@keyframes donkeyWalk { from { transform: translate(980px, 236px); } to { transform: translate(40px, 236px); } }
@keyframes donkeyTrot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes earFlick  { 0%, 86%, 100% { transform: rotate(0); } 93% { transform: rotate(-16deg); } }
@keyframes breathe   { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.05); } }
@keyframes tailSleep { 0%, 70%, 100% { transform: rotate(0); } 82% { transform: rotate(-13deg); } }
@keyframes zzz       { 0% { transform: translate(0,4px); opacity: 0; } 30% { opacity: .85; } 100% { transform: translate(8px,-12px); opacity: 0; } }
@media (prefers-reduced-motion: no-preference) {
  .anim-bob  { animation: bob 5.5s ease-in-out infinite; transform-origin: center; }
  .anim-sway { animation: sway 6s ease-in-out infinite; transform-origin: bottom center; }
  .anim-spin { animation: spin 60s linear infinite; transform-origin: center; }
  .anim-wave { animation: waveSlide 9s linear infinite; }
  .anim-gull { animation: drift 26s linear infinite; }
  .anim-donkey { animation: donkeyWalk 36s linear infinite; }
  .anim-trot   { animation: donkeyTrot .5s ease-in-out infinite; transform-origin: center; }
  .anim-ear    { transform-box: fill-box; transform-origin: 50% 100%; animation: earFlick 4.5s ease-in-out infinite; }
  .anim-breathe   { animation: breathe 4s ease-in-out infinite; }
  .anim-tail-sleep { animation: tailSleep 5.5s ease-in-out infinite; }
  .anim-ear-sleep { transform-box: fill-box; transform-origin: 50% 100%; animation: earFlick 6s ease-in-out infinite; }
  .anim-zzz       { animation: zzz 4s ease-in-out infinite; }
}

/* =================== HEADER =================== */
.hd { position: sticky; top: 0; z-index: 40; }
.hd-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 78px;
  background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.logo b { font-family: var(--hand); font-weight: 700; font-size: 1.95rem; color: var(--ink); line-height: 0.92; }
.logo i { font-style: normal; font-family: var(--body); font-weight: 700; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--wash-deep); margin-top: 3px; }
.hd-nav { display: flex; align-items: center; gap: clamp(18px, 2.8vw, 36px); }
.hd-nav a:not(.ink-btn) { font-family: var(--hand); font-size: 1.5rem; color: var(--ink-deep); position: relative; white-space: nowrap; }
.hd-nav a:not(.ink-btn):hover { color: var(--ink); }
.hd-nav a:not(.ink-btn):hover::after { content:""; position:absolute; left:0; right:0; bottom:-3px; height:3px; border-radius:3px;
  background: var(--rose); transform: rotate(-1deg); }
.hd-tools { display: flex; align-items: center; gap: 10px; }
.lang { font-family: var(--hand); font-size: 1.35rem; color: var(--ink); background: transparent; cursor: pointer;
  border: 2.5px solid var(--ink); border-radius: 200px 16px 180px 18px / 16px 180px 18px 200px; padding: 0.1em 0.7em 0.16em; line-height: 1; }
.lang:hover { background: var(--wash-soft); }
/* sélecteur de langue FR | EN | ΕΛ */
.lang-menu { display: inline-flex; align-items: stretch; border: 2.5px solid var(--ink);
  border-radius: 200px 16px 180px 18px / 16px 180px 18px 200px; overflow: hidden; }
.lang-menu .lang { border: 0; border-radius: 0; padding: 0.12em 0.5em 0.18em; font-size: 1.12rem; opacity: .5; }
.lang-menu .lang + .lang { border-left: 2px solid var(--wash-soft); }
.lang-menu .lang.is-on { opacity: 1; background: var(--wash-soft); }
.lang-menu .lang:hover { opacity: 1; background: var(--wash-soft); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px 4px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }
.burger.x span:nth-child(1){ transform: translateY(7.5px) rotate(45deg);} .burger.x span:nth-child(2){opacity:0;}
.burger.x span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg);}

/* =================== HERO =================== */
.hero { padding-top: clamp(8px, 2vw, 24px); padding-bottom: clamp(10px,3vw,40px); }
.hero-inner { display: grid; grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 2px; }
.hero-kick { margin-bottom: 4px; white-space: nowrap; }
.hero h1 { font-size: clamp(2.7rem, 6.3vw, 5.4rem); line-height: 1.2; color: var(--ink); max-width: 18ch; }
.hero h1 .blue { color: var(--wash-deep); }
.hero-sub { margin-top: 14px; font-size: 1.2rem; max-width: 40ch; color: var(--text); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 26px; }
.hero-scene { width: min(1040px, 100%); margin-top: clamp(10px, 2vw, 26px); }
.hero-scene svg { width: 100%; height: auto; display: block; overflow: visible; }
.gulls { position: absolute; top: 16%; left: 0; width: 46px; pointer-events: none; color: var(--ink-deep); }
.hero-wrap { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; }

/* =================== generic section ---------- */
.sec { padding-block: clamp(40px, 7vw, 96px); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(28px,5vw,56px); }
.sec-head h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.sec-head p { margin-top: 10px; font-size: 1.18rem; color: var(--muted); }

/* wave divider */
.divider { color: var(--wash-deep); line-height: 0; width: 100%; overflow: hidden; }
.divider svg { width: 100%; height: clamp(34px, 5vw, 62px); display: block; overflow: visible; }

/* =================== WELCOME =================== */
.welcome { text-align: center; }
.welcome-card { max-width: 760px; margin: 0 auto; padding: clamp(28px, 5vw, 56px); text-align: center; position: relative; }
.welcome-card h2 { font-size: clamp(2.4rem,5vw,3.6rem); }
.welcome-card p { margin-top: 16px; font-size: 1.22rem; line-height: 1.8; }
.welcome-sign { font-family: var(--hand); font-size: 2.2rem; color: var(--ink); margin-top: 14px; transform: rotate(-3deg); display: inline-block; }
.welcome-olive { position: absolute; width: 132px; color: var(--olive); }
.welcome-olive.tl { top: -46px; left: -26px; transform: rotate(-18deg); }
.welcome-olive.br { bottom: -52px; right: -22px; transform: rotate(160deg); }

/* =================== HOUSES =================== */
.houses-list { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 80px); }
.house { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.house.flip .house-art { order: 2; }
.house-art { position: relative; }
.house-sketch { width: 100%; }
.house-sketch svg { width: 100%; height: auto; display: block; overflow: visible; transition: transform .25s ease; }
.house:hover .house-sketch svg { animation: wobble 0.5s ease-in-out infinite; }
@keyframes wobble { 0%,100% { transform: rotate(-0.6deg);} 50% { transform: rotate(0.8deg);} }
.house-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.house-photos .slot { aspect-ratio: 1/1; }
.house-num { font-family: var(--hand); font-size: 1.6rem; color: var(--rose); transform: rotate(-3deg); display: inline-block; }
.house h3 { font-size: clamp(2.6rem, 4.4vw, 3.8rem); margin-top: 2px; }
.house-tag { font-family: var(--hand); font-size: 1.5rem; color: var(--wash-deep); }
.house-desc { margin-top: 14px; font-size: 1.12rem; }
.cap-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { font-family: var(--hand); font-size: 1.3rem; color: var(--ink); background: var(--wash-soft);
  padding: 0.12em 0.85em 0.2em; border-radius: 180px 14px 170px 16px/14px 165px 16px 180px; line-height: 1.1; }
.feat { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 8px 18px; }
.feat li { display: flex; align-items: center; gap: 10px; font-size: 1.04rem; }
.feat .tick { width: 22px; height: 22px; color: var(--rose); flex: none; }

/* =================== WHY =================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(16px, 2.4vw, 26px); }
.why-card { padding: 26px 24px 28px; text-align: center; }
.why-ic { width: 76px; height: 76px; margin: 0 auto 12px; color: var(--ink); }
.why-card h4 { font-size: 1.85rem; }
.why-card p { margin-top: 4px; font-size: 1rem; color: var(--muted); }

/* =================== REGION =================== */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(18px,2.6vw,28px); }
.region-card { padding: 24px 26px 28px; }
.region-ic { width: 64px; height: 64px; color: var(--ink); margin-bottom: 8px; }
.region-card h4 { font-size: 1.95rem; }
.region-card p { margin-top: 6px; font-size: 1.04rem; color: var(--text); }
.region-map { margin: 0 auto clamp(24px,4vw,44px); max-width: 760px; padding: clamp(18px,3vw,32px); }
.region-map .drawn-map { width: 100%; }

/* =================== CONTACT =================== */
.contact-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,64px); align-items: start; }
/* autorise les colonnes (et la carte du formulaire) à rétrécir sous la largeur
   de leur contenu — évite le débordement à droite sur petits écrans (≈320px) */
.contact-inner > * { min-width: 0; }
.sel select { text-overflow: ellipsis; }
.contact-aside h2 { font-size: clamp(2.6rem,5vw,4rem); }
.contact-aside .sub { margin-top: 8px; font-size: 1.16rem; color: var(--muted); }
.contact-direct { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.contact-direct a { display: inline-flex; align-items: center; gap: 12px; font-size: 1.2rem; color: var(--ink-deep); }
.contact-direct a:hover { color: var(--rose); }
.contact-direct .ic { width: 28px; height: 28px; color: var(--ink); flex: none; }
.contact-cat { width: 150px; color: var(--ink-deep); margin-top: 26px; }
.contact-card { padding: clamp(24px, 4vw, 42px); }
.fld { display: flex; flex-direction: column; margin-bottom: 16px; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld label { font-family: var(--hand); font-size: 1.45rem; color: var(--ink); margin-bottom: 2px; line-height: 1.1; }
.fld input, .fld select, .fld textarea {
  font-family: var(--body); font-size: 1.04rem; color: var(--text); background: #fffdf6;
  border: 2.5px solid var(--ink); border-radius: 200px 12px 190px 14px / 14px 185px 14px 200px;
  padding: 0.62em 0.85em; width: 100%; -webkit-appearance: none; appearance: none; transition: box-shadow .15s, border-color .15s;
}
.fld textarea { resize: vertical; min-height: 92px; border-radius: 30px 14px 26px 16px / 16px 26px 14px 30px; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--wash-deep); box-shadow: 0 6px 14px -8px rgba(31,93,134,0.3); }
.fld input.bad, .fld textarea.bad { border-color: var(--rose); }
.bad-msg { color: var(--rose); font-family: var(--hand); font-size: 1.2rem; margin-top: 2px; }
.sel { position: relative; }
.sel .chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--ink); pointer-events: none; }
.thanks { text-align: center; padding: 18px 6px; }
.thanks .heart { width: 84px; height: 84px; color: var(--rose); margin: 0 auto 12px; }
.thanks h3 { font-size: 2.6rem; }
.thanks p { margin: 10px auto 22px; max-width: 36ch; font-size: 1.1rem; color: var(--text); }

/* =================== FOOTER =================== */
.ft { margin-top: clamp(20px,4vw,40px); }
.ft-inner { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 36px; align-items: start; padding-block: clamp(34px,5vw,56px); }
.ft b.name { font-family: var(--hand); font-weight: 700; font-size: 2.3rem; color: var(--ink); }
.ft .tag { margin-top: 6px; color: var(--muted); max-width: 32ch; }
.ft-col { display: flex; flex-direction: column; gap: 7px; }
.ft-col .h { font-family: var(--hand); font-size: 1.5rem; color: var(--wash-deep); }
.ft-col a { color: var(--ink-deep); } .ft-col a:hover { color: var(--rose); }
.ft-art { width: 150px; color: var(--ink); justify-self: end; }
.ft-base { border-top: 2.5px dashed var(--line); padding-block: 18px; text-align: center; color: var(--muted); font-family: var(--hand); font-size: 1.3rem; }

/* tweak note */
.tweak-note { font-size: .8rem; color: var(--muted); margin: 6px 2px; font-style: italic; }

/* ---- availability calendar ---- */
.cal { border: 2.5px solid var(--ink); border-radius: 24px 10px 22px 12px / 12px 22px 10px 24px; padding: 14px 16px 16px; background: #fffdf6; }
.cal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-month { font-family: var(--hand); font-size: 1.7rem; color: var(--ink); text-transform: capitalize; }
.cal-nav { width: 36px; height: 36px; border: 2.5px solid var(--ink); background: transparent; border-radius: 50%; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
.cal-nav svg { width: 17px; height: 17px; transform: rotate(90deg); }
.cal-nav.next svg { transform: rotate(-90deg); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-nav:not(:disabled):hover { background: var(--wash-soft); }
.cal-wd { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 4px; margin-bottom: 6px; }
.cal-wd span { text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .03em; color: var(--muted); text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 4px; }
.cal-empty { aspect-ratio: 1 / 1; }
.cal-day { aspect-ratio: 1 / 1; border: 0; background: transparent; font-family: var(--body); font-size: .98rem; font-weight: 700; color: var(--ink-deep); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.cal-day.is-open:hover { background: var(--wash-soft); }
.cal-day.is-booked, .cal-day.is-closed, .cal-day.is-past { color: #c2bba9; cursor: default; }
.cal-day.is-booked { text-decoration: line-through; text-decoration-color: var(--rose); text-decoration-thickness: 2px; }
.cal-day.in-range { background: var(--wash-soft); border-radius: 4px; }
.cal-day.sel { background: var(--ink); color: #fffdf6; border-radius: 50%; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; font-size: .82rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .lg { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.cal-legend .lg.open { background: var(--wash-soft); border: 2px solid var(--ink); }
.cal-legend .lg.booked { background: #fffdf6; border: 2px solid var(--rose); }
.cal-legend .lg.closed { background: #e7dec9; }
.cal-sel { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 12px; font-size: 1rem; color: var(--ink-deep); }
.cal-sel b { color: var(--ink); }
.cal-clear { margin-left: auto; background: transparent; border: 0; color: var(--rose); font-family: var(--hand); font-size: 1.25rem; cursor: pointer; text-decoration: underline; }

/* price badge, add-photo tile, reassurance */
.price-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--hand); font-size: 1.5rem; color: var(--ink-deep); border-bottom: 3px solid var(--wash-soft); padding-bottom: 1px; white-space: nowrap; }
.price-badge b { color: var(--rose); font-weight: 700; }
.house-block { margin-top: 18px; }
.house-block-title { font-family: var(--hand); font-size: 1.5rem; color: var(--wash-deep); margin-bottom: 6px; }
.house-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.house-list li { position: relative; padding-left: 18px; font-size: 1.04rem; color: var(--ink-deep); line-height: 1.4; }
.house-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--wash); }
.house-book { margin-top: 20px; }
.house-book .ink-btn { font-size: 1.5rem; }
.book-note { margin: 8px 0 4px; font-size: .96rem; color: var(--muted); line-height: 1.4; }
.airbnb-link { display: inline-block; font-family: var(--hand); font-size: 1.25rem; color: var(--wash-deep); text-decoration: underline; text-underline-offset: 3px; }
.airbnb-link:hover { color: var(--ink-deep); }
.add-photo { aspect-ratio: 1 / 1; border: 2.5px dashed var(--wash-deep); background: transparent; border-radius: 180px 14px 170px 16px/14px 165px 16px 180px; color: var(--wash-deep); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, transform .2s ease; }
.add-photo span { font-family: var(--hand); font-size: 2.6rem; line-height: 0.7; }
.add-photo:hover { background: var(--wash-soft); color: var(--ink); transform: rotate(-1.5deg); }
.reassure { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 9px; }
.reassure li { display: flex; align-items: center; gap: 11px; font-size: 1.06rem; font-weight: 600; color: var(--ink-deep); }
.reassure .tick { width: 22px; height: 22px; color: var(--rose); flex: none; }

/* =================== GALERIE PHOTOS =================== */
.house-photos .slot { aspect-ratio: 1/1; overflow: hidden; border-radius: 180px 14px 170px 16px/14px 165px 16px 180px; }
.photo-tile { padding: 0; border: none; background: var(--wash-soft); cursor: pointer; display: block;
  transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 6px 18px -12px rgba(0,0,0,.4); }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tile:hover { transform: rotate(-1deg) scale(1.01); box-shadow: 0 12px 26px -14px rgba(0,0,0,.5); }
.photo-tile { position: relative; }
.photo-more { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(22,40,56,.55); color: #fff; font-family: var(--hand); font-size: 2.1rem; line-height: 1;
  border-radius: inherit; }
.photo-more small { font-size: .95rem; font-family: var(--body); letter-spacing: .06em; margin-top: 3px; opacity: .92; }
.photo-empty { display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2.5px dashed var(--wash-deep); background: transparent; color: var(--wash-deep);
  font-family: var(--hand); font-size: 1.3rem; padding: 8px; }

/* Fenêtre d'agrandissement (lightbox) */
.lightbox { position: fixed; inset: 0; z-index: 4000; background: rgba(22,40,56,.86);
  display: flex; align-items: center; justify-content: center; padding: 4vw; cursor: zoom-out;
  animation: lb-in .2s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 92vw; max-height: 90vh; cursor: default; }
.lb-img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 8px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8); cursor: default; }
.lb-caption { color: #fff; font-family: var(--hand); font-size: 1.5rem; line-height: 1.25; text-align: center; max-width: 92vw; }
.lb-close { position: fixed; top: 14px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); color: var(--ink-deep); font-size: 2rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); color: var(--ink-deep); font-size: 2.2rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close:hover, .lb-nav:hover { background: #fff; }

/* Formulaire : champ anti-spam caché, message d'erreur, bouton désactivé */
.hp-field { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.send-err { color: var(--rose); font-family: var(--hand); font-size: 1.3rem; margin: 10px 0 0; line-height: 1.35; }
.send-err a { color: var(--rose); text-decoration: underline; }
.ink-btn[disabled] { opacity: .6; cursor: default; pointer-events: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .house, .house.flip { grid-template-columns: 1fr; }
  .house.flip .house-art { order: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; }
  .ft-art { grid-column: 1/-1; justify-self: start; }
}
@media (max-width: 760px) {
  .burger { display: flex; }
  .hd-nav { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper-card); border-bottom: 2.5px solid var(--ink); padding: 16px clamp(20px,5vw,44px) 26px;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .hd-nav.open { transform: translateY(0); }
  .hd-nav a:not(.ink-btn) { padding: 10px 0; }
  .hd-nav .ink-btn { margin-top: 10px; }
}
@media (max-width: 540px) {
  .fld-row { grid-template-columns: 1fr; gap: 0; }
  .ft-inner { grid-template-columns: 1fr; }
  .logo i { display: none; }
}
