/* ═══════════════════════════════════════════════════════
   SOLE LUNA B&B — Stylesheet v4
   Mediterranean editorial · Mobile-first
   Fonts: Instrument Serif + Figtree
   ═══════════════════════════════════════════════════════ */

:root {
  --white: #FEFDFB;
  --ivory: #F9F6F0;
  --sand: #EDE6DA;
  --sand-dark: #D4C9B5;
  --terracotta: #C17B52;
  --terracotta-dark: #A3623C;
  --sea: #3D7A8A;
  --sea-deep: #1E4D5C;
  --navy: #152A33;
  --ink: #1A1A18;
  --ink-soft: #3D3D38;
  --muted: #7A7A70;
  --muted-light: #A8A89E;
  --line: rgba(26,26,24,.1);
  --line-dark: rgba(255,255,255,.12);
  --overlay: rgba(21,42,51,.55);
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --fs-xs: clamp(.72rem,.68rem + .2vw,.8rem);
  --fs-sm: clamp(.8rem,.76rem + .22vw,.9rem);
  --fs-base: clamp(.92rem,.86rem + .3vw,1.05rem);
  --fs-md: clamp(1rem,.9rem + .4vw,1.2rem);
  --fs-lg: clamp(1.25rem,1rem + 1vw,1.75rem);
  --fs-xl: clamp(1.6rem,1.1rem + 2vw,2.6rem);
  --fs-2xl: clamp(2rem,1.2rem + 3.2vw,3.8rem);
  --fs-hero: clamp(2.4rem,1rem + 5.5vw,5rem);
  --sp-2xs: .25rem;
  --sp-xs: .5rem;
  --sp-sm: .75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2.5rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;
  --sp-section: clamp(4rem,3rem + 4vw,8rem);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --header-h: 72px;
  --container: 1200px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input,select,textarea { font: inherit; color: inherit; }
address { font-style: normal; }
::selection { background: var(--terracotta); color: var(--white); }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; }

/* Accessibility */
.skip-link {
  position: absolute; top: -100%; left: var(--sp-md);
  background: var(--navy); color: var(--white);
  padding: var(--sp-xs) var(--sp-md); border-radius: var(--radius);
  z-index: 9999; font-size: var(--fs-sm);
}
.skip-link:focus { top: var(--sp-md); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Utilities */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--sp-lg); }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-xl); }

/* Typography */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p + p { margin-top: var(--sp-md); }
.subtitle {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.5;
}
.label-sm {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--sp-sm);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-xs);
  padding: .85em 2em;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .03em;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 2px 12px rgba(193,123,82,.25);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(193,123,82,.35); }
.btn-outline {
  border: 1.5px solid var(--ink); color: var(--ink); background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--ivory); transform: translateY(-1px); }
.btn-sm { padding: .65em 1.4em; font-size: var(--fs-xs); }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-md); }


/* ═════ HEADER ═════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(254,253,251,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: all var(--transition), transform .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(254,253,251,.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.logo { display: flex; align-items: center; z-index: 1001; }
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem,1rem + .6vw,1.5rem);
  color: var(--navy);
}

/* Desktop nav */
.main-nav .nav-list { display: flex; align-items: center; gap: var(--sp-2xs); }
.nav-link {
  display: block; padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--ink-soft); border-radius: var(--radius);
  transition: all var(--transition); position: relative;
}
.nav-link:hover,.nav-link.active { color: var(--ink); background: rgba(26,26,24,.04); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--terracotta); border-radius: 50%;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 200px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--sp-xs);
  opacity: 0; visibility: hidden; transition: all var(--transition); pointer-events: none;
  border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.dropdown a {
  display: block; padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-sm); border-radius: var(--radius); transition: background var(--transition);
}
.dropdown a:hover { background: var(--ivory); }

