:root{
  --bg:#05070d;
  --panel:rgba(255,255,255,.05);
  --panel2:rgba(255,255,255,.04);

  --line:rgba(255,255,255,.10);

  --text:#f5f7fb;
  --muted:#aeb7ca;

  --accent:#7dd3fc;
  --accent2:#a78bfa;
  --ok:#86efac;

  --radius:24px;

  --shadow:
    0 18px 60px rgba(0,0,0,.45);

  --shadow-soft:
    0 10px 28px rgba(0,0,0,.32);

  --container:1180px;

  --h1:clamp(42px,6vw,86px);
  --h2:clamp(28px,3vw,42px);
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  color:var(--text);

  background:
    radial-gradient(
      900px 520px at 12% 8%,
      rgba(167,139,250,.10),
      transparent 60%
    ),

    radial-gradient(
      1100px 700px at 80% 0%,
      rgba(125,211,252,.08),
      transparent 60%
    ),

    radial-gradient(
      700px 500px at 70% 80%,
      rgba(134,239,172,.06),
      transparent 60%
    ),

    var(--bg);

  line-height:1.65;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:auto;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;

  background:rgba(5,7,13,.92);

  backdrop-filter:blur(12px);

  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:78px;

  display:flex;
  align-items:center;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;

  font-weight:900;
  font-size:1.15rem;
}

.brand .dot{
  width:12px;
  height:12px;
  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );

  box-shadow:
    0 0 0 6px rgba(125,211,252,.12);
}

.nav{
  margin-left:auto;

  display:flex;
  align-items:center;
  gap:8px;
}

.nav a{
  color:var(--muted);

  padding:12px 16px;

  border-radius:16px;

  transition:.25s ease;
}

.nav a:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
}

.nav a.active{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.nav-toggle{
  display:none;
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;

  min-height:680px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  filter:
    brightness(.72)
    saturate(1.08)
    contrast(1.02);

  transform:scale(1.03);
}

.hero::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.18),
      rgba(0,0,0,.46)
    );
}

.hero-content{
  position:relative;
  z-index:2;

  text-align:center;
}

.hero h1{
  margin:0;

  font-size:var(--h1);

  line-height:1.02;

  font-weight:900;

  letter-spacing:-2px;

  text-shadow:
    0 12px 40px rgba(0,0,0,.55);
}

.tagline{
  margin-top:18px;

  color:rgba(255,255,255,.82);

  font-size:1.35rem;

  letter-spacing:.03em;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 22px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,.14);

  color:#fff;

  font-weight:800;

  background:
    linear-gradient(
      135deg,
      rgba(125,211,252,.24),
      rgba(167,139,250,.18)
    );

  box-shadow:var(--shadow-soft);

  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 14px 38px rgba(0,0,0,.35);
}

.btn-small{
  padding:10px 16px;
}

.btn-ghost{
  background:transparent;
}

.btn-ok{
  background:
    linear-gradient(
      135deg,
      rgba(134,239,172,.22),
      rgba(125,211,252,.15)
    );
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:90px 0;
}

.section.alt{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      transparent
    );
}

h2{
  margin:0 0 18px;

  font-size:var(--h2);

  line-height:1.1;

  font-weight:900;
}

.lead{
  color:var(--muted);

  font-size:1.12rem;

  max-width:760px;
}

.center{
  text-align:center;
}

.narrow{
  max-width:820px;
  margin:auto;
}

.serif{
  font-family:
    "Playfair Display",
    Georgia,
    serif;
}

/* =========================
   CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.cards.small{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.card{
  background:var(--panel);

  border:1px solid var(--line);

  border-radius:var(--radius);

  overflow:hidden;

  box-shadow:var(--shadow-soft);

  backdrop-filter:blur(12px);
}

.card-body{
  padding:26px;
}

.card img{
  width:100%;
  height:260px;

  object-fit:cover;
}

.card h3{
  margin-top:0;
  margin-bottom:12px;

  font-size:1.5rem;
}

/* =========================
   ROOM
========================= */

.room-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:28px;

  align-items:center;
}

.room-media{
  overflow:hidden;

  border-radius:var(--radius);

  border:1px solid var(--line);

  background:var(--panel);

  box-shadow:var(--shadow-soft);
}

.room-media img{
  width:100%;
  height:460px;

  object-fit:cover;
}

.room-actions{
  margin-top:20px;

  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   LIST
========================= */

.bullets{
  padding-left:22px;

  color:var(--muted);
}

.bullets li{
  margin-bottom:8px;
}

/* =========================
   DIVIDER
========================= */

.divider{
  height:1px;

  margin:50px 0;

  background:var(--line);
}

.link{
  color:#c7d5f7;

  font-weight:800;
}

.link:hover{
  color:#fff;
}

.section-inner{
  margin-top:64px;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  padding:36px 0;

  border-top:1px solid var(--line);

  background:rgba(0,0,0,.18);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;

  flex-wrap:wrap;
}

/* =========================
   GALLERY
========================= */

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery img{
  width:100%;
  height:240px;

  object-fit:cover;

  border-radius:20px;

  border:1px solid rgba(255,255,255,.10);

  transition:.3s ease;

  cursor:pointer;
}

.gallery img:hover{
  transform:scale(1.03);
}

.home-gallery-section{
  padding-top:20px;
}

.home-gallery-intro .lead{
  margin-left:auto;
  margin-right:auto;
}

.home-gallery{
  margin-top:30px;
}

.home-gallery img{
  height:250px;
}

.home-gallery-actions{
  margin-top:24px;
}

.gallery-page h1{
  margin:0 0 12px;

  font-size:clamp(36px,4vw,52px);
  line-height:1.1;
}

.gallery-page .lead{
  margin:0;
}

.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-top:24px;
}

