/* =========================================================
   VARIABLES & GLOBAL
========================================================= */

:root{
  --green:#0b4720;
  --green-2:#123f23;
  --gold:#c6923a;
  --cream:#f5efe3;
  --light:#fbfaf7;
  --text:#1d2a22;
  --muted:#657065;
  --border:#e5dece;
  --shadow:0 18px 45px rgba(11,71,32,.12)
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

section[id]{
  scroll-margin-top:86px
}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--light);
  line-height:1.55
}

a{
  color:inherit;
  text-decoration:none
}

img{
  max-width:100%;
  display:block
}

.container{
  width:min(1160px,92vw);
  margin:0 auto
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(226,218,203,.85);
  transition:.25s
}

.nav-wrap{
  height:118px;
  display:flex;
  align-items:center;
  gap:22px;
  transition:.25s
}

.brand{
  display:flex;
  align-items:center;
  height:100%;
  padding:5px 0
}

.brand img{
  width:150px;
  max-height:108px;
  object-fit:contain;
  transition:.25s
}

.site-header.scrolled{
  box-shadow:0 8px 24px rgba(0,0,0,.08)
}

.site-header.scrolled .nav-wrap{
  height:70px
}

.site-header.scrolled .brand img{
  width:116px;
  max-height:50px
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav{
  display:flex;
  align-items:center;
  gap:20px;
  margin-left:auto;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em
}

.main-nav a{
  position:relative;
  white-space:nowrap
}

.main-nav a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:var(--green);
  transform:scaleX(0);
  transition:.2s
}

.main-nav a:hover:after{
  transform:scaleX(1)
}

.nav-cta{
  white-space:nowrap
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px
}

.share-button,
.contact-button,
.facebook-button{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--green);
  border-radius:5px;
  color:var(--green);
  background:transparent;
  cursor:pointer;
  transition:.2s
}

.share-button:hover,
.contact-button:hover,
.facebook-button:hover{
  background:var(--cream)
}

.share-button:focus-visible,
.contact-button:focus-visible,
.facebook-button:focus-visible{
  outline:3px solid rgba(198,146,58,.75);
  outline-offset:3px
}

.share-button svg,
.contact-button svg,
.facebook-button svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round
}

.facebook-button svg{
  fill:currentColor;
  stroke:none
}

.share-button--mobile,
.contact-button--mobile,
.facebook-button--mobile{
  display:none
}

.menu-toggle{
  display:none;
  margin-left:auto;
  border:0;
  background:var(--green);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:6px;
  font-size:22px
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:5px;
  padding:14px 22px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.03em;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s
}

.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 8px 20px rgba(11,71,32,.18)
}

.btn-primary:hover{
  background:var(--green-2);
  transform:translateY(-1px)
}

.btn-outline{
  border-color:var(--green);
  color:var(--green);
  background:#fff
}

.btn-outline:hover{
  background:var(--cream)
}

.share-toast{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:100;
  padding:10px 14px;
  border-radius:5px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .2s, transform .2s
}

.share-toast.is-visible{
  opacity:1;
  transform:translateY(0)
}

/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;
  padding:34px 0 44px;
  overflow:hidden;
  background:linear-gradient(120deg,#fff 0%,#fff 38%,#f4f1e9 100%)
}

.hero-grid{
  display:grid;
  grid-template-columns:.74fr 1.26fr;
  align-items:start;
  gap:30px
}

.hero-content{
  z-index:2;
  padding:42px 0
}

.eyebrow{
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  margin:0 0 18px
}

.hero h1{
  font-size:clamp(34px,4.1vw,56px);
  line-height:1.03;
  margin:0;
  color:var(--green);
  letter-spacing:-.04em
}

.lead{
  font-size:22px;
  margin:22px 0 28px;
  color:#36443b;
  max-width:530px
}

.hero-list{
  list-style:none;
  margin:0 0 32px;
  padding:0;
  display:grid;
  gap:10px
}

.hero-list li{
  position:relative;
  padding-left:28px;
  color:#2d3b32;
  font-weight:600
}

.hero-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--green);
  color:white;
  font-size:12px;
  display:grid;
  place-items:center
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap
}

