/* ============================================================
   Villa Azzurra — Cap de Formentor
   Presented by ProLuxe Travel
   Palette:  Olive #424632 · Cream #F5F0E8 · Dark #1A1A1A
             Charcoal #2A2A2A · Grey #8A8A80
   Fonts:    Cormorant Garamond (wordmark, display rates)
             Playfair Display (headings)
             Raleway (body, UI)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  font-family:'Raleway',sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.7;
  color:#1A1A1A;
  background:#F5F0E8;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
ul,ol{list-style:none}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6{
  font-family:'Playfair Display',serif;
  font-weight:500;
  line-height:1.15;
  letter-spacing:-0.01em;
}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 clamp(20px,5vw,48px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  transition:background .4s ease, backdrop-filter .4s ease;
}
.header.nav--scrolled{
  background:rgba(26,26,26,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1240px;
  margin:0 auto;
  padding:22px clamp(20px,5vw,48px);
}
.nav__wordmark{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(24px,2.6vw,30px);
  font-weight:500;
  letter-spacing:.04em;
  color:#F5F0E8;
  transition:opacity .3s;
}
.nav__wordmark:hover{opacity:.8}
.nav__links{
  display:flex;
  gap:32px;
}
.nav__link{
  font-size:12px;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#F5F0E8;
  position:relative;
  transition:color .3s;
}
.nav__link::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;
  width:0;height:1px;
  background:#F5F0E8;
  transition:width .3s ease;
}
.nav__link:hover::after{width:100%}

.nav__hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:6px;
}
.nav__hamburger span{
  display:block;
  width:24px;height:2px;
  background:#F5F0E8;
  transition:transform .3s,opacity .3s;
}
@media(max-width:900px){
  .nav__links{display:none}
  .nav__hamburger{display:flex}
}

/* ============================================================
   OFF-CANVAS MOBILE NAV
   ============================================================ */
.offcanvas{
  position:fixed;
  inset:0;
  z-index:200;
  pointer-events:none;
}
.offcanvas.is-open{pointer-events:all}
.offcanvas__overlay{
  position:absolute;inset:0;
  background:rgba(26,26,26,.6);
  opacity:0;
  transition:opacity .4s ease;
}
.offcanvas.is-open .offcanvas__overlay{opacity:1}
.offcanvas__panel{
  position:absolute;top:0;right:0;
  width:min(380px,85vw);height:100%;
  background:#1A1A1A;
  padding:clamp(32px,6vw,60px) clamp(28px,5vw,48px);
  display:flex;flex-direction:column;justify-content:center;
  transform:translateX(100%);
  transition:transform .45s cubic-bezier(.4,0,.2,1);
}
.offcanvas.is-open .offcanvas__panel{transform:translateX(0)}
.offcanvas__close{
  position:absolute;top:24px;right:24px;
  font-size:32px;color:#F5F0E8;line-height:1;
  transition:opacity .3s;
}
.offcanvas__close:hover{opacity:.6}
.offcanvas__nav{display:flex;flex-direction:column;gap:26px}
.offcanvas__link{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,5vw,34px);
  font-weight:500;color:#F5F0E8;
  transition:color .3s;
}
.offcanvas__link:hover{color:#8A8A80}
.offcanvas__contact{
  margin-top:auto;padding-top:40px;
  border-top:1px solid rgba(245,240,232,.1);
  color:#8A8A80;
  font-size:13px;line-height:1.8;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  height:92vh;
  min-height:640px;
  overflow:hidden;
}
.hero__bg-wrap{position:absolute;inset:0;z-index:0}
.hero__bg{
  width:100%;height:100%;
  background-size:cover;
  background-position:center 35%;
  transform:scale(1.02);
  will-change:transform;
  filter:brightness(.88) saturate(.92);
}
.hero__overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 85% 70% at 18% 98%, rgba(10,10,10,.62) 0%, rgba(10,10,10,0) 60%),
    linear-gradient(
      to bottom,
      rgba(26,26,26,.4) 0%,
      rgba(26,26,26,.14) 24%,
      rgba(26,26,26,.28) 52%,
      rgba(26,26,26,.88) 100%
    );
}
.hero__content{
  position:absolute;
  left:clamp(24px,6vw,96px);
  right:clamp(24px,6vw,96px);
  bottom:clamp(48px,7vw,80px);
  z-index:2;
  max-width:760px;
}
.hero__eyebrow{
  font-size:11px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(245,240,232,.88);
  margin-bottom:16px;
  text-shadow:0 1px 12px rgba(0,0,0,.4);
}
.hero__title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(44px,6.5vw,84px);
  font-weight:500;
  color:#F5F0E8;
  margin-bottom:20px;
  letter-spacing:-0.015em;
  line-height:1.02;
  text-shadow:0 2px 40px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.25);
}
.hero__subtitle{
  font-size:clamp(15px,1.2vw,17px);
  font-weight:400;
  color:rgba(245,240,232,.92);
  max-width:560px;
  margin:0 0 28px;
  line-height:1.75;
  text-shadow:0 1px 18px rgba(0,0,0,.45);
}
.hero__facts{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
  padding-top:22px;
  border-top:1px solid rgba(245,240,232,.22);
  max-width:620px;
}
.hero__facts li{
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(245,240,232,.95);
  position:relative;
  text-shadow:0 1px 12px rgba(0,0,0,.4);
}
.hero__facts li:not(:last-child)::after{
  content:'';
  position:absolute;
  right:-13px;top:50%;
  transform:translateY(-50%);
  width:1px;height:10px;
  background:rgba(245,240,232,.35);
}