.gallery-section{
  margin-top:34px;
  padding:24px;

  scroll-margin-top:108px;

  border:1px solid rgba(125,211,252,.22);
  border-radius:20px;

  background:rgba(125,211,252,.045);

  box-shadow:var(--shadow-soft);
}

.gallery-section-alt{
  border-color:rgba(167,139,250,.24);
  background:rgba(167,139,250,.045);
}

.gallery-section-header{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;

  padding-bottom:18px;

  border-bottom:1px solid rgba(255,255,255,.10);
}

.gallery-section-header h2{
  margin:0;

  font-size:clamp(26px,3vw,38px);
}

.gallery-section-header p{
  max-width:420px;
  margin:0;

  color:var(--muted);

  text-align:right;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;

  margin-top:22px;
}

.gallery-grid figure{
  margin:0;
}

.gallery-grid img{
  width:100%;
  height:220px;

  display:block;
  object-fit:cover;

  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;

  background:rgba(255,255,255,.05);

  cursor:zoom-in;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.gallery-grid img:hover{
  transform:scale(1.04);

  border-color:rgba(255,255,255,.22);

  box-shadow:0 10px 30px rgba(0,0,0,.40);
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:200;

  display:none;
  grid-template-columns:56px 1fr 56px;
  grid-template-rows:56px 1fr;
  gap:12px;
  align-items:center;

  padding:18px;

  background:rgba(0,0,0,.82);

  backdrop-filter:blur(6px);
}

.lightbox.open{
  display:grid;
}

.lb-close,
.lb-prev,
.lb-next{
  width:56px;
  height:56px;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;

  color:#fff;
  background:rgba(255,255,255,.09);

  cursor:pointer;
}

.lb-close{
  grid-column:3;
  grid-row:1;
  justify-self:end;

  font-size:1.3rem;
}

.lb-prev,
.lb-next{
  grid-row:2;

  font-size:2.2rem;
}

.lb-prev{
  grid-column:1;
}

.lb-next{
  grid-column:3;
}

.lb-figure{
  grid-column:2;
  grid-row:2;

  margin:0;

  display:grid;
  place-items:center;
  gap:10px;
}

.lb-img{
  max-width:min(1100px, 92vw);
  max-height:78vh;

  border-radius:18px;

  box-shadow:0 20px 80px rgba(0,0,0,.55);
}

.lb-cap{
  color:#d8e2f7;

  text-align:center;
}

/* =========================
   ACCESS
========================= */

.access-page h1{
  margin:0 0 12px;

  font-size:clamp(36px,4vw,52px);
  line-height:1.1;
}

.access-page .lead{
  margin:0 0 30px;
}

.access-cards{
  margin-top:34px;
}

.map-card{
  padding:12px;
}

.map-frame{
  overflow:hidden;

  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
}

.map-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;

  margin-top:10px;
}

/* =========================
   PROXIMITY
========================= */

.proximity-page h1{
  margin:0 0 12px;

  font-size:clamp(36px,4vw,52px);
  line-height:1.1;
}

.proximity-page .lead{
  margin:0 0 30px;
}

.proximity-cards{
  margin-top:34px;
}

.proximity-list{
  display:grid;
  grid-template-columns:minmax(240px,.72fr) minmax(0,1.28fr);
  gap:32px;

  align-items:start;
}

.nearby-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.nearby-item{
  padding:22px;

  border:1px solid var(--line);
  border-radius:20px;

  background:rgba(255,255,255,.04);
}

.nearby-item span{
  display:inline-flex;
  margin-bottom:8px;

  color:#c7d5f7;

  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
}

.nearby-item h3{
  margin:0 0 8px;

  font-size:1.25rem;
}

.nearby-item p{
  margin:0 0 12px;

  color:var(--muted);
}

.proximity-cta{
  margin-top:44px;
}

/* =========================
   CONTACT
========================= */

.contact-page h1,
.thank-you-page h1{
  margin:0 0 12px;

  font-size:clamp(36px,4vw,52px);
  line-height:1.1;
}

.contact-page .lead{
  margin:0 0 30px;
}

.contact-cards{
  margin-top:34px;
}

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;

  margin-top:10px;
}