.hero-photo{
  position:relative;
  display:block;
  justify-self:center;
  width:min(100%, clamp(560px, 50vw, 720px));
  max-width:100%;
  border-radius:4px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  margin-top:18px;
  transition:transform .2s, box-shadow .2s
}

.hero-photo:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 54px rgba(11,71,32,.16)
}

.hero-photo:focus-visible{
  outline:3px solid rgba(198,146,58,.75);
  outline-offset:5px
}

.hero-photo img{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:none;
  object-fit:contain
}

/* =========================================================
   FEATURES
========================================================= */

.features{
  padding:0 0 28px
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border)
}

.feature-card{
  min-height:118px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  background:linear-gradient(180deg,#fff,#fbf7ee);
  border-right:1px solid var(--border);
  font-size:14px;
  color:#183926
}

.feature-card:last-child{
  border-right:0
}

.icon{
  font-size:32px;
  margin-bottom:8px
}

/* =========================================================
   SECTIONS
========================================================= */

.section{
  padding:72px 0
}

.notice-section{
  padding:0 0 46px
}

.notice-box{
  background:#fff8e8;
  border:1px solid #ead8ad;
  color:#55422a;
  border-radius:8px;
  padding:18px 22px;
  text-align:center
}

.notice-box a{
  color:var(--green);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px
}

.notice-box a.btn{
  color:#fff;
  text-decoration:none
}

.notice-box a.btn-outline{
  color:var(--green)
}

.site-link-section{
  padding-top:0
}

.site-link-box{
  display:grid;
  justify-items:center;
  gap:12px
}

.site-link-box span{
  display:block
}

.section-light{
  background:#fff
}

.section-title{
  text-align:center;
  margin:0 auto 42px;
  max-width:760px
}

.section-title.left{
  text-align:left;
  margin-left:0
}

.section-title h2{
  font-size:clamp(32px,3vw,44px);
  line-height:1.12;
  margin:0;
  color:var(--green);
  letter-spacing:-.03em
}

.section-title h2:after{
  content:"";
  display:block;
  width:46px;
  height:2px;
  background:var(--gold);
  margin:16px auto 0
}

.section-title.left h2:after{
  margin-left:0
}

.section-title p{
  color:var(--muted);
  font-size:18px;
  margin:18px 0 0
}

/* =========================================================
   ROOMS
========================================================= */

.room-grid{
  display:grid;
  gap:28px
}

.availability-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:#e6f0e8;
  border:1px solid #c7ddce;
  border-radius:8px;
  color:var(--green);
  padding:18px 22px;
  margin:0 0 28px
}

.availability-box strong{
  font-size:18px;
  line-height:1.5;
  text-align:center
}

.availability-box span{
  color:#2d3b32;
  font-weight:700;
  line-height:1.5;
  text-align:center;
  white-space:nowrap
}

.room-card{
  display:grid;
  grid-template-columns:360px 1fr;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:8px;
  overflow:hidden
}

.room-text{
  padding:32px;
  background:linear-gradient(135deg,#fff,#f7f1e6)
}

.tag{
  display:inline-block;
  background:#e6f0e8;
  color:var(--green);
  border-radius:999px;
  padding:5px 12px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px
}

.room-text h3{
  font-size:24px;
  margin:0 0 4px;
  color:var(--green)
}

.muted{
  color:var(--muted);
  margin-top:0
}

.check-list{
  list-style:none;
  padding:0;
  margin:24px 0;
  display:grid;
  gap:12px
}

.check-list li{
  padding-left:26px;
  position:relative
}

.check-list li:before{
  content:"⊙";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900
}

.price-line{
  display:flex;
  gap:16px;
  align-items:center
}

.price-line p{
  font-size:13px;
  color:var(--muted);
  margin:0
}

.price-box{
  min-width:120px;
  border:1px solid var(--border);
  background:#f7f7ef;
  border-radius:7px;
  padding:14px;
  color:var(--green)
}

.price-box span,
.price-box small{
  display:block;
  font-weight:700;
  color:#526257
}

.price-box strong{
  display:block;
  font-size:38px;
  line-height:1
}

.room-photo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:10px;
  background:#f1eadc;
  align-content:start
}