.hero__scroll-hint{
  position:absolute;
  bottom:28px;left:50%;
  transform:translateX(-50%);z-index:2;
}
.hero__scroll-hint span{
  display:block;width:1px;height:40px;
  background:linear-gradient(180deg,rgba(245,240,232,0),rgba(245,240,232,.5));
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%,100%{opacity:.3;transform:scaleY(.6)}
  50%{opacity:1;transform:scaleY(1)}
}

.reveal-hero{opacity:0}

/* ---------- Hero top-right actions (Save / Share) ---------- */
.hero__actions{
  position:absolute;
  top:clamp(90px,10vw,110px);
  right:clamp(20px,5vw,48px);
  z-index:3;
  display:flex;
  gap:10px;
}
.hero__action{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:rgba(26,26,26,.42);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(245,240,232,.24);
  color:rgba(245,240,232,.95);
  font-size:11px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:background .3s ease, border-color .3s ease, color .3s ease;
}
.hero__action:hover{
  background:rgba(26,26,26,.68);
  border-color:rgba(245,240,232,.5);
  color:#F5F0E8;
}
.hero__action-icon{
  flex-shrink:0;
  transition:transform .3s ease, fill .3s ease, stroke .3s ease;
}
.hero__action.is-saved{
  background:rgba(66,70,50,.82);
  border-color:#424632;
  color:#F5F0E8;
}
.hero__action.is-saved .hero__action-icon{
  fill:#F5F0E8;
  stroke:#F5F0E8;
}
.hero__action.is-saved .hero__action-label::after{
  content:'d';
}
.hero__action.is-copied .hero__action-label{
  color:#F5F0E8;
}
.hero__action.is-copied .hero__action-label::after{
  content:' link copied';
}
@media(max-width:640px){
  .hero__actions{
    top:84px;
    right:16px;
    gap:8px;
  }
  .hero__action{padding:9px 12px;font-size:10px}
  .hero__action-label{display:none}
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 40px;
  font-family:'Raleway',sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  border-radius:0;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  cursor:pointer;
}
.btn--primary{
  background:#424632;
  color:#F5F0E8;
}
.btn--primary:hover{
  background:#2a2d21;
  transform:translateY(-2px);
}
.btn--cream{
  background:#F5F0E8;
  color:#424632;
  border:1px solid #F5F0E8;
}
.btn--cream:hover{
  background:transparent;
  color:#F5F0E8;
}
.btn--ghost-cream{
  background:transparent;
  color:#F5F0E8;
  border:1px solid rgba(245,240,232,.4);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn--ghost-cream:hover{
  background:rgba(245,240,232,.08);
  border-color:rgba(245,240,232,.8);
}
.btn--full{width:100%}
.btn--whatsapp{
  background:transparent;
  color:#424632;
  border:1px solid #424632;
  gap:10px;
}
.btn--whatsapp .btn__icon{
  flex-shrink:0;
  transition:transform .3s ease;
}
.btn--whatsapp:hover{
  background:#424632;
  color:#F5F0E8;
}
.btn--whatsapp:hover .btn__icon{
  transform:scale(1.08);
}
.btn--outline-olive{
  background:transparent;
  color:#424632;
  border:1px solid #424632;
  gap:10px;
}
.btn--outline-olive .btn__icon{flex-shrink:0;transition:transform .3s ease}
.btn--outline-olive:hover{
  background:#424632;
  color:#F5F0E8;
}
.btn--outline-olive:hover .btn__icon{transform:scale(1.08)}

/* ============================================================
   SECTIONS
   ============================================================ */
.section{
  padding:clamp(80px,10vw,140px) 0;
  position:relative;
}
.section--cream{background:#F5F0E8}
.section--dark{background:#1A1A1A}
.section--olive{background:#424632}

.section__eyebrow{
  font-size:11px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  margin-bottom:16px;
}
.section__eyebrow--light{color:rgba(245,240,232,.55)}

.section__title{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,4.2vw,52px);
  color:#1A1A1A;
  margin-bottom:24px;
  font-weight:400;
}
.section__title--light{color:#F5F0E8}

.reveal{opacity:0}
.reveal-rate{opacity:0}
.reveal-card{opacity:0}

/* ============================================================
   EDITORIAL LEAD
   ============================================================ */
.editorial__inner{
  max-width:760px;
}
.editorial__lead{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(22px,2.2vw,28px);
  font-weight:400;
  line-height:1.6;
  color:#1A1A1A;
}
.editorial__rule{
  width:48px;
  height:1px;
  background:#424632;
  margin:36px 0;
}
.editorial__body{
  font-size:clamp(15px,1.1vw,17px);
  font-weight:300;
  line-height:1.85;
  color:#2A2A2A;
  max-width:640px;
}

/* ============================================================
   GALLERY — horizontal snap strip
   ============================================================ */
.gallery{
  padding:clamp(60px,8vw,100px) 0 clamp(40px,6vw,72px);
  background:#F5F0E8;
  position:relative;
}
.gallery__intro{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:28px;
}
.gallery__intro .section__eyebrow{margin-bottom:0}
.gallery__hint{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#8A8A80;
}
.gallery__strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:0 clamp(20px,5vw,48px);
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.gallery__strip::-webkit-scrollbar{display:none}
.gallery__item{
  flex:0 0 auto;
  height:clamp(360px,62vh,620px);
  width:auto;
  scroll-snap-align:start;
  overflow:hidden;
  margin:0;
}
.gallery__item img{
  width:auto;
  height:100%;
  object-fit:cover;
  display:block;
  filter:sepia(.12) saturate(.82) brightness(.96);
  transition:transform .6s ease, filter .6s ease;
}
.gallery__item:hover img{
  transform:scale(1.015);
  filter:sepia(.08) saturate(.9) brightness(1);
}
.gallery__item--wide img{
  aspect-ratio:16/9;
}
.gallery__caption{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:15px;
  color:#5A5A52;
  padding:14px 4px 0;
  max-width:340px;
  line-height:1.5;
  letter-spacing:.01em;
}
.gallery__item--wide .gallery__caption{max-width:480px}
@media(max-width:640px){
  .gallery__caption{font-size:13px;padding-top:10px}
}
.gallery__controls{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  padding:24px clamp(20px,5vw,48px) 0;
  max-width:1240px;
  margin:0 auto;
}
.gallery__arrow{
  width:44px;height:44px;
  border:1px solid rgba(26,26,26,.2);
  background:transparent;
  color:#1A1A1A;
  font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:all .3s ease;
}
.gallery__arrow:hover{
  background:#424632;
  border-color:#424632;
  color:#F5F0E8;
}

/* ============================================================
   PROPERTY FACTS
   ============================================================ */
.facts__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(32px,4vw,56px) clamp(40px,5vw,72px);
}
@media(max-width:900px){.facts__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.facts__grid{grid-template-columns:1fr;gap:32px}}

.facts__item{
  padding-top:24px;
  border-top:1px solid rgba(26,26,26,.12);
}
.facts__label{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  margin-bottom:10px;
}
.facts__value{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,2.4vw,32px);
  font-weight:400;
  color:#1A1A1A;
  margin-bottom:12px;
  letter-spacing:-0.01em;
}
.facts__note{
  font-size:14px;
  line-height:1.7;
  color:#5A5A52;
  font-weight:300;
  max-width:320px;
}

/* ============================================================
   INCLUDED / ON REQUEST
   ============================================================ */
.services{
  padding:clamp(80px,10vw,140px) 0;
}
.services__head{
  max-width:640px;
  margin-bottom:clamp(48px,6vw,72px);
}
.services__intro{
  font-size:15px;
  color:#5A5A52;
  line-height:1.8;
  font-weight:300;
}
.services__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,5vw,80px);
  max-width:1000px;
}
@media(max-width:760px){.services__grid{grid-template-columns:1fr;gap:40px}}
.services__col{
  border-top:1px solid rgba(26,26,26,.14);
  padding-top:28px;
}
.services__col-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,2vw,26px);
  font-weight:400;
  color:#1A1A1A;
  margin-bottom:20px;
  letter-spacing:-0.005em;
}
.services__col-note{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:15px;
  color:#8A8A80;
  font-weight:400;
  letter-spacing:.02em;
  margin-left:8px;
}
.services__list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.services__list li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  line-height:1.65;
  color:#2A2A2A;
  font-weight:300;
}
.services__list li::before{
  content:'';
  position:absolute;
  left:0;top:10px;
  width:6px;height:1px;
  background:#424632;
}