.form{
  display:grid;
  gap:18px;

  max-width:860px;
  margin-top:22px;
  padding:26px;

  border:1px solid var(--line);
  border-radius:20px;

  background:rgba(255,255,255,.04);

  box-shadow:var(--shadow-soft);
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.form label{
  display:grid;
  gap:8px;

  color:#c7d5f7;

  font-weight:800;
}

.form input,
.form select,
.form textarea{
  width:100%;

  padding:14px 16px;

  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;

  color:var(--text);
  background:rgba(0,0,0,.22);

  font:inherit;
}

.form textarea{
  resize:vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  outline:2px solid rgba(125,211,252,.42);
  outline-offset:2px;
}

.thank-you-card{
  margin-top:24px;
}

.thank-you-card p{
  margin:0 0 8px;
}

.thank-you-card p:last-child{
  margin-bottom:0;
}

.thank-you-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;

  margin-top:25px;
}

/* =========================
   TARIFFS
========================= */

.tarifs-section{
  padding-top:64px;
}

.tarifs-intro{
  padding-top:8px;
}

.tarifs-intro h1{
  margin:0 0 18px;

  font-size:clamp(32px,3.4vw,42px);

  line-height:1.15;
}

.tarifs-intro .lead{
  margin:0 auto;

  color:#c7d5f7;

  font-size:1.18rem;
}

.stay-details{
  margin:22px 0 0;

  color:#eef4ff;

  font-weight:700;
}

.table-wrap{
  margin-top:86px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;

  background:rgba(255,255,255,.035);

  box-shadow:var(--shadow-soft);
}

.table{
  width:100%;

  border-collapse:collapse;
}

.table th,
.table td{
  padding:18px 14px;

  text-align:left;
  vertical-align:middle;

  border-bottom:1px solid rgba(255,255,255,.10);
}

.table th{
  color:#c7d5f7;

  font-weight:900;
}

.table .th-note{
  display:block;
  margin-top:2px;

  color:var(--muted);

  font-size:.82rem;
  font-weight:700;
}

.table tr:last-child td{
  border-bottom:none;
}

.table td{
  color:var(--text);
}

.table strong{
  display:block;
  margin-bottom:2px;
}

.table .muted{
  display:block;

  color:#c7d5f7;
}

.seasonal-table .table{
  min-width:980px;
}

.seasonal-table th.lodging-grange,
.seasonal-table td.lodging-grange{
  background:rgba(125,211,252,.055);
}

.seasonal-table th.lodging-boulangerie,
.seasonal-table td.lodging-boulangerie{
  background:rgba(167,139,250,.06);
}

.seasonal-table .lodging-start{
  border-left:1px solid rgba(255,255,255,.08);
}

.seasonal-table .lodging-boulangerie.lodging-start{
  border-left:1px solid rgba(255,255,255,.16);
}

.seasonal-table tbody tr:hover td{
  background-color:rgba(255,255,255,.035);
}

.seasonal-table tbody tr:hover td.lodging-grange{
  background:rgba(125,211,252,.09);
}

.seasonal-table tbody tr:hover td.lodging-boulangerie{
  background:rgba(167,139,250,.10);
}

.tarifs-note{
  max-width:980px;
  margin:24px auto 0;

  color:#c7d5f7;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;

  padding:26px;

  border:1px solid var(--line);
  border-radius:20px;

  background:rgba(255,255,255,.04);
}

.cta h2{
  margin-bottom:8px;

  font-size:1.5rem;
}

.cta p{
  margin:0;
}

.tarifs-cta{
  margin-top:36px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:980px){

  .cards,
  .cards.small,
  .room-grid{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-section-header{
    display:block;
  }

  .gallery-section-header p{
    max-width:none;
    margin-top:8px;

    text-align:left;
  }

  .proximity-list{
    grid-template-columns:1fr;
  }

  .nav-toggle{
    display:inline-flex;

    margin-left:auto;

    background:transparent;

    color:#fff;

    border:1px solid var(--line);

    padding:10px 14px;

    border-radius:14px;
  }

  .nav{
    display:none;

    position:absolute;

    top:78px;
    left:0;
    right:0;

    background:#070a10;

    flex-direction:column;

    padding:18px;
  }

  .nav.open{
    display:flex;
  }
}

@media (max-width:580px){

  .gallery{
    grid-template-columns:1fr;
  }

  .home-gallery.gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .home-gallery img{
    height:150px;
    border-radius:14px;
  }

  .home-gallery-actions{
    margin-top:18px;
  }

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

  .gallery-section{
    padding:16px;
  }

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

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

  .lightbox{
    grid-template-columns:44px 1fr 44px;
  }

  .lb-close,
  .lb-prev,
  .lb-next{
    width:44px;
    height:44px;

    border-radius:16px;
  }

  .lb-prev,
  .lb-next{
    font-size:1.8rem;
  }

  .hero{
    min-height:560px;
  }

  .hero h1{
    font-size:56px;
  }

  .tagline{
    font-size:1.08rem;
  }

  .btn{
    width:100%;
  }
}

@media(max-width:700px){
  .table-wrap{
    margin-top:54px;
    overflow-x:auto;
  }

  .table{
    min-width:680px;
  }

  .cta{
    align-items:stretch;
    flex-direction:column;
  }
}
