:root {
  --ink: #2a2321;
  --ink-soft: rgba(42,35,33,.62);
  --ink-faint: rgba(42,35,33,.4);
  --cream: #faf5f1;
  --cream-deep: #f2e7e0;
  --blush: #c98a94;
  --blush-deep: #a4636f;
  --line: rgba(42,35,33,.12);
  --display: 'Italiana', serif;
  --body: 'Jost', sans-serif;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: .01em; margin: 0; }
p { margin: 0; line-height: 1.6; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
  padding: .8rem 1.2rem; background: var(--ink); color: #fff; z-index: 999; border-radius: 8px;
}

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 600;
  margin-bottom: .9rem;
}

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-accent { background: var(--blush-deep); color: #fff; box-shadow: 0 10px 24px -10px rgba(164,99,111,.55); }
.btn-accent:hover { transform: translateY(-2px); background: var(--ink); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.15rem; font-size: .82rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6vw;
  background: transparent;
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(250,245,241,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .3s ease;
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header__brand { display: flex; align-items: center; }
.site-header__nav { display: flex; align-items: center; gap: 2rem; }
.site-header__nav a:not(.btn) {
  font-size: .92rem; color: var(--ink-soft); position: relative;
  transition: color .2s ease;
}
.site-header__nav a:not(.btn):hover { color: var(--ink); }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  align-items: center; gap: .6rem; font-family: var(--body); font-size: .85rem; color: var(--ink);
}
.menu-toggle__icon {
  width: 22px; height: 15px; position: relative;
}
.menu-toggle__icon { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .site-header__nav {
    position: fixed; inset: 4.2rem 0 0; top: 4.2rem;
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; background: var(--cream);
    padding: 1rem 6vw 2rem;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
    border-top: 1px solid var(--line);
  }
  .site-header__nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .site-header__nav .btn { margin-top: 1.2rem; justify-content: center; }
  body.nav-open .site-header__nav {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear 0s;
  }
}

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,35,33,.25) 0%, rgba(42,35,33,.35) 45%, rgba(20,16,15,.86) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 6vw 5.5rem; max-width: 780px; color: #fff; }
.hero-inner .eyebrow { color: #f0c9cf; }
.hero-inner h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; margin-bottom: 1.1rem; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.86); max-width: 34rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btns .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.hero-btns .btn-ghost:hover { border-color: #fff; }
.hero-rating { margin-top: 1.6rem; font-size: .9rem; color: rgba(255,255,255,.8); }
.hero-rating i { color: var(--blush); margin-right: .4rem; }

.hero-entrance { opacity: 0; transform: translateY(24px); animation: heroIn .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-entrance:nth-child(1) { animation-delay: .05s; }
.hero-entrance:nth-child(2) { animation-delay: .18s; }
.hero-entrance:nth-child(3) { animation-delay: .32s; }
.hero-entrance:nth-child(4) { animation-delay: .46s; }
.hero-entrance:nth-child(5) { animation-delay: .58s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Sections */
.section { padding: 7.5rem 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }
.section--ink { background: var(--ink); color: rgba(255,255,255,.92); }
.section--ink .eyebrow { color: var(--blush); }
.section--ink h2 { color: #fff; }

.sec-head { max-width: 640px; margin-bottom: 3.5rem; }
.sec-lead { color: var(--ink-soft); margin-top: 1rem; font-size: 1.02rem; }
.section--ink .sec-lead { color: rgba(255,255,255,.7); }
.sec-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Photo mosaic */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.pm-item { position: relative; overflow: hidden; border-radius: var(--radius); grid-row: span 1; margin: 0; }
.pm-item.pm-tall { grid-row: span 2; }
.pm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pm-item:hover img { transform: scale(1.08); }
.pm-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
  color: #fff; font-size: .82rem; letter-spacing: .02em;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.pm-item:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.split-photo:hover img { transform: scale(1.06); }
.split-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: .3rem 0 1.2rem; }
.split-copy p { color: var(--ink-soft); font-size: 1.05rem; max-width: 30rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review-card {
  margin: 0; padding: 2.2rem 1.8rem; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.review-card__stars { color: var(--blush); font-size: .85rem; margin-bottom: 1rem; letter-spacing: .2em; }
.review-card p { font-size: .98rem; color: rgba(255,255,255,.86); margin-bottom: 1.2rem; }
.review-card cite { font-style: normal; font-size: .82rem; color: rgba(255,255,255,.5); letter-spacing: .02em; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

/* Dove siamo */
.dove-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.dove-grid h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: .3rem 0 1.4rem; }
.dove-addr { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; color: var(--ink-soft); font-size: 1.02rem; }
.dove-addr i { color: var(--blush-deep); }
.dove-addr a { text-decoration: underline; text-underline-offset: 3px; }
.dove-grid .hero-btns { margin-top: 1.8rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .dove-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 4rem 6vw 2.4rem; text-align: center;
}
.footer-logo { margin: 0 auto 1.4rem; border-radius: 50%; }
.site-footer__social { display: flex; justify-content: center; gap: 1.6rem; margin-bottom: 1.4rem; font-size: .92rem; }
.site-footer__social a:hover { color: #fff; }
.addr { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 1.4rem; }
.credit { font-size: .8rem; color: rgba(255,255,255,.35); }
.credit a { text-decoration: underline; text-underline-offset: 2px; }

/* Mobile book bar */
.mobile-book {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--blush-deep); color: #fff;
  text-align: center; padding: 1rem; font-family: var(--body); font-weight: 500;
  letter-spacing: .02em;
}
@media (max-width: 640px) { .mobile-book { display: block; } }

body.page-leaving { animation: pageOut .35s ease forwards; }
@keyframes pageOut { to { opacity: 0; } }