.header-actions { display: flex; align-items: center; gap: var(--sp-md); }
.lang-switch {
  font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); padding: var(--sp-2xs) var(--sp-sm);
  border: 1px solid var(--line); border-radius: var(--radius-pill); transition: all var(--transition);
}
.lang-switch:hover { color: var(--ink); border-color: var(--ink); }
.header-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; z-index: 1001;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all var(--transition); }
.hamburger span + span { margin-top: 6px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ═════ MOBILE NAV ═════ */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .header-cta { display: none !important; }

  .main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #FFFFFF;
    z-index: 1000;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .main-nav.open {
    opacity: 1; visibility: visible;
    pointer-events: auto;
  }

  .main-nav .nav-list {
    flex-direction: column; align-items: stretch; gap: 0;
    width: 100%; max-width: 340px;
    padding: 0 var(--sp-xl);
  }
  .main-nav .nav-list li { width: 100%; }

  .nav-link {
    font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 500;
    padding: var(--sp-md) 0;
    color: var(--ink); display: block; text-align: left;
    border-bottom: 1px solid var(--line); border-radius: 0;
    background: transparent;
    opacity: 0; transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, color .2s ease;
  }
  .main-nav .nav-list li:last-child .nav-link { border-bottom: none; }

  .main-nav.open .nav-link { opacity: 1; transform: translateY(0); }
  .main-nav.open li:nth-child(1) .nav-link { transition-delay: .05s; }
  .main-nav.open li:nth-child(2) .nav-link { transition-delay: .08s; }
  .main-nav.open li:nth-child(3) .nav-link { transition-delay: .11s; }
  .main-nav.open li:nth-child(4) .nav-link { transition-delay: .14s; }
  .main-nav.open li:nth-child(5) .nav-link { transition-delay: .17s; }
  .main-nav.open li:nth-child(6) .nav-link { transition-delay: .20s; }
  .main-nav.open li:nth-child(7) .nav-link { transition-delay: .23s; }
  .main-nav.open li:nth-child(8) .nav-link { transition-delay: .26s; }

  .nav-link:hover, .nav-link.active { color: var(--terracotta); }
  .nav-link.active::after { display: none; }

  .has-dropdown .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 var(--sp-xs) 0; min-width: 0;
    border-radius: 0;
  }
  .dropdown a {
    font-family: var(--font-body); font-size: .95rem;
    color: var(--muted); text-align: left;
    padding: var(--sp-xs) 0 var(--sp-xs) var(--sp-lg);
    display: block;
  }
  .dropdown a:hover { color: var(--terracotta); }

  /* CTA button at bottom of mobile nav */
  .main-nav::after {
    content: '';
    display: block;
    position: absolute;
    bottom: var(--sp-3xl);
    left: 50%; transform: translateX(-50%);
    width: calc(100% - var(--sp-2xl) * 2);
    max-width: 340px;
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--muted-light);
  }
}
@media (min-width: 1025px) { .header-cta { display: inline-flex; } }

/* When mobile nav is open, header goes solid white */
.site-header.nav-open {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}


/* ═════ HERO ═════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  max-width: 100vw;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,var(--navy) 0%,var(--sea-deep) 40%,var(--sea) 100%);
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--overlay); }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: var(--sp-2xl) var(--sp-lg); max-width: 780px; color: var(--white);
}
.hero-content h1 {
  font-size: var(--fs-hero); color: var(--white); line-height: 1.05;
  margin-bottom: var(--sp-lg); text-shadow: 0 2px 30px rgba(0,0,0,.2);
}
.hero-content .label-sm { color: rgba(255,255,255,.6); }
.hero-content p {
  font-size: var(--fs-md); opacity: .85;
  max-width: 520px; margin: 0 auto var(--sp-xl); line-height: 1.6;
}
.hero .btn-group { justify-content: center; }
.hero::after {
  content: ''; position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom,rgba(255,255,255,.6),transparent);
  z-index: 2; animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%,100% { opacity: .5; }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1.3); }
}


/* ═════ SECTIONS ═════ */
.section { padding: var(--sp-section) 0; position: relative; }
.section-ivory { background: var(--ivory); }
.section-sand { background: var(--sand); }
.section-alt { background: var(--ivory); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.section-dark .subtitle { color: rgba(255,255,255,.5); }
.section-header { margin-bottom: var(--sp-2xl); }
.section-header.text-center { text-align: center; }
.section-header.text-center .subtitle { margin-inline: auto; }

.page-hero {
  padding-top: calc(var(--header-h) + var(--sp-3xl));
  padding-bottom: var(--sp-2xl);
  background: var(--ivory); border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: var(--sp-sm); }


/* ═════ SPLIT LAYOUT (responsive!) ═════ */
.split { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); align-items: center; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); }
  .split.reverse > :first-child { order: 2; }
  .split.reverse > :last-child { order: 1; }
}


