:root {
  --paola-burgundy: #64060d;
  --paola-burgundy-dark: #350307;
  --paola-cream: #faf7f5;
  --paola-text: #2e2627;
}

html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--paola-cream);
  color: var(--paola-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.navbar-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: .02em;
}
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
}
.hero-photo {
  min-height: 520px;
  background: url('../../foto/incontrami1.jpg') center 18% / cover no-repeat;
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
}
.hero h1 {
  color: var(--paola-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .9;
  letter-spacing: -.055em;
}
.kicker {
  color: var(--paola-burgundy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.qa h2 {
  color: var(--paola-burgundy);
  font-size: 1.08rem;
  margin-top: 1.75rem;
}
.btn-paola {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--paola-burgundy);
  --bs-btn-border-color: var(--paola-burgundy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--paola-burgundy-dark);
  --bs-btn-hover-border-color: var(--paola-burgundy-dark);
}
.contact-strip {
  background: var(--paola-burgundy);
  color: #fff;
}
.contact-strip a { color: #fff; }
.gallery-card {
  border: 0;
  overflow: hidden;
  background: transparent;
}
.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-card button:hover img,
.gallery-card button:focus img {
  transform: scale(1.025);
  opacity: .92;
}
.gallery-card button {
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
}
.page-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paola-burgundy);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -.04em;
}
.disclaimer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(31, 4, 7, .92);
  backdrop-filter: blur(10px);
}
.disclaimer-backdrop.is-visible { display: flex; }
.disclaimer-card {
  width: min(680px, 100%);
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 5rem rgba(0,0,0,.35);
}
.disclaimer-card h2 {
  color: var(--paola-burgundy);
  font-family: Georgia, "Times New Roman", serif;
}
.footer-note { font-size: .875rem; color: #756b6d; }
@media (max-width: 991.98px) {
  .hero { min-height: auto; }
  .hero-photo { min-height: 62vh; }
  .hero-copy { padding: 2.5rem 1.5rem 3.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-card img { transition: none; }
}