.room-photo-grid img{
  height:440px;
  width:100%;
  object-fit:cover;
  background:#fff;
  border:1px solid rgba(229,222,206,.9);
  border-radius:5px
}

.room-photo-grid--quad{
  grid-template-rows:repeat(2,1fr);
  align-content:stretch
}

.room-photo-grid--quad img{
  height:100%;
  min-height:220px;
  object-fit:contain
}


.room-note{
  text-align:center;
  margin:24px 0 0;
  color:#3f4b43;
  font-weight:700
}

.room-note a{
  color:var(--green);
  text-decoration:underline;
  text-underline-offset:3px
}


/* =========================================================
   INCLUDED
========================================================= */

.included-section{
  background:#fff
}

.included-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}

.included-grid div{
  background:#f8f4eb;
  border:1px solid var(--border);
  border-radius:8px;
  padding:22px
}

.included-grid strong{
  display:block;
  color:var(--green);
  font-size:18px;
  margin-bottom:8px
}

.included-grid span{
  display:block;
  color:var(--muted);
  font-size:14px
}

/* =========================================================
   COMMUNS
========================================================= */

.communs-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:26px
}

.communs-info div{
  background:#f8f4eb;
  border:1px solid var(--border);
  border-radius:8px;
  padding:18px
}

.communs-info strong{
  display:block;
  color:var(--green);
  font-size:18px
}

.communs-info span{
  display:block;
  color:var(--muted);
  font-size:14px;
  margin-top:4px
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}

.gallery-grid figure{
  position:relative;
  margin:0;
  padding:10px;
  border-radius:6px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  height:210px;
  background:#f1eadc;
  border:1px solid rgba(229,222,206,.9);
  box-shadow:0 8px 24px rgba(0,0,0,.08)
}

.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:transparent;
  border:1px solid rgba(229,222,206,.9);
  border-radius:5px
}

.gallery-grid figcaption{
  position:absolute;
  left:22px;
  bottom:22px;
  background:rgba(11,71,32,.92);
  color:#fff;
  padding:9px 15px;
  border-radius:5px;
  font-weight:900;
  font-size:13px
}

/* =========================================================
   COMFORT CARD
========================================================= */

.comfort-card{
  grid-column:span 2;
  background:linear-gradient(135deg,#fff,#f7f1e6);
  border:1px solid var(--border);
  border-radius:8px;
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.large-icon{
  font-size:44px
}

.comfort-card h3{
  color:var(--green);
  font-size:28px;
  line-height:1.15;
  margin:16px 0 10px
}

.comfort-card p{
  color:var(--muted);
  margin:0
}

/* =========================================================
   LOCATION
========================================================= */

.location-media-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:44px;
  align-items:stretch
}

.nearby-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-top:26px
}

.nearby-grid div{
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:20px 12px
}

.nearby-grid span{
  font-size:30px
}

.nearby-grid strong{
  display:block;
  color:var(--green);
  margin:8px 0 2px
}

.nearby-grid small{
  color:var(--muted);
  font-weight:800
}

.building-card{
  margin:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow)
}

.building-card img{
  width:100%;
  height:390px;
  object-fit:contain;
  background:#f7f5ee
}

.building-card figcaption{
  padding:12px 16px;
  color:var(--green);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.03em
}

.map-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow)
}

.map-card iframe{
  width:100%;
  height:390px;
  border:0;
  display:block
}