/* ═════ ROOM CARDS ═════ */
.room-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); }
@media (min-width: 768px) { .room-grid { grid-template-columns: repeat(2,1fr); } }
.room-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: var(--sp-xl) var(--sp-lg) var(--sp-lg); }
.room-card-body h3 { margin-bottom: var(--sp-sm); }
.room-card-body p { color: var(--muted); margin-bottom: var(--sp-lg); }


/* ═════ SERVICES GRID ═════ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card {
  padding: var(--sp-xl); background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--terracotta); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  font-size: 1.6rem; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory); border-radius: var(--radius-lg); margin-bottom: var(--sp-md);
}
.service-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-xs); }
.service-card p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }


/* ═════ WHY CHOOSE US ═════ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); counter-reset: why; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
.why-item { counter-increment: why; position: relative; padding-left: 3.5rem; }
.why-item::before {
  content: counter(why, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-size: var(--fs-xl);
  color: var(--terracotta); opacity: .4; line-height: 1;
}
.section-dark .why-item::before { opacity: .6; }
.why-item h3 { font-size: var(--fs-md); margin-bottom: var(--sp-xs); }
.why-item p { font-size: var(--fs-sm); }


/* ═════ GALLERY ═════ */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--sand);
  cursor: pointer; transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }


/* ═════ REVIEWS ═════ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  padding: var(--sp-xl); background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--line); position: relative;
}
.review-card::before {
  content: '\201C'; font-family: var(--font-display);
  font-size: 4rem; line-height: 1; color: var(--terracotta); opacity: .2;
  position: absolute; top: var(--sp-md); right: var(--sp-lg);
}
.review-stars { color: var(--terracotta); font-size: var(--fs-sm); letter-spacing: .15em; margin-bottom: var(--sp-md); }
.review-text { font-style: italic; color: var(--ink-soft); margin-bottom: var(--sp-lg); line-height: 1.7; }
.review-author { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }


/* ═════ IMAGE PLACEHOLDERS ═════ */
.img-placeholder {
  background: linear-gradient(135deg,var(--sand),var(--sand-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-light); font-size: var(--fs-sm);
  border-radius: var(--radius-lg); overflow: hidden;
}


/* ═════ FAQ ═════ */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--sp-lg) 0; text-align: left;
  font-family: var(--font-display); font-size: var(--fs-md);
  color: var(--ink); cursor: pointer; transition: color var(--transition); gap: var(--sp-md);
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; position: relative;
}
.faq-icon::before,.faq-icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
  transition: transform var(--transition);
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: var(--sp-lg); }
.faq-answer p { color: var(--muted); line-height: 1.7; }


