:root {
  --ink: #17120f;
  --charcoal: #241d1b;
  --wine: #7a1825;
  --wine-dark: #3b1017;
  --gold: #c79b50;
  --gold-soft: #d4ad68;
  --teal: #0e4744;
  --whatsapp: #1f8f62;
  --ivory: #f6efe4;
  --porcelain: #fffaf1;
  --muted: #776d62;
  --line: rgba(36, 29, 27, 0.16);
  --shadow: 0 24px 70px rgba(23, 18, 15, 0.18);
  --soft-shadow: 0 28px 80px rgba(23, 18, 15, 0.13);
  --glass: rgba(22, 18, 15, 0.46);
  --radius: 18px;
  --radius-sm: 12px;
  /* System fonts: reliable on Windows without external CDN */
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
}

.page-inner {
  min-height: 100vh;
  min-height: 100dvh;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--porcelain);
  pointer-events: none;
  transition: padding 180ms ease;
}

.site-header.is-scrolled, .site-header.nav-visible {
  color: var(--porcelain);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid rgba(199, 155, 80, 0.22);
  border-radius: 50%;
  background: #ebe0ce;
  box-shadow: 0 10px 26px rgba(12, 10, 8, 0.18);
  padding: 5px;
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  background: #f0e6d6;
  box-shadow: 0 14px 32px rgba(12, 10, 8, 0.22);
}

.brand-logo-only {
  max-width: none;
}

.brand-mark {
  display: block;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

.brand-text {
  display: none;
  min-width: 0;
  line-height: 1.1;
}

.brand strong, .brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-header.is-scrolled .site-nav a:hover, .site-header.nav-visible .site-nav a:hover, .site-header.is-scrolled .site-nav .nav-link:hover, .site-header.nav-visible .site-nav .nav-link:hover {
  background: rgba(255, 250, 241, 0.2);
}

.nav-item.is-open .nav-submenu {
  display: grid;
  gap: 2px;
}

.page-home {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #120f0d;
}

.page-home .home-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  /* Content below logo with air (~4–5 cm) */
  align-items: start;
  overflow: visible;
  background: var(--charcoal);
  color: var(--porcelain);
  padding:
    calc(72px + 4.5cm)
    clamp(20px, 5vw, 72px)
    clamp(88px, 12vh, 110px);
}

.hero-media, .hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 82% 40%;
  /* No heavy blur: better performance on Windows */
  filter: brightness(0.78) contrast(1.04) saturate(0.98);
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(16, 12, 10, 0.88) 0%, rgba(16, 12, 10, 0.68) 36%, rgba(16, 12, 10, 0.28) 64%, rgba(16, 12, 10, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 9, 8, 0.55) 0%, rgba(12, 9, 8, 0.12) 48%, rgba(12, 9, 8, 0.18) 100%),
    radial-gradient(ellipse at 78% 46%, rgba(122, 24, 37, 0.1), transparent 44%);
}

.page-home .site-header {
  justify-content: flex-start;
}

.site-header-solid {
  position: sticky;
  top: 0;
  z-index: 25;
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(36, 29, 27, 0.96), rgba(122, 24, 37, 0.82)),
    #1a1412;
  pointer-events: auto;
  box-shadow: 0 10px 30px rgba(12, 10, 8, 0.18);
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Inner pages: logo becomes a soft rectangle + name fills the red header */
.site-header-solid .brand,
.site-header-solid .brand-bar {
  pointer-events: auto;
  gap: 12px;
  max-width: min(460px, calc(100vw - 32px));
  border-radius: 18px;
  border: 1px solid rgba(199, 155, 80, 0.38);
  background: linear-gradient(145deg, #e8d9c4 0%, #f2e8d8 55%, #e4d5be 100%);
  box-shadow:
    0 12px 28px rgba(12, 10, 8, 0.2),
    inset 0 1px 0 rgba(255, 250, 241, 0.55);
  padding: 6px 16px 6px 6px;
}

.site-header-solid .brand:hover,
.site-header-solid .brand-bar:hover {
  background: linear-gradient(145deg, #efe3d1 0%, #f7efe4 55%, #eadcc8 100%);
  border-color: rgba(199, 155, 80, 0.55);
}

.site-header-solid .brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.55);
  box-shadow: inset 0 0 0 1px rgba(122, 24, 37, 0.08);
}