.map-card a{
  display:block;
  padding:14px 18px;
  color:var(--green);
  font-weight:800;
  background:#fff
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section{
  padding:72px 0;
  background:#fff
}

.contact-grid{
  display:grid;
  grid-template-columns:410px 1fr;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:8px;
  overflow:hidden
}

.contact-info{
  background:linear-gradient(135deg,var(--green),#073318);
  color:#fff;
  padding:42px
}

.contact-info h2{
  font-size:32px;
  line-height:1.1;
  margin:0 0 12px
}

.contact-info ul{
  list-style:none;
  padding:0;
  margin:28px 0 0;
  display:grid;
  gap:18px
}

.contact-info li{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:12px
}

.contact-info a{
  text-decoration:underline;
  text-underline-offset:3px
}

.whatsapp-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:fit-content;
  min-height:48px;
  margin-top:8px;
  padding:13px 18px;
  border-radius:5px;
  background:#128c7e;
  color:#fff;
  font-weight:800;
  text-decoration:none
}

.whatsapp-button:hover{
  background:#0f766b
}

.whatsapp-button:focus-visible{
  outline:3px solid rgba(198,146,58,.75);
  outline-offset:3px
}

.whatsapp-button svg{
  width:22px;
  height:22px;
  fill:currentColor
}

.contact-form{
  padding:32px;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}

.contact-form textarea,
.contact-form button,
.form-help{
  grid-column:1/-1
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid #e8e3d9;
  background:#fbfbfa;
  border-radius:4px;
  padding:16px;
  font:inherit
}

.contact-form select{
  grid-column:span 2
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:2px solid rgba(11,71,32,.18);
  border-color:var(--green)
}

.visit-choice{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  color:#3f4b43;
  font-size:14px;
  font-weight:700
}

.visit-choice input{
  width:auto
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none
}

.turnstile-widget,
.turnstile-error{
  grid-column:1/-1
}

.form-help{
  font-size:13px;
  color:var(--muted);
  margin:0
}

.form-help a{
  color:var(--green);
  font-weight:800
}

/* =========================================================
   FAQ
========================================================= */

.faq-section{
  background:var(--light)
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px
}

.faq-grid article{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:24px;
  box-shadow:0 8px 24px rgba(0,0,0,.05)
}

.faq-grid h3{
  color:var(--green);
  margin:0 0 10px;
  font-size:20px
}

.faq-grid p{
  color:var(--muted);
  margin:0
}

.faq-grid p a{
  color:var(--green);
  font-weight:800;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px
}

.faq-grid p a:hover{
  color:var(--green-2);
  text-decoration-thickness:3px
}

.faq-grid p a:focus-visible{
  outline:3px solid rgba(198,146,58,.55);
  outline-offset:3px;
  border-radius:2px
}

/* =========================================================
   STUDENTS FROM FRANCE
========================================================= */

.student-france-page .hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1.12fr);
  align-items:center;
  gap:48px
}

.student-france-page .hero-content{
  padding:30px 0
}

.student-france-page .hero h1{
  font-size:clamp(34px,3.6vw,50px);
  line-height:1.08
}

.student-france-page .lead{
  max-width:640px;
  font-size:19px;
  line-height:1.55;
  margin:20px 0 24px
}

.student-france-page .hero-list{
  margin-bottom:28px
}

.student-france-page .section{
  padding:64px 0
}

.student-france-page .section-title{
  max-width:860px;
  margin-bottom:34px
}

.student-france-page .section-title.left{
  max-width:920px
}

.student-france-page .included-grid + .notice-box,
.student-france-page .communs-info + .notice-box{
  margin-top:26px
}

.student-france-page .room-card{
  grid-template-columns:minmax(0,1fr) minmax(0,1.15fr)
}

.student-france-page .room-text{
  padding:36px
}

.student-france-page .room-text h3{
  line-height:1.25;
  margin-bottom:10px
}

.student-france-page .room-text .hero-actions{
  align-items:stretch;
  flex-direction:column
}

.student-france-page .room-text .btn{
  width:100%;
  line-height:1.35;
  text-align:center
}

.student-france-page .room-photo-grid--quad img{
  object-fit:cover
}

.student-france-page .site-link-box{
  padding:26px
}

.student-france-page .site-link-box .hero-actions{
  justify-content:center
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
  background:linear-gradient(135deg,#073318,var(--green));
  color:#fff
}

.footer-main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:36px 0 24px
}

.footer-logo{
  width:150px;
  background:#fff;
  padding:8px;
  border-radius:4px
}

.footer-info{
  text-align:right
}

