/* ==========================================================================
   B&B IL GOLFO — Quartieri Spagnoli, Napoli
   Shared stylesheet
   ========================================================================== */

:root {
  --bg: #F4EFE6;            /* cream paper, leggermente più caldo del portale */
  --bg-2: #FFFFFF;
  --bg-soft: #FAF6EE;
  --ink: #122334;
  --ink-2: #4A5862;
  --ink-3: #8A95A0;
  --line: #E5DECF;
  --line-2: #EFEAE0;

  --sea: #2E7CA3;           /* azzurro Napoli profondo */
  --sea-deep: #144A6B;
  --sea-soft: #93C2D9;
  --sand: #E0C887;
  --sun: #E9B266;
  --coral: #C26A4A;         /* terracotta Pompei */
  --wa: #25D366;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(18,35,52,.05), 0 2px 8px rgba(18,35,52,.05);
  --shadow-md: 0 4px 14px rgba(18,35,52,.08), 0 16px 44px rgba(18,35,52,.08);
  --shadow-lg: 0 8px 30px rgba(18,35,52,.10), 0 40px 90px rgba(18,35,52,.12);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -.012em; margin: 0; }

/* ============== UTILITIES ============== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }
@media (min-width: 1100px) { .wrap { padding: 0 2.5rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sea);
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--sea); display: block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ''; width: 22px; height: 1px; background: var(--sea); display: block;
}
.eyebrow.warm { color: var(--coral); }
.eyebrow.warm::before, .eyebrow.warm.center::after { background: var(--coral); }

/* ============== LOGO ============== */
.logo {
  display: inline-flex; align-items: center; gap: .65rem;
}
.logo-mark {
  position: relative;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.logo-text .top {
  font-family: 'Inter Tight', sans-serif;
  font-size: .58rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sea);
}
.logo-text .name {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 500;
  font-size: 1.1rem; letter-spacing: -.01em;
  color: var(--ink);
}

/* ============== NAV ============== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
@media (min-width: 1100px) { #nav { padding: 1.1rem 2.5rem; } }
#nav.scrolled {
  background: rgba(244,239,230,.9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
}
#nav.transparent .logo-text .top,
#nav.transparent .logo-text .name { color: white; }
#nav.transparent.scrolled .logo-text .top { color: var(--sea); }
#nav.transparent.scrolled .logo-text .name { color: var(--ink); }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 920px) { .nav-links { display: flex; } }
.nav-link {
  font-size: .82rem; font-weight: 500; color: var(--ink-2);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active { color: var(--sea); }

#nav.transparent .nav-link { color: rgba(255,255,255,.75); }
#nav.transparent .nav-link:hover, #nav.transparent .nav-link.active { color: white; }
#nav.transparent.scrolled .nav-link { color: var(--ink-2); }
#nav.transparent.scrolled .nav-link:hover { color: var(--ink); }
#nav.transparent.scrolled .nav-link.active { color: var(--sea); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--ink); color: white;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--sea); transform: translateY(-1px); }
#nav.transparent .nav-cta { background: white; color: var(--ink); }
#nav.transparent .nav-cta:hover { background: var(--sea); color: white; }

.ham { display: flex; flex-direction: column; gap: 4px; cursor: pointer; padding: .25rem; }
@media (min-width: 920px) { .ham { display: none; } }
.ham span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: transform .3s var(--ease), opacity .2s, background .3s; }
#nav.transparent .ham span { background: white; }
#nav.transparent.scrolled .ham span { background: var(--ink); }
.ham.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg);
  z-index: 75;
  display: none; flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 1rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; color: var(--ink);
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}
#mobile-menu a:last-child { border: none; }

/* ============== BACK BAR (above nav, links to portal) ============== */
.back-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 81;
  background: var(--ink); color: white;
  padding: .55rem 1.5rem;
  font-size: .72rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.back-bar a {
  color: rgba(255,255,255,.8);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.back-bar a:hover { color: white; }
.back-bar a svg { width: 12px; height: 12px; }
.back-bar .other-bnbs { display: none; gap: 1rem; }
@media (min-width: 720px) { .back-bar .other-bnbs { display: inline-flex; } }
body.has-back-bar #nav { top: 33px; }
body.has-back-bar { padding-top: 33px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .88rem; font-weight: 500;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--sea); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sea { background: var(--sea); color: white; }
.btn-sea:hover { background: var(--sea-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--sea); color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { border-color: white; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--wa); color: white;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-size: .88rem; font-weight: 500;
  transition: all .25s var(--ease);
}
.btn-wa:hover { background: #1ebd5b; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #0E1E2C 0%, #1B2A36 50%, #2C4A60 100%);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(14,30,44,.7) 0%, rgba(14,30,44,.4) 50%, rgba(14,30,44,.55) 100%),
    linear-gradient(to bottom, rgba(14,30,44,.2) 0%, rgba(14,30,44,.55) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px;
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 8rem 1.5rem 7rem;
  width: 100%;
}
@media (min-width: 1100px) { .hero-inner { padding: 9rem 2.5rem 8rem; } }

.hero-eyebrow {
  color: rgba(255,255,255,.85);
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .8s .15s var(--ease) forwards;
}
.hero-eyebrow::before, .hero-eyebrow.center::after { background: rgba(255,255,255,.6); }

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  margin: 1.5rem 0 1.5rem;
  letter-spacing: -.02em;
  font-weight: 500;
  color: white;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  max-width: 740px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .3s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--sand);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .5s var(--ease) forwards;
}
.hero-ctas {
  display: inline-flex; gap: .65rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .7s var(--ease) forwards;
}
.hero-address {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 2rem;
  padding: .7rem 1.1rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .9s var(--ease) forwards;
}
.hero-address svg { color: var(--sand); }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* small hero (interior pages) */
.hero.small { min-height: 60vh; }
.hero.small .hero-inner { padding: 9rem 1.5rem 5rem; text-align: center; }
.hero.small .hero-title { margin-left: auto; margin-right: auto; }
.hero.small .hero-sub { margin-left: auto; margin-right: auto; }
.hero.small .hero-eyebrow { display: inline-flex; }