/* ============================================================
   SEASONAL RATE CARD
   ============================================================ */
.rates__intro{
  font-size:15px;
  color:rgba(245,240,232,.6);
  max-width:560px;
  margin-bottom:56px;
  line-height:1.75;
}
.rates__table{
  max-width:880px;
}
.rates__row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding:30px 0;
  border-bottom:1px solid rgba(245,240,232,.08);
  gap:40px;
}
.rates__row:last-child{border-bottom:none}
.rates__season{
  font-size:11px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(245,240,232,.8);
  margin-bottom:6px;
}
.rates__dates{
  font-size:13px;
  color:rgba(245,240,232,.42);
  letter-spacing:.04em;
}
.rates__right{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-shrink:0;
}
.rates__price{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(28px,3.2vw,44px);
  font-weight:400;
  color:#F5F0E8;
  letter-spacing:-0.01em;
  line-height:1;
}
.rates__unit{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(245,240,232,.5);
  font-weight:500;
}
.rates__foot{
  font-size:13px;
  color:rgba(245,240,232,.45);
  margin-top:48px;
  max-width:760px;
  line-height:1.8;
}

@media(max-width:640px){
  .rates__row{flex-direction:column;align-items:flex-start;gap:12px}
}

/* ============================================================
   AVAILABILITY MAPPER
   ============================================================ */