.footer-info strong,
.footer-info span,
.footer-info a{
  display:block;
  color:rgba(255,255,255,.86);
  font-size:14px;
  margin:4px 0
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.16);
  padding:16px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  white-space:nowrap;
  overflow-x:auto
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
  margin:0;
  color:rgba(255,255,255,.8);
  font-size:14px;
  flex:0 0 auto
}

.footer-bottom a{
  text-decoration:underline;
  text-underline-offset:3px
}

/* =========================================================
   LEGAL
========================================================= */

.legal-page{
  background:#fff
}

.legal-content{
  max-width:850px;
  padding:70px 0
}

.legal-content h1{
  color:var(--green);
  font-size:42px
}

.legal-content h2{
  color:var(--green);
  margin-top:34px
}

.legal-content p,
.legal-content li{
  color:#3f4b43
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width:1080px){

  .nav-actions{
    display:none
  }

  .main-nav{
    gap:20px
  }

  .brand img{
    width:136px
  }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width:980px){

  .student-france-page .hero-grid,
  .student-france-page .room-card{
    grid-template-columns:1fr
  }

  .student-france-page .hero-grid{
    gap:20px
  }

  .nav-wrap{
    height:74px;
    gap:12px
  }

  .menu-toggle{
    display:block
  }

  .share-button--mobile,
  .contact-button--mobile,
  .facebook-button--mobile{
    display:inline-flex;
  }

  .share-button--mobile{
    margin-left:auto
  }

  .contact-button--mobile + .menu-toggle{
    margin-left:0
  }

  .main-nav{
    display:none
  }

  .main-nav.open{
    display:flex;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    flex-direction:column;
    align-items:flex-start;
    padding:22px 4vw;
    gap:16px
  }

  .site-header.scrolled .main-nav.open{
    top:60px
  }

  .hero-grid,
  .location-media-grid,
  .contact-grid{
    grid-template-columns:1fr
  }

  .hero-photo{
    order:-1;
    width:fit-content;
    max-width:100%;
    margin:0 auto
  }

  .hero-photo img{
    width:auto;
    max-width:100%;
    height:auto;
    max-height:520px
  }

  .feature-grid{
    grid-template-columns:repeat(3,1fr)
  }

  .room-card{
    grid-template-columns:1fr
  }

  .availability-box span{
    white-space:normal
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .comfort-card{
    grid-column:span 2
  }

  .contact-form{
    grid-template-columns:1fr
  }

  .contact-form select{
    grid-column:1/-1
  }

  .nearby-grid{
    grid-template-columns:repeat(3,1fr)
  }

  .communs-info,
  .included-grid,
  .faq-grid{
    grid-template-columns:1fr
  }

  .footer-main{
    align-items:flex-start
  }

  .footer-info{
    text-align:left
  }
}

@media (max-width:620px){

  .student-france-page .section{
    padding:50px 0
  }

  .student-france-page .section-title h2{
    font-size:30px;
    line-height:1.18
  }

  .student-france-page .hero-content{
    padding:24px 0 28px
  }

  .student-france-page .hero h1{
    font-size:34px
  }

  .student-france-page .lead{
    font-size:17px;
    margin:18px 0 22px
  }

  .student-france-page .section-title{
    margin-bottom:28px
  }

  .student-france-page .room-text,
  .student-france-page .site-link-box{
    padding:24px
  }

  .brand img{
    width:112px;
    max-height:52px
  }

  .hero{
    padding-top:10px
  }

  .hero-content{
    padding:30px 0
  }

  .hero-photo{
    width:100%
  }

  .hero-photo img{
    width:100%;
    max-height:none
  }

  .building-card img{
    height:300px
  }

  .feature-grid{
    grid-template-columns:1fr 1fr
  }

  .room-photo-grid{
    grid-template-columns:1fr
  }

  .room-photo-grid img{
    height:280px
  }

  .room-photo-grid--quad{
    grid-template-columns:1fr 1fr;
    grid-template-rows:repeat(2,1fr)
  }

  .room-photo-grid--quad img{
    height:100%;
    min-height:180px
  }

  .gallery-grid{
    grid-template-columns:1fr
  }

  .comfort-card{
    grid-column:span 1
  }

  .nearby-grid{
    grid-template-columns:1fr 1fr
  }

  .footer-main{
    display:block
  }

  .footer-info{
    margin-top:18px
  }

  .btn{
    width:100%
  }

  .footer-bottom{
    justify-content:flex-start
  }

  .price-line{
    display:block
  }

  .price-line p{
    margin-top:10px
  }
}

.cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:1000;
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  max-width:980px;
  margin:0 auto;
  padding:18px;
  color:#1c2b24;
  background:#fff;
  border:1px solid rgba(28,43,36,.16);
  border-radius:8px;
  box-shadow:0 18px 50px rgba(28,43,36,.18)
}