/* ============== SECTIONS GENERIC ============== */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section.alt { background: var(--bg-2); }
.section.dark { background: var(--ink); color: white; }

.section-head {
  text-align: center;
  max-width: 720px; margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin: 1rem 0 .75rem;
  letter-spacing: -.015em;
  font-weight: 500;
  line-height: 1.1;
}
.section-head h2 em { font-style: italic; color: var(--sea); }
.section-head p {
  color: var(--ink-2);
  font-size: .95rem; line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}

/* ============== ABOUT (split image + text) ============== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .about { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .deco-stamp {
  position: absolute; top: 1rem; right: 1rem;
  width: 76px; height: 76px;
  background: var(--sun);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: .7rem; text-align: center;
  line-height: 1.1;
  padding: .5rem;
  transform: rotate(-8deg);
  box-shadow: 0 8px 24px rgba(233,178,102,.5);
}
.about-img .deco-stamp small {
  font-family: 'Inter Tight', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: .5rem; letter-spacing: .15em; text-transform: uppercase;
  display: block; margin-top: .2rem;
}
.about-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
  line-height: 1.1;
}
.about-text h2 em { font-style: italic; color: var(--sea); }
.about-text p {
  color: var(--ink-2);
  font-size: .98rem; line-height: 1.75;
  margin: 0 0 1.25rem;
}
.about-text p strong { color: var(--ink); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-stat .n {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.about-stat .n em { font-style: italic; color: var(--sea); }
.about-stat .l {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-top: .35rem;
}

/* ============== ROOMS GRID ============== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }

.room-card {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.room-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--line-2);
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,35,52,.35) 0%, transparent 50%);
  pointer-events: none;
}
.room-card-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: .8rem;
  color: var(--ink);
}
.room-card-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sea);
}
.room-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.room-card-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: .35rem;
  line-height: 1.15;
}
.room-card-name em { font-style: italic; color: var(--sea); }
.room-card-sub {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.room-card-desc {
  font-size: .9rem; color: var(--ink-2); line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.room-card-meta {
  display: flex; gap: .85rem; flex-wrap: wrap;
  padding: .85rem 0;
  border-top: 1px solid var(--line-2);
  margin-bottom: 1.25rem;
}
.room-card-meta-item {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; color: var(--ink-2); font-weight: 500;
}
.room-card-meta-item svg { color: var(--sea); flex-shrink: 0; }

/* ============== AMENITIES (features grid) ============== */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) { .amenities { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  transition: background .25s;
}
.amenity:hover { background: var(--bg-soft); }
.amenity-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--sea);
  margin-bottom: 1rem;
}
.amenity-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.amenity-desc {
  font-size: .82rem; color: var(--ink-2); line-height: 1.5;
}