.availability__intro{
  font-size:15px;
  color:#5A5A52;
  max-width:560px;
  line-height:1.75;
  margin-bottom:28px;
}
.availability__legend{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:44px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#8A8A80;
}
.availability__swatch{
  display:inline-block;
  width:14px;height:14px;
  flex-shrink:0;
}
.availability__swatch--reserved{background:#424632}
.availability__swatch--available{background:transparent;border:1px solid rgba(26,26,26,.18)}
.availability__legend-label:not(:last-child){margin-right:24px}

.availability__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:clamp(14px,2vw,28px);
}
@media(max-width:1100px){.availability__grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:760px){.availability__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.availability__grid{grid-template-columns:1fr}}

.month{
  padding:18px 0;
}
.month__name{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#8A8A80;
  margin-bottom:12px;
  font-weight:500;
}
.month__weekdays{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:2px;
  margin-bottom:4px;
}
.month__wd{
  font-size:9px;
  color:#A8A8A0;
  text-align:center;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.month__days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:2px;
}
.day{
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  color:#2A2A2A;
  background:transparent;
  border:1px solid transparent;
}
.day--blank{visibility:hidden}
.day--available{
  background:rgba(26,26,26,.02);
  border-color:rgba(26,26,26,.06);
}
.day--reserved{
  background:#424632;
  color:#F5F0E8;
  border-color:#424632;
}
.day--today{
  outline:1px solid #424632;
  outline-offset:-2px;
}

/* ============================================================
   CONCIERGE
   ============================================================ */
.concierge__intro{
  font-size:15px;
  color:#5A5A52;
  max-width:560px;
  line-height:1.75;
  margin-bottom:56px;
}
.concierge__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-bottom:56px;
}
@media(max-width:900px){.concierge__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.concierge__grid{grid-template-columns:1fr}}

.concierge__card{}
.concierge__image{
  aspect-ratio:3/4;
  width:100%;
  background-size:cover;
  background-position:center;
  filter:sepia(.18) saturate(.78) brightness(.94);
  margin-bottom:18px;
  transition:transform .6s ease;
}
.concierge__card:hover .concierge__image{transform:scale(1.01)}
.concierge__name{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#1A1A1A;
  margin-bottom:10px;
  font-weight:500;
}
.concierge__body{
  font-size:14px;
  line-height:1.75;
  color:#5A5A52;
  font-weight:300;
}
.concierge__list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:12px;
  list-style:none;
  padding:0;
}
.concierge__list li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  line-height:1.6;
  color:#2A2A2A;
  font-weight:300;
}
.concierge__list li::before{
  content:'';
  position:absolute;
  left:0;top:10px;
  width:6px;height:1px;
  background:#424632;
}
.concierge__detail{
  font-size:15px;
  color:#5A5A52;
  max-width:760px;
  line-height:1.85;
  margin-bottom:32px;
  font-weight:300;
}
.concierge__footnote{
  font-size:14px;
  color:#8A8A80;
  max-width:760px;
  line-height:1.8;
  font-style:italic;
  font-family:'Cormorant Garamond',serif;
  font-size:16px;
}

/* ============================================================
   GUEST BOOK
   ============================================================ */