.cookie-banner__content{
  max-width:680px
}

.cookie-banner strong{
  display:block;
  margin-bottom:6px
}

.cookie-banner p{
  margin:0 0 8px;
  color:#53645b;
  line-height:1.5
}

.cookie-banner a{
  color:#246b4f;
  font-weight:700
}

.cookie-banner__actions{
  display:flex;
  gap:10px;
  flex-shrink:0
}

@media (max-width:720px){
  .cookie-banner{
    display:block;
    left:12px;
    right:12px;
    bottom:12px
  }

  .cookie-banner__actions{
    flex-direction:column;
    margin-top:14px
  }
}

/* =========================================================
   VISIONNEUSE PHOTO
========================================================= */
.lightbox-trigger{
  cursor:zoom-in;
  transition:filter .2s,transform .2s,box-shadow .2s
}

.lightbox-trigger:hover{
  filter:brightness(.9);
  box-shadow:0 0 0 3px rgba(198,146,58,.8);
  transform:scale(1.01)
}

.lightbox-trigger:focus-visible{
  outline:3px solid #c6923a;
  outline-offset:3px
}

body.lightbox-open{
  overflow:hidden
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  place-items:center;
  padding:72px 86px 82px;
  color:#fff;
  background:rgba(5,12,8,.94)
}

.lightbox.is-open{
  display:grid
}

.lightbox__stage{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  overflow:hidden;
  touch-action:none
}

.lightbox__image{
  max-width:100%;
  max-height:calc(100vh - 170px);
  object-fit:contain;
  user-select:none;
  transition:transform .12s ease;
  cursor:zoom-in
}

.lightbox__image.is-zoomed{
  cursor:grab
}

.lightbox button{
  border:1px solid rgba(255,255,255,.32);
  color:#fff;
  background:rgba(11,71,32,.82);
  cursor:pointer
}

.lightbox button:hover,.lightbox button:focus-visible{
  background:#c6923a;
  outline:none
}

.lightbox__close{
  position:absolute;
  top:18px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:34px;
  line-height:1
}

.lightbox__nav{
  position:absolute;
  top:50%;
  width:54px;
  height:70px;
  border-radius:7px;
  font-size:48px;
  line-height:1;
  transform:translateY(-50%)
}

.lightbox__nav--prev{left:18px}
.lightbox__nav--next{right:18px}

.lightbox__footer{
  position:absolute;
  left:50%;
  bottom:22px;
  display:flex;
  gap:14px;
  align-items:center;
  max-width:60%;
  transform:translateX(-50%)
}

.lightbox__caption{font-weight:700}
.lightbox__counter{white-space:nowrap;color:rgba(255,255,255,.75)}

.lightbox__zoom{
  position:absolute;
  right:22px;
  bottom:18px;
  display:flex;
  gap:5px
}

.lightbox__zoom button{
  min-width:42px;
  height:42px;
  padding:0 10px;
  border-radius:5px;
  font-size:19px
}

@media (max-width:720px){
  .lightbox{padding:68px 12px 130px}
  .lightbox__image{max-height:calc(100vh - 210px)}
  .lightbox__nav{top:auto;bottom:66px;width:48px;height:48px;font-size:38px;transform:none}
  .lightbox__nav--prev{left:14px}
  .lightbox__nav--next{right:14px}
  .lightbox__footer{bottom:76px;max-width:calc(100% - 140px);text-align:center}
  .lightbox__caption{display:none}
  .lightbox__zoom{right:50%;bottom:16px;transform:translateX(50%)}
}