/* ============== DINTORNI (landmarks) ============== */
.landmarks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) { .landmarks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .landmarks { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.landmark {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  overflow: hidden;
}
.landmark::before {
  /* corner decorative wave */
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 30% 70%, var(--sea-soft) 0%, transparent 60%);
  opacity: .35;
  transition: opacity .35s var(--ease);
}
.landmark:hover {
  border-color: var(--sea);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.landmark:hover::before { opacity: .7; }
.landmark-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: .8rem; color: var(--sea);
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.landmark-num::after {
  content: ''; flex: 1; max-width: 28px; height: 1px; background: var(--sea); opacity: .4;
}
.landmark-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.15;
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.landmark-desc {
  font-size: .88rem; color: var(--ink-2); line-height: 1.6;
  margin-bottom: 1.25rem;
}
.landmark-meta {
  display: inline-flex; align-items: center; gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.landmark-meta-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--ink-2); font-weight: 500;
}
.landmark-meta-item svg { color: var(--coral); }

/* ============== QUOTE INTERLUDE (parallax) ============== */
.interlude {
  position: relative;
  padding: 8rem 1.5rem;
  text-align: center;
  overflow: hidden;
  color: white;
  background-image: url('napoliani.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.interlude::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,30,44,.55), rgba(14,30,44,.7));
  pointer-events: none;
}
.interlude-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.interlude-q {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.interlude-q::before, .interlude-q::after {
  content: '"'; color: var(--sand);
}
.interlude-attr {
  margin-top: 1.25rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.interlude-q {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.interlude-q::before, .interlude-q::after {
  content: '"'; color: var(--sand);
}
.interlude-attr {
  margin-top: 1.25rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============== BOOKING DESK ============== */
.booking-desk {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .booking-desk { padding: 0 2.5rem; } }
.booking-desk-inner {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
@media (min-width: 880px) { .booking-desk-inner { grid-template-columns: 5fr 6fr; } }
.bd-photo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--ink);
}
@media (min-width: 880px) { .bd-photo { min-height: 100%; } }
.bd-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s var(--ease);
}
.bd-photo:hover img { transform: scale(1.06); }
.bd-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,35,52,.5) 0%, transparent 50%, rgba(18,35,52,.3) 100%);
}
.bd-photo-cap {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  color: white;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.bd-photo-cap small {
  display: block; margin-top: .65rem;
  font-family: 'Inter Tight', sans-serif; font-style: normal; font-weight: 600;
  font-size: .62rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.bd-content {
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
@media (min-width: 880px) { .bd-content { padding: 3rem 3rem; } }
.bd-content h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -.015em;
  line-height: 1.1;
}
.bd-content h3 em { font-style: italic; color: var(--sea); }
.bd-content p { color: var(--ink-2); font-size: .92rem; line-height: 1.6; margin: 0; }

.bd-cta-row {
  display: flex; gap: .65rem; flex-wrap: wrap;
}

.bd-contacts {
  margin-top: .5rem;
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.bd-contact {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: inherit;
}
.bd-contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-soft);
  color: var(--sea);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.bd-contact:hover .bd-contact-icon { background: var(--sea); color: white; }
.bd-contact-info { line-height: 1.2; }
.bd-contact-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.bd-contact-value {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: .15rem;
}

/* ============== FOOTER ============== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .foot-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; } }
.foot-brand-wrap { display: flex; flex-direction: column; gap: 1rem; }
.foot-tagline {
  font-size: .9rem; color: var(--ink-2); line-height: 1.6;
  max-width: 340px;
}
.foot-col-title {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.foot-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.foot-links a { font-size: .9rem; color: var(--ink-2); transition: color .2s; display: inline-flex; align-items: center; gap: .35rem; }
.foot-links a:hover { color: var(--ink); }
.foot-links a svg { width: 12px; height: 12px; color: var(--sea); }
.foot-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem; color: var(--ink-3);
}
.foot-bottom-links { display: flex; gap: 1.25rem; }
.foot-bottom-links a { color: var(--ink-3); transition: color .2s; }
.foot-bottom-links a:hover { color: var(--ink); }

/* ============== WA FLOAT ============== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 70;
  width: 52px; height: 52px;
  background: var(--wa);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,.45); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ============== REVEAL ============== */
.r { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.r.v { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rl.v { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rr.v { opacity: 1; transform: none; }

/* ============== COOKIE ============== */
#cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: white;
  padding: 1rem 1.5rem;
}
#cookie-banner-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: space-between;
}
#cookie-banner p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.85); line-height: 1.5; max-width: 720px; }
#cookie-banner a { color: var(--sea-soft); font-weight: 600; }
#cookie-banner button {
  background: var(--sea-soft); color: var(--ink);
  border: none; padding: .55rem 1.3rem;
  border-radius: 999px; font-size: .82rem; font-weight: 600;
  cursor: pointer;
}