.site-header-solid .brand-text {
  display: block;
  padding-right: 4px;
}

.site-header-solid .brand strong {
  color: #3b1017;
  font-size: clamp(15px, 2.1vw, 21px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.site-header-solid .brand small {
  margin-top: 3px;
  color: #7a1825;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  opacity: 0.92;
  text-transform: uppercase;
}

.page-main {
  min-height: calc(100vh - 160px);
  min-height: calc(100svh - 160px);
}

.page-main h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
  color: var(--ink);
}

.page-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.page-lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.content-card {
  max-width: 820px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--soft-shadow);
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-links .button-ink {
  box-shadow: none;
}

.hero-menu {
  position: relative;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.hero-menu-item {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.hero-menu-trigger {
  width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(12, 10, 8, 0.16);
}

.hero-menu-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.75;
}

.hero-menu-panel {
  position: absolute;
  top: calc(100% - 4px);
  bottom: auto;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 3px;
  min-width: min(250px, 80vw);
  max-height: min(38vh, 240px);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(199, 155, 80, 0.28);
  border-radius: 16px;
  background: #5a1520;
  background: linear-gradient(145deg, #3b1017, #7a1825 55%, #2a1216);
  box-shadow:
    0 18px 42px rgba(40, 8, 12, 0.45),
    inset 0 1px 0 rgba(255, 220, 180, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 200ms;
}

.hero-menu-item.is-open .hero-menu-panel,
.hero-menu-item:hover .hero-menu-panel,
.hero-menu-item:focus-within .hero-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s;
}

.hero-menu-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  bottom: auto;
  left: 0;
  right: 0;
  height: 16px;
}

.hero-menu-panel a {
  display: grid;
  gap: 1px;
  border-radius: 11px;
  padding: 10px 12px;
  color: var(--porcelain);
  background: rgba(18, 10, 12, 0.22);
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-menu-panel a span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-menu-panel a em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 236, 220, 0.72);
}

.hero-menu-panel a:hover {
  background: rgba(199, 155, 80, 0.28);
  border-color: rgba(199, 155, 80, 0.45);
  transform: translateX(2px);
}

.hero-menu-panel-end, .hero-menu-item:last-child .hero-menu-panel {
  left: auto;
  right: 0;
}

.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
}

h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5.8vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-home h1 {
  display: grid;
  gap: 0.02em;
  max-width: none;
  margin: 0 0 14px;
  font-size: clamp(38px, 6.2vw, 72px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-emphasis {
  color: #f3e6cf;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-title-place {
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 250, 241, 0.9);
}

.page-home .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(720px, 100%);
  margin-top: 0;
  padding-bottom: 8px;
  overflow: visible;
}

.hero-copy {
  max-width: 38em;
  margin-bottom: 22px;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}

.page-storia {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 155, 80, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f2e8, #efe4d4);
}

.page-storia .site-header-solid {
  flex: 0 0 auto;
}

.page-storia .page-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  padding: clamp(12px, 2vh, 22px) clamp(16px, 4vw, 48px);
}

.page-storia .site-footer {
  flex: 0 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.storia-shell {
  width: 100%;
  min-height: 0;
  display: flex;
}

.storia-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) minmax(0, 1.4fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  height: 100%;
}

.storia-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 4px 0;
}

.storia-year {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(48px, 7vh, 88px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.storia-aside h1 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4.5vh, 52px);
  line-height: 0.95;
}

.storia-aside .page-lead {
  font-size: clamp(14px, 1.6vh, 17px);
  line-height: 1.45;
}

.storia-links {
  margin-top: clamp(14px, 2.5vh, 24px);
}

.storia-links .button {
  min-height: 42px;
  padding: 10px 18px;
}

.storia-body {
  display: flex;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(36, 29, 27, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 241, 0.88));
  box-shadow: 0 18px 48px rgba(23, 18, 15, 0.08);
  overflow: hidden;
}

.storia-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: clamp(16px, 2.4vh, 28px) clamp(18px, 2.5vw, 32px);
}

.storia-scroll p {
  margin: 0 0 0.9em;
  color: #5d5349;
  font-size: clamp(13.5px, 1.55vh, 16px);
  line-height: 1.58;
}