/* ═════ FORMS ═════ */
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); }
@media (min-width: 600px) {
  .form-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-group label { display: block; font-size: var(--fs-sm); font-weight: 500; margin-bottom: var(--sp-2xs); color: var(--ink-soft); }
.form-group input,.form-group select,.form-group textarea {
  width: 100%; padding: .8em 1em;
  border: 1.5px solid var(--sand-dark); border-radius: var(--radius);
  background: var(--white); transition: all var(--transition); font-size: var(--fs-base);
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  border-color: var(--sea); box-shadow: 0 0 0 3px rgba(61,122,138,.12); outline: none;
}
.field-error { border-color: #c44 !important; box-shadow: 0 0 0 3px rgba(204,68,68,.1) !important; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: var(--sp-sm); font-size: var(--fs-sm); color: var(--muted); }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--terracotta); }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: var(--sp-md) var(--sp-lg); border-radius: var(--radius); font-size: var(--fs-sm); margin-bottom: var(--sp-lg); }
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-msg.error { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }


/* ═════ CONTACT STRIP ═════ */
.contact-strip { padding: var(--sp-2xl) 0; background: var(--ivory); border-top: 1px solid var(--line); }
.contact-strip .container { display: flex; flex-direction: column; align-items: center; gap: var(--sp-lg); text-align: center; }
@media (min-width: 768px) { .contact-strip .container { flex-direction: row; justify-content: space-between; text-align: left; } }
.strip-text { font-family: var(--font-display); font-size: var(--fs-lg); }
.strip-actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; justify-content: center; }


/* ═════ FOOTER ═════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: var(--sp-3xl) 0 var(--sp-xl); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-2xl); } }
.footer-logo { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); display: block; margin-bottom: var(--sp-md); }
.footer-col h4 { font-size: var(--fs-sm); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: var(--sp-lg); }
.footer-col ul li + li { margin-top: var(--sp-sm); }
.footer-col a { font-size: var(--fs-sm); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col address p { font-size: var(--fs-sm); }
.footer-col address p + p { margin-top: var(--sp-xs); }
.footer-col address a:hover { color: var(--terracotta); }
.footer-bottom { margin-top: var(--sp-2xl); padding-top: var(--sp-lg); border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: var(--sp-md); align-items: center; text-align: center; font-size: var(--fs-xs); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-legal { display: flex; gap: var(--sp-lg); }
.footer-legal a:hover { color: var(--white); }


/* ═════ WHATSAPP & MOBILE CTA ═════ */
.whatsapp-float {
  position: fixed; bottom: 100px; right: var(--sp-lg);
  width: 56px; height: 56px; background: #25D366; color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.3); z-index: 900; transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: var(--sp-sm) var(--sp-lg); background: var(--white);
  border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.06); z-index: 899;
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .whatsapp-float { bottom: 80px; right: var(--sp-md); width: 50px; height: 50px; }
}


/* ═════ ANIMATIONS ═════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: .08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: .16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: .24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: .32s; }
.stagger > .fade-up:nth-child(6) { transition-delay: .4s; }
.stagger > .fade-up:nth-child(7) { transition-delay: .48s; }
.stagger > .fade-up:nth-child(8) { transition-delay: .56s; }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.slide-in-left.visible,.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(.92); transition: opacity .6s ease, transform .6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .fade-up,.slide-in-left,.slide-in-right,.scale-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero::after { animation: none; }
}


/* ═════ ROOM DETAIL ═════ */
.room-features { display: grid; grid-template-columns: 1fr; gap: var(--sp-sm); margin: var(--sp-lg) 0; }
@media (min-width: 600px) { .room-features { grid-template-columns: repeat(2,1fr); } }
.room-features li { display: flex; align-items: center; gap: var(--sp-sm); padding: var(--sp-sm) var(--sp-md); background: var(--ivory); border-radius: var(--radius); font-size: var(--fs-sm); }
.room-features li .feat-icon { font-size: 1.2rem; flex-shrink: 0; }
.room-gallery-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-md); }
@media (min-width: 768px) { .room-gallery-strip { grid-template-columns: repeat(4,1fr); } }
.room-gallery-strip .img-placeholder { aspect-ratio: 4/3; }


/* ═════ FEATURES / PESCARA ═════ */
.features-list { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); }
@media (min-width: 768px) { .features-list { grid-template-columns: repeat(2,1fr); } }
.feature-item h3 { margin-bottom: var(--sp-xs); }
.feature-item p { color: var(--muted); font-size: var(--fs-sm); }


/* ═════ CONTACT PAGE ═════ */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); margin-bottom: var(--sp-2xl); }
@media (min-width: 768px) { .contact-info-grid { grid-template-columns: repeat(3,1fr); } }
.contact-info-card { text-align: center; padding: var(--sp-xl); background: var(--ivory); border-radius: var(--radius-lg); }
.contact-info-card .info-icon { font-size: 1.5rem; margin-bottom: var(--sp-md); }
.contact-info-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-xs); }
.contact-info-card p,.contact-info-card a { font-size: var(--fs-sm); color: var(--muted); }
.contact-info-card a:hover { color: var(--terracotta); }
.map-container { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); margin-bottom: var(--sp-2xl); }
.map-container iframe { width: 100%; height: 100%; border: 0; }