.guestbook{
  padding:clamp(80px,10vw,120px) 0;
  background:#EDE7DB;
}
.guestbook__inner{
  max-width:820px;
  text-align:center;
}
.guestbook__inner .section__eyebrow{
  margin-bottom:40px;
}
.guestbook__quote{
  position:relative;
  margin:0 0 32px;
  padding:0 clamp(16px,4vw,40px);
}
.guestbook__mark{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(80px,10vw,120px);
  line-height:.6;
  color:rgba(66,70,50,.22);
  margin-bottom:-10px;
}
.guestbook__text{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(22px,2.4vw,30px);
  line-height:1.5;
  color:#1A1A1A;
  font-weight:400;
  max-width:680px;
  margin:0 auto 28px;
  letter-spacing:.005em;
}
.guestbook__attrib{
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:center;
}
.guestbook__name{
  font-family:'Cormorant Garamond',serif;
  font-size:16px;
  font-style:italic;
  color:#424632;
  letter-spacing:.04em;
}
.guestbook__meta{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  font-weight:500;
}
.guestbook__note{
  font-size:14px;
  color:#5A5A52;
  line-height:1.8;
  max-width:580px;
  margin:28px auto 0;
  font-weight:300;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location{
  padding:clamp(100px,12vw,180px) 0 clamp(80px,10vw,140px);
}
.location__inner{
  text-align:center;
}
.location__title{
  font-size:clamp(44px,5.6vw,72px);
  margin-bottom:28px;
}
.location__lead{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.65;
  color:#2A2A2A;
  max-width:620px;
  margin:0 auto 56px;
  font-weight:400;
}
.location__map{
  position:relative;
  max-width:1180px;
  margin:0 auto;
  background:#F5F0E8;
  border:1px solid rgba(26,26,26,.08);
  box-shadow:0 30px 80px -40px rgba(26,26,26,.22);
  overflow:hidden;
}
.location__map-canvas{
  width:100%;
  height:clamp(440px,62vh,620px);
  background:#EAE4D8;
}
.location__map-hint{
  position:absolute;
  top:20px;right:20px;
  z-index:400;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#5A5A52;
  background:rgba(245,240,232,.92);
  padding:8px 14px;
  border:1px solid rgba(26,26,26,.1);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  pointer-events:none;
  animation:mapHintFade 4.5s ease-in-out 1.2s forwards;
}
@keyframes mapHintFade{
  0%{opacity:1;transform:translateY(0)}
  80%{opacity:1;transform:translateY(0)}
  100%{opacity:0;transform:translateY(-6px);visibility:hidden}
}

/* ---------- Leaflet base overrides ---------- */
.villa-tiles{
  filter:saturate(.78) brightness(1.02);
}
.leaflet-container{
  background:#EAE4D8;
  font-family:'Raleway',sans-serif;
}
.leaflet-control-zoom{
  border:none !important;
  box-shadow:0 4px 16px rgba(26,26,26,.1) !important;
  margin:14px !important;
}
.leaflet-control-zoom a{
  background:#F5F0E8 !important;
  color:#424632 !important;
  border:1px solid rgba(66,70,50,.2) !important;
  font-size:18px !important;
  font-weight:300 !important;
  width:36px !important;
  height:36px !important;
  line-height:34px !important;
  transition:background .25s ease !important;
}
.leaflet-control-zoom a:hover{
  background:#424632 !important;
  color:#F5F0E8 !important;
}
.leaflet-control-attribution{
  background:rgba(245,240,232,.72) !important;
  font-size:9px !important;
  letter-spacing:.04em;
  color:#8A8A80 !important;
  padding:2px 8px !important;
}
.leaflet-control-attribution a{color:#5A5A52 !important}

/* ---------- Custom POI markers ---------- */
.poi-icon{background:none !important;border:none !important;overflow:visible !important}
.poi{
  position:relative;
  width:100%;height:100%;
}
.poi__dot{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:16px;height:16px;
  border-radius:50%;
  background:#424632;
  border:2px solid #F5F0E8;
  box-shadow:0 2px 8px rgba(26,26,26,.3);
  transition:width .25s ease, height .25s ease, box-shadow .25s ease;
  cursor:pointer;
  z-index:2;
}
.poi__label{
  position:absolute;
  top:50%;
  left:calc(50% + 14px);
  transform:translateY(-50%) translateX(-4px);
  font-family:'Cormorant Garamond',serif;
  font-size:13px;
  font-weight:500;
  white-space:nowrap;
  color:#1A1A1A;
  background:rgba(245,240,232,.94);
  padding:4px 10px;
  border:1px solid rgba(66,70,50,.18);
  letter-spacing:.01em;
  pointer-events:none;
  opacity:0;
  transition:opacity .25s ease, transform .25s ease;
  z-index:1;
}
.poi:hover{z-index:600}
.poi:hover .poi__dot{
  width:20px;height:20px;
  box-shadow:0 4px 14px rgba(26,26,26,.45);
}
.poi:hover .poi__label{
  opacity:1;
  transform:translateY(-50%) translateX(0);
}

/* Featured (villa) marker — bigger + pulse */
.poi--featured .poi__dot{
  width:22px;height:22px;
  border-width:3px;
}
.poi--featured:hover .poi__dot{
  width:26px;height:26px;
}
.poi--featured .poi__dot::before,
.poi--featured .poi__dot::after{
  content:'';
  position:absolute;
  inset:-3px;
  border-radius:50%;
  border:2px solid rgba(66,70,50,.55);
  animation:poiPulse 2.4s ease-out infinite;
  pointer-events:none;
}
.poi--featured .poi__dot::after{
  animation-delay:1.2s;
}
@keyframes poiPulse{
  0%{transform:scale(1);opacity:.7}
  100%{transform:scale(2.6);opacity:0}
}
.poi--featured .poi__label{
  left:calc(50% + 18px);
  font-size:14px;
  font-weight:600;
  background:#424632;
  color:#F5F0E8;
  border-color:#424632;
  opacity:1;
}

/* ---------- Leaflet popup override ---------- */
.leaflet-popup-content-wrapper{
  background:#F5F0E8 !important;
  color:#1A1A1A !important;
  border-radius:0 !important;
  box-shadow:0 18px 60px -12px rgba(26,26,26,.25) !important;
  padding:0 !important;
  border:1px solid rgba(26,26,26,.08);
}
.leaflet-popup-content{
  margin:0 !important;
  width:auto !important;
  line-height:1.5 !important;
  font-family:'Raleway',sans-serif !important;
}
.leaflet-popup-tip{background:#F5F0E8 !important}
.leaflet-popup-close-button{
  color:#8A8A80 !important;
  font-size:22px !important;
  padding:8px 10px !important;
  font-weight:300 !important;
}
.leaflet-popup-close-button:hover{color:#1A1A1A !important}

.poi-pop{
  width:280px;
}
.poi-pop__photo{
  width:100%;
  height:170px;
  background-size:cover;
  background-position:center;
  filter:sepia(.12) saturate(.86) brightness(.96);
}
.poi-pop__photo--mono{
  background:linear-gradient(135deg,#424632 0%,#2a2d21 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  filter:none;
}
.poi-pop__mono-label{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:22px;
  color:rgba(245,240,232,.7);
  letter-spacing:.04em;
}
.poi-pop__body{
  padding:20px 22px 22px;
}
.poi-pop__kind{
  font-size:10px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  margin-bottom:6px;
}
.poi-pop__name{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:500;
  color:#1A1A1A;
  margin:0 0 8px;
  line-height:1.2;
  letter-spacing:-0.005em;
}
.poi-pop__distance{
  font-size:11px;
  letter-spacing:.06em;
  color:#424632;
  font-weight:500;
  margin-bottom:10px;
}
.poi-pop__blurb{
  font-size:13px;
  line-height:1.65;
  color:#2A2A2A;
  font-weight:400;
}

@media(max-width:640px){
  .location__map-canvas{height:440px}
  .poi__label{font-size:11px;padding:3px 8px}
  .poi--featured .poi__label{font-size:12px}
  .poi-pop{width:240px}
  .poi-pop__photo{height:140px}
}
.location__chips{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:clamp(24px,4vw,56px);
  max-width:1080px;
  margin:clamp(48px,6vw,72px) auto 0;
}
.location__chip{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:120px;
}
.location__chip-label{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  font-weight:500;
}
.location__chip-value{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(20px,2vw,26px);
  color:#1A1A1A;
  font-weight:500;
  letter-spacing:.01em;
}
@media(max-width:640px){
  .location__chips{gap:24px 32px}
  .location__chip{min-width:100px}
}

/* ============================================================
   ENQUIRE CTA
   ============================================================ */
.cta{
  text-align:center;
  padding:clamp(80px,10vw,120px) 0;
}
.cta__inner{
  max-width:620px;
  margin:0 auto;
}
.cta__title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,4vw,48px);
  font-weight:400;
  color:#F5F0E8;
  margin-bottom:18px;
  letter-spacing:-0.01em;
}
.cta__body{
  font-size:15px;
  color:rgba(245,240,232,.72);
  margin-bottom:36px;
  line-height:1.75;
  font-weight:300;
}
.cta__actions{
  display:inline-flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
@media(max-width:560px){
  .cta__actions{flex-direction:column;width:100%}
  .cta__actions .btn{width:100%}
}

/* ============================================================
   FORM
   ============================================================ */
.form__wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px);
  align-items:start;
}
@media(max-width:900px){.form__wrap{grid-template-columns:1fr}}

.form__intro{
  position:sticky;
  top:120px;
}
.form__body{
  font-size:15px;
  color:#5A5A52;
  line-height:1.8;
  max-width:360px;
}
.founder__body{
  font-size:15px;
  color:#2A2A2A;
  line-height:1.85;
  font-weight:300;
  max-width:420px;
  margin-bottom:18px;
}
.founder__body:last-of-type{margin-bottom:32px}
.founder__signoff{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-top:24px;
  border-top:1px solid rgba(26,26,26,.14);
  max-width:420px;
}
.founder__sign{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:24px;
  color:#424632;
  letter-spacing:.02em;
  line-height:1.1;
}
.founder__role{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  font-weight:500;
}
.founder__brochure{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  padding:12px 18px;
  border:1px solid rgba(26,26,26,.22);
  color:#2A2A2A;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:500;
  text-decoration:none;
  transition:background .3s ease, color .3s ease, border-color .3s ease;
}
.founder__brochure:hover{
  background:#424632;
  border-color:#424632;
  color:#F5F0E8;
}
.founder__brochure svg{flex-shrink:0}

/* Footer links inherit tone */
.footer__right a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .25s ease;
}
.footer__right a:hover{border-bottom-color:currentColor}

.form{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
@media(max-width:560px){.form__row{grid-template-columns:1fr}}
.form__group{display:flex;flex-direction:column;gap:8px}
.form__label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#8A8A80;
  font-weight:500;
}
.form__input{
  padding:14px 0;
  border:none;
  border-bottom:1px solid rgba(26,26,26,.2);
  font-family:'Raleway',sans-serif;
  font-size:15px;
  color:#1A1A1A;
  background:transparent;
  transition:border-color .3s ease;
}
.form__input:focus{
  outline:none;
  border-bottom-color:#424632;
}
.form__input--textarea{
  resize:vertical;
  min-height:120px;
  line-height:1.6;
}
.form__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:8px;
}
.form__actions .btn{padding:16px 24px;font-size:11px}
@media(max-width:560px){.form__actions{grid-template-columns:1fr}}