.storia-scroll p:last-child {
  margin-bottom: 0;
}

.storia-scroll p:first-child::first-letter {
  float: left;
  margin: 4px 8px 0 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2.6em;
  font-weight: 600;
  line-height: 0.82;
}

.foto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.foto-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  min-height: 220px;
}

.foto-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.foto-grid-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.foto-item-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.foto-item-wide img {
  min-height: 360px;
}

.foto-item figcaption {
  padding: 12px 4px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-pad-tight {
  padding-top: clamp(28px, 4vh, 44px);
  padding-bottom: clamp(36px, 5vh, 56px);
}

.page-head-compact {
  margin-bottom: 22px;
}

.page-head-compact h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.page-sconti {
  background:
    radial-gradient(circle at 88% 8%, rgba(122, 24, 37, 0.08), transparent 24%),
    radial-gradient(circle at 10% 20%, rgba(199, 155, 80, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f2e8, #efe4d4);
}

.sconti-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
}

.deal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 210px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(36, 29, 27, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255, 253, 248, 0.98), rgba(255, 246, 236, 0.92));
  box-shadow: 0 16px 40px rgba(23, 18, 15, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.deal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 24, 37, 0.22);
  box-shadow: 0 22px 48px rgba(23, 18, 15, 0.12);
}

.deal-card-wide {
  grid-column: span 2;
}

.deal-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 4px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a1825, #a3283a);
  color: #fff8f0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(122, 24, 37, 0.22);
}

.deal-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.12;
  color: var(--ink);
}

.deal-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.deal-offer {
  margin: 0;
  color: var(--wine);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.deal-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  columns: 2;
  column-gap: 24px;
}

.deal-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 71, 68, 0.1);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.deal-cta:hover {
  background: var(--teal);
  color: #fffaf1;
  transform: translateY(-1px);
}

.contact-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.contact-jump-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-jump-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 24, 37, 0.3);
}

.contact-jump-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #c79b50, #d4ad68);
  color: #1f1711;
  box-shadow: 0 12px 28px rgba(199, 155, 80, 0.28);
}

.accordion-item-featured {
  border-color: rgba(199, 155, 80, 0.45);
  box-shadow: 0 18px 44px rgba(122, 24, 37, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(255, 245, 232, 0.94));
}

.accordion-item-featured summary {
  background: rgba(199, 155, 80, 0.08);
}