/* ═════ LEGAL ═════ */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content h2 { font-size: var(--fs-lg); margin-top: var(--sp-2xl); margin-bottom: var(--sp-md); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { margin: var(--sp-md) 0; padding-left: var(--sp-lg); }
.legal-content ul li { list-style: disc; font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-xs); }


/* ═════ 404 ═════ */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--sp-2xl) var(--sp-lg); }
.page-404 h1 { font-size: clamp(5rem,10vw,10rem); color: var(--sand); line-height: 1; margin-bottom: var(--sp-md); }
.page-404 p { font-size: var(--fs-lg); color: var(--muted); margin-bottom: var(--sp-xl); }


/* ═════ DECORATIVE ═════ */
.divider { display: flex; align-items: center; justify-content: center; gap: var(--sp-md); margin: var(--sp-2xl) 0; }
.divider::before,.divider::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--sand-dark); }
.divider .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }
.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none; z-index: 0;
}
.grain > * { position: relative; z-index: 1; }


/* ═════ PRINT ═════ */
@media print {
  .site-header,.mobile-cta,.whatsapp-float,.contact-strip { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 1rem 0; }
}

/* Review star icons */
.review-stars svg { display: inline-block; vertical-align: middle; }


/* ═════ FIX: overflow & accent ═════ */
html { overflow-x: hidden; }
.accent-line { display: block; width: 48px; height: 2px; background: var(--terracotta); margin-bottom: var(--sp-lg); }
.text-center .accent-line { margin-inline: auto; }

/* ═════ FIX: Room detail page ═════ */
.room-hero-img { width: 100%; aspect-ratio: 21/9; background: var(--sand); overflow: hidden; }
.room-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.room-body { max-width: 780px; margin-inline: auto; padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl); }
.room-body h1 { margin-bottom: var(--sp-sm); }
.room-body .room-subtitle { font-size: var(--fs-md); color: var(--muted); margin-bottom: var(--sp-2xl); line-height: 1.6; }
.room-body h2 { font-size: var(--fs-lg); margin-top: var(--sp-2xl); margin-bottom: var(--sp-md); }
.room-body h2:first-of-type { margin-top: 0; }
.room-cta { display: flex; flex-wrap: wrap; gap: var(--sp-md); margin-top: var(--sp-2xl); }

/* ═════ FIX: Contact info layout ═════ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-2xl); }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1.2fr; } }
.contact-details h2 { margin-bottom: var(--sp-xl); }
.contact-detail { display: flex; gap: var(--sp-md); align-items: flex-start; padding: var(--sp-lg); background: var(--ivory); border-radius: var(--radius-lg); }
.contact-detail + .contact-detail { margin-top: var(--sp-md); }
.contact-detail .detail-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--terracotta); }
.contact-detail .detail-icon svg { width: 22px; height: 22px; }
.contact-detail h3 { font-size: var(--fs-base); font-family: var(--font-body); font-weight: 600; margin-bottom: var(--sp-2xs); }
.contact-detail p, .contact-detail a { font-size: var(--fs-sm); color: var(--muted); }
.contact-detail a:hover { color: var(--terracotta); }

/* ═════ FIX: Form inputs date ═════ */
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group select { width: 100%; min-width: 0; box-sizing: border-box; }

/* ═════ SUCCESS PAGE ═════ */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--sp-2xl) var(--sp-lg); }
.success-page .check-circle { width: 80px; height: 80px; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-xl); }
.success-page .check-circle svg { width: 40px; height: 40px; color: #2e7d32; }
.success-page h1 { font-size: var(--fs-xl); margin-bottom: var(--sp-md); }
.success-page p { font-size: var(--fs-md); color: var(--muted); margin-bottom: var(--sp-xl); max-width: 480px; margin-inline: auto; }

/* ═════ FIX: Logo ═════ */
.logo-img { height: 40px; width: auto; }
@media (max-width: 768px) { .logo-img { height: 34px; } }