/* ---------- Enquire block (replaces the form) ---------- */
.enquire{
  border-top:1px solid rgba(26,26,26,.14);
  padding-top:32px;
}
.enquire__eyebrow{
  font-size:11px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  margin-bottom:14px;
}
.enquire__body{
  font-size:15px;
  color:#2A2A2A;
  line-height:1.85;
  font-weight:300;
  max-width:440px;
  margin-bottom:28px;
}
.enquire__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:420px;
  margin-bottom:32px;
}
.enquire__btn{
  justify-content:center;
  gap:10px;
  padding:18px 22px;
  font-size:11px;
}
.enquire__meta{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:10px 20px;
  padding:22px 0;
  border-top:1px solid rgba(26,26,26,.1);
  border-bottom:1px solid rgba(26,26,26,.1);
  max-width:420px;
  margin-bottom:16px;
}
.enquire__line{display:contents}
.enquire__line-label{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8A8A80;
  font-weight:500;
  align-self:center;
}
.enquire__line-value{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;
  color:#1A1A1A;
  border-bottom:1px solid transparent;
  transition:border-color .25s ease;
}
.enquire__line-value:hover{border-bottom-color:#424632}
.enquire__note{
  font-size:12px;
  font-style:italic;
  font-family:'Cormorant Garamond',serif;
  font-size:14px;
  color:#8A8A80;
  max-width:420px;
}
.form__note{
  font-size:12px;
  color:#8A8A80;
  font-style:italic;
  font-family:'Cormorant Garamond',serif;
  font-size:14px;
  margin-top:4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background:#1A1A1A;
  padding:clamp(36px,4vw,56px) 0;
  color:rgba(245,240,232,.5);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:28px;
}
.footer__wordmark{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:500;
  color:#F5F0E8;
  letter-spacing:.04em;
  margin-bottom:4px;
}
.footer__tagline{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(245,240,232,.35);
}
.footer__right{
  text-align:right;
  font-size:11px;
  line-height:1.9;
  letter-spacing:.04em;
  color:rgba(245,240,232,.35);
}
@media(max-width:640px){
  .footer__inner{flex-direction:column;align-items:flex-start}
  .footer__right{text-align:left}
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.stickybar{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:90;
  display:none;
  grid-template-columns:1fr 1fr 1.4fr;
  gap:0;
  background:rgba(26,26,26,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-top:1px solid rgba(245,240,232,.12);
  padding:10px 8px calc(10px + env(safe-area-inset-bottom));
}
.stickybar__btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:8px 4px;
  color:rgba(245,240,232,.9);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:500;
  transition:color .25s ease, background .25s ease;
  border-radius:2px;
}
.stickybar__btn:active{
  background:rgba(245,240,232,.08);
}
.stickybar__btn--primary{
  color:#F5F0E8;
  background:#424632;
}
.stickybar__btn--primary:active{background:#2a2d21}
.stickybar__icon{flex-shrink:0}
.stickybar__label{font-weight:500}

@media(max-width:760px){
  .stickybar{display:grid}
  body{padding-bottom:calc(68px + env(safe-area-inset-bottom))}
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  .reveal,.reveal-hero,.reveal-rate,.reveal-card{opacity:1 !important}
}

/* ============================================================
   PRINT (brochure output)
   Triggered by window.print() from the Download Brochure button.
   Prints hero, editorial lead, facts, services, rates, map fallback,
   location chips. Hides nav, form, gallery, stickybar, controls.
   ============================================================ */
@media print{
  @page{
    size:A4;
    margin:14mm 14mm 16mm;
  }
  *{
    animation:none !important;
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  body{
    background:#fff;
    color:#1A1A1A;
    font-size:11pt;
    line-height:1.55;
    padding-bottom:0;
  }
  /* Elements we drop from the brochure */
  .header,
  .offcanvas,
  .nav__hamburger,
  .gallery__controls,
  .availability,
  .form-section,
  .cta__actions .btn--ghost-cream,
  .hero__actions,
  .hero__scroll-hint,
  .stickybar,
  .leaflet-control-container,
  .location__map-hint,
  noscript{
    display:none !important;
  }
  /* Show the SVG map fallback instead of the live Leaflet canvas */
  .location__map-canvas{display:none !important}
  .location__map{border:1px solid #C9C4B8;box-shadow:none}
  .location__map::after{
    content:'Cap de Formentor';
    display:block;
    padding:18pt 0;
    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:#424632;
    font-size:14pt;
    border-top:1px solid #C9C4B8;
  }
  /* Section blocks: compact and keep together */
  section{
    page-break-inside:avoid;
    break-inside:avoid;
    padding:18pt 0 !important;
  }
  .hero{
    height:auto !important;
    min-height:0 !important;
    page-break-after:always;
    break-after:page;
    padding:0 !important;
    background:#F5F0E8;
    color:#1A1A1A;
  }
  .hero__bg-wrap{
    position:relative !important;
    height:180pt !important;
    margin-bottom:18pt;
  }
  .hero__bg{
    position:absolute;inset:0;
    background-size:cover;background-position:center 35%;
    print-color-adjust:exact;
    -webkit-print-color-adjust:exact;
  }
  .hero__overlay{display:none}
  .hero__content{
    position:static !important;
    padding:0 !important;
    max-width:none;
  }
  .hero__eyebrow,
  .hero__subtitle,
  .hero__facts li,
  .hero__title{
    color:#1A1A1A !important;
    text-shadow:none !important;
  }
  .hero__title{font-size:28pt;margin-bottom:6pt}
  .hero__subtitle{max-width:none;font-size:10pt}
  .hero__facts{border-top-color:#C9C4B8;padding-top:10pt}
  /* Gallery prints as a compact grid of the first 6 images */
  .gallery{page-break-before:avoid;padding:0 !important}
  .gallery__intro{display:none}
  .gallery__strip{
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:6pt;
    overflow:visible !important;
    padding:0 !important;
  }
  .gallery__item{
    height:80pt !important;
    break-inside:avoid;
  }
  .gallery__item img{
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    print-color-adjust:exact;
    -webkit-print-color-adjust:exact;
  }
  .gallery__caption{display:none}
  .gallery__item:nth-child(n+7){display:none}
  /* Dark and olive backgrounds invert for print clarity */
  .section--dark,
  .section--olive{
    background:#fff !important;
    color:#1A1A1A !important;
  }
  .section--dark *,
  .section--olive *{color:#1A1A1A !important}
  .section__eyebrow--light{color:#8A8A80 !important}
  .section__title--light{color:#1A1A1A !important}
  .rates__row{border-bottom-color:#C9C4B8 !important}
  .rates__season,
  .rates__dates,
  .rates__unit,
  .rates__foot,
  .rates__intro{color:#5A5A52 !important}
  .rates__price{color:#1A1A1A !important}
  /* CTA at the foot of the brochure */
  .cta{
    border-top:1px solid #C9C4B8;
    padding:18pt 0 !important;
  }
  .cta__title,
  .cta__body{color:#1A1A1A !important}
  .btn{
    display:inline-block;
    padding:0 !important;
    border:none !important;
    background:none !important;
    color:#424632 !important;
    font-weight:500;
  }
  .btn::after{
    content:' \00a0 myles@proluxetravels.com';
    color:#5A5A52;
    font-weight:400;
  }
  .btn--cream::after{content:''}
  /* Footer is the brochure colophon */
  .footer{
    background:#fff !important;
    color:#5A5A52 !important;
    padding:12pt 0 0;
    border-top:1px solid #C9C4B8;
  }
  .footer *{color:#5A5A52 !important}
  .footer__wordmark{color:#1A1A1A !important}
  /* Availability is not printable usefully */
  .services__col{border-top-color:#C9C4B8}
  .guestbook{background:#fff !important;padding:18pt 0}
}