.room-picker-compact {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.room-picker-compact .room-option-card {
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 8px;
}

.room-picker-compact .room-thumb {
  width: 64px;
  height: 48px;
}

.room-picker-compact .room-option-card strong {
  font-size: 18px;
}

.send-method-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.send-method-row legend {
  grid-column: 1 / -1;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.contact-quick-card {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 30px rgba(23, 18, 15, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 155, 80, 0.45);
  box-shadow: 0 16px 34px rgba(23, 18, 15, 0.1);
}

.contact-quick-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-quick-card strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  word-break: break-word;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(23, 18, 15, 0.06);
  overflow: hidden;
  scroll-margin-top: 100px;
}

.accordion-item summary {
  display: grid;
  gap: 4px;
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  transition: background 160ms ease;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "▾";
  position: absolute;
  right: 22px;
  top: 24px;
  color: var(--gold);
  font-size: 14px;
  transition: transform 180ms ease;
}

.accordion-item {
  position: relative;
}

.accordion-item[open] summary::after {
  transform: rotate(180deg);
}

.accordion-item summary:hover {
  background: rgba(246, 239, 228, 0.55);
}

.accordion-title {
  padding-right: 28px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.accordion-hint {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.accordion-body {
  padding: 0 22px 22px;
  border-top: 1px solid rgba(36, 29, 27, 0.08);
}

.accordion-form {
  margin-top: 18px;
  box-shadow: none;
  border-top: 0;
  padding: 0;
  background: transparent;
}

.send-method {
  margin: 4px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(246, 239, 228, 0.55);
  display: grid;
  gap: 10px;
}

.send-method legend {
  padding: 0 4px;
  color: var(--wine-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.send-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.send-option input {
  width: auto;
  margin: 0;
  accent-color: var(--wine);
}

.send-option:has(input:checked) {
  border-color: rgba(122, 24, 37, 0.45);
  box-shadow: 0 0 0 3px rgba(122, 24, 37, 0.12);
  background: rgba(255, 250, 241, 1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(23, 18, 15, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 18, 15, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, #c79b50, #d8b36a);
  color: #1f1711;
  border-color: transparent;
}

.button-primary:hover {
  background: linear-gradient(135deg, #d4ad68, #e0c07a);
}

.button-secondary {
  border-color: rgba(199, 155, 80, 0.55);
  background: rgba(122, 24, 37, 0.72);
  color: #fffaf1;
  box-shadow: 0 12px 28px rgba(59, 16, 23, 0.28);
}

.button-secondary:hover {
  background: rgba(122, 24, 37, 0.9);
  border-color: rgba(199, 155, 80, 0.85);
  color: #fffaf1;
}

.section-pad {
  padding: clamp(36px, 5vh, 56px) clamp(18px, 5vw, 64px) clamp(48px, 7vh, 80px);
}

#iniziative, #programma, #sconti, #contattaci, #richiedi-sale, #chiamaci, #chi-siamo {
  scroll-margin-top: 88px;
}

.button-ink {
  border-color: rgba(36, 29, 27, 0.2);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
}

.button-ink:hover {
  border-color: rgba(122, 24, 37, 0.35);
  background: #fff;
}

.notice-card {
  margin-top: 8px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.9);
}

.notice-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  line-height: 1.1;
}

.notice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.room-picker {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.room-picker legend {
  margin-bottom: 8px;
  color: var(--wine-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.room-option {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: inherit;
}

.room-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-option-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.room-option input:checked + .room-option-card {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 155, 80, 0.18);
}

.room-option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 155, 80, 0.55);
}

.room-option-card strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
}

.room-thumb {
  display: block;
  width: 88px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.room-thumb-consiglio {
  background-image:
    linear-gradient(135deg, rgba(59, 16, 23, 0.3), rgba(14, 71, 68, 0.2)),
    url("assets/hero-home.jpg");
  background-position: center 28%;
}

.room-thumb-cucina {
  background-image:
    linear-gradient(135deg, rgba(199, 155, 80, 0.35), rgba(59, 16, 23, 0.25)),
    url("assets/event-triptych.jpg");
}

.room-thumb-teatro {
  background-image:
    linear-gradient(135deg, rgba(14, 71, 68, 0.2), rgba(23, 18, 15, 0.18)),
    url("assets/hero-home.jpg");
  background-position: center 42%;
}

.room-thumb-storica {
  background-image:
    linear-gradient(135deg, rgba(122, 24, 37, 0.3), rgba(199, 155, 80, 0.16)),
    url("assets/hero-home.jpg");
  background-position: center 58%;
}

.contact-form .button-whatsapp {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.program .section-kicker {
  color: var(--porcelain);
}

.program .section-kicker {
  opacity: 0.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 241, 0.88));
  box-shadow: 0 32px 90px rgba(23, 18, 15, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 28px;
  scroll-margin-top: 110px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--wine-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 155, 80, 0.18);
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 16px;
  flex-wrap: wrap;
  padding: 12px clamp(16px, 4vw, 56px);
  background: #120f0d;
  color: rgba(255, 250, 241, 0.48);
  font-size: 10px;
  font-weight: 400;
}

.site-footer > span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 250, 241, 0.45);
}

.footer-title {
  margin: 0;
  max-width: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fffaf1;
}

.footer-eyebrow {
  margin: 0;
  color: rgba(199, 155, 80, 0.85);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal {
  margin: 0;
  max-width: 42em;
  color: rgba(255, 250, 241, 0.42);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  min-width: 0;
}

.footer-credit {
  opacity: 0.78;
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease, color 160ms ease;
  pointer-events: auto;
  cursor: pointer;
}

.footer-credit strong {
  color: rgba(255, 250, 241, 0.88);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-credit:hover {
  opacity: 1;
  color: rgba(255, 250, 241, 0.95);
}

.footer-credit:hover strong {
  color: var(--gold);
}

.site-footer-home {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
  padding: 10px clamp(16px, 4vw, 56px);
  background: #0d0b0a;
  border-top: 1px solid rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.55);
  pointer-events: auto;
  gap: 10px 20px;
}

.site-footer-home .footer-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.site-footer-home .footer-credit {
  font-size: 10px;
  opacity: 0.65;
}

.site-footer-home .footer-credit strong {
  font-weight: 600;
}

.page-home .whatsapp-float {
  /* Above the black legal bar — never covers legal text */
  right: 18px;
  bottom: 58px;
  z-index: 15;
  min-height: 42px;
  min-width: 108px;
  font-size: 11px;
  padding: 0 16px;
}

.page-home .site-footer-home {
  z-index: 20;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: inline-flex;
  min-height: 48px;
  min-width: 118px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(23, 18, 15, 0.24);
  color: #fffdf8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 18px;
  /* Brand spelling: WhatsApp — never all-caps */
  text-transform: none;
  transform: translateY(var(--whatsapp-lift, 0px));
  transition:
    min-width 260ms ease,
    padding 260ms ease,
    transform 220ms ease,
    box-shadow 180ms ease,
    border-radius 260ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 48px rgba(23, 18, 15, 0.3);
  transform: translateY(calc(var(--whatsapp-lift, 0px) - 2px));
}

.whatsapp-float.is-docked {
  min-width: min(330px, calc(100vw - 32px));
  border-radius: 22px;
  padding: 0 28px;
  box-shadow: 0 26px 62px rgba(23, 18, 15, 0.32);
}

@media (max-width: 920px) {
  .page-home {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: auto;
  }

  .hero {
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
    align-items: start;
    padding: calc(64px + 3.5cm) 18px 96px;
    overflow: visible;
  }

  .hero-content {
    margin-top: 0;
    width: 100%;
  }

  .page-home h1 {
    font-size: clamp(32px, 8.5vw, 44px);
  }

  .hero-image {
    object-position: 72% 40%;
    filter: brightness(0.76) contrast(1.04);
  }

  .hero-menu {
    width: 100%;
    flex-direction: column;
  }

  .hero-menu-item {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* Mobile: expand panel under the button (downward in document flow) */
  .hero-menu-panel {
    position: static;
    top: auto;
    bottom: auto;
    min-width: 0;
    max-height: none;
    margin-top: 8px;
    transform: none;
  }

  .hero-menu-panel::before {
    display: none;
  }

  .hero-menu-item:not(.is-open) .hero-menu-panel {
    display: none;
  }

  .hero-menu-item.is-open .hero-menu-panel {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-menu-trigger::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .page-storia {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: auto;
  }

  .storia-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .storia-body {
    height: auto;
  }

  .storia-scroll {
    max-height: none;
    overflow: visible;
  }

  .page-storia .page-main {
    min-height: auto;
    flex: none;
  }

  .deal-card-wide {
    grid-column: span 1;
  }

  .deal-list {
    columns: 1;
  }

  .room-picker-compact,
  .send-method-row,
  .form-row,
  .foto-grid,
  .foto-grid-page,
  .contact-quick,
  .sconti-cards {
    grid-template-columns: 1fr;
  }

  .foto-item-wide,
  .foto-item-wide img {
    min-height: 220px;
  }

  .section-pad,
  .section-pad-tight {
    padding-top: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-home .whatsapp-float {
    right: 14px;
    bottom: 62px;
    min-width: 100px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .site-header-solid .brand,
  .site-header-solid .brand-bar {
    max-width: calc(100vw - 28px);
    padding: 5px 12px 5px 5px;
    gap: 10px;
    border-radius: 16px;
  }

  .site-header-solid .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .site-header-solid .brand strong {
    font-size: 14px;
  }

  .site-header-solid .brand small {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .page-home h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .hero {
    padding: calc(56px + 3.2cm) 16px 100px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-menu .button,
  .page-links .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px 72px;
  }

  .page-home .site-footer-home {
    padding-bottom: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 16px;
    min-width: 104px;
    min-height: 44px;
    font-size: 11px;
  }

  .page-home .whatsapp-float {
    bottom: 58px;
  }

  .whatsapp-float.is-docked {
    min-width: auto;
    border-radius: 999px;
    padding: 0 16px;
  }

  .page-main h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
}
