* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--snow);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open, body.panel-open, body.lightbox-open, body.email-modal-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--pine); color: white; }

.container { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.section { padding: clamp(82px, 10vw, 148px) 0; }
.section-sm { padding: clamp(58px, 7vw, 100px) 0; }
.bg-paper { background: var(--paper); }
.bg-pine { background: var(--pine); color: white; }
.bg-ice { background: var(--ice); }
.rule { height: 1px; background: var(--line); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--pine-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--sun); }
.kicker.light { color: var(--ice); }
.kicker.light::before { background: var(--sun-soft); }
h1, h2, h3, p { margin-top: 0; }
.display {
  max-width: 14ch;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
.display em, .hero-title em, .page-title em { color: var(--sun); font-style: italic; font-weight: 500; }
.title {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.02;
}
.title em { color: var(--sun); font-style: italic; font-weight: 500; }
.lead { max-width: 62ch; color: var(--ink-soft); font-size: clamp(17px, 1.8vw, 20px); line-height: 1.65; }
.lead.light { color: rgba(255,255,255,.76); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  color: var(--pine);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link::after { content: "↗"; font-size: 15px; }
.text-link.light { color: white; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--pine); box-shadow: 0 16px 30px -18px rgba(23,60,53,.75); }
.btn-primary:hover { background: var(--pine-2); }
.btn-sun { color: #fff; background: var(--sun); }
.btn-sun:hover { background: #a95734; }
.btn-light { color: var(--pine); background: white; }
.btn-outline { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-outline:hover { color: white; border-color: var(--pine); background: var(--pine); }
.btn-glass { color: white; border-color: rgba(255,255,255,.55); background: rgba(20,31,28,.14); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.16); }
.btn svg { width: 18px; height: 18px; }

/* Navigazione */
.site-header { position: fixed; inset: 0 0 auto; z-index: 80; padding: 18px var(--pad); transition: padding .3s var(--ease); }
.nav-shell {
  width: min(1320px, 100%);
  height: 70px;
  margin: auto;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--ink);
  background: rgba(255,254,251,.91);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 999px;
  box-shadow: 0 16px 46px -30px rgba(0,0,0,.5);
  backdrop-filter: blur(18px) saturate(1.25);
}
.site-header.scrolled { padding-top: 8px; }
.site-header.scrolled .nav-shell { background: rgba(255,254,251,.97); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy b { font-family: var(--display); font-size: 23px; font-weight: 700; letter-spacing: .01em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 8.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.nav-links a { position: relative; color: #59635f; font-size: 13px; font-weight: 750; }
.lang-link { font-size: 12px !important; padding: 4px 8px; border: 1px solid var(--line); border-radius: 6px; }
.lang-link + .lang-link { margin-left: -15px; }
.lang-link:hover { border-color: var(--pine); background: var(--ice); }
.nav-links a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: var(--sun); transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { min-height: 46px; padding-inline: 20px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; place-items: center; border: 0; background: transparent; cursor: pointer; }
.menu-toggle svg { width: 25px; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 96px var(--pad) 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: white;
  background: var(--pine);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: .35s var(--ease);
}
.mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu a:not(.btn) { padding: 7px 0; font-family: var(--display); font-size: clamp(38px, 12vw, 60px); line-height: 1; }
.mobile-close { position: absolute; top: 26px; right: var(--pad); width: 48px; height: 48px; color: white; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: transparent; font-size: 27px; cursor: pointer; }
.mobile-menu .btn { align-self: flex-start; margin-top: 22px; }

/* Hero home */
.home-hero { position: relative; min-height: 78svh; display: grid; place-items: center; color: white; overflow: hidden; }
.home-hero-media { position: absolute; inset: 0; }
.home-hero-media img { height: 100%; object-fit: cover; object-position: 50% 55%; animation: heroZoom 30s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .home-hero-media img { animation: none; } }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,20,17,.65) 0%, rgba(8,20,17,.2) 40%, transparent 70%); }
.hero-content { position: relative; z-index: 2; width: min(920px, 100%); padding: 0 var(--pad); text-align: center; }
.hero-loc { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-loc svg { width: 17px; }
.hero-title { max-width: 900px; margin: 0 auto 20px; font-family: var(--display); font-size: clamp(82px, 12vw, 160px); font-weight: 500; letter-spacing: -.045em; line-height: .86; }
.hero-sub { max-width: 590px; margin: 0 auto 28px; color: rgba(255,255,255,.9); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-vertical { position: absolute; z-index: 3; right: 22px; bottom: 108px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; color: rgba(255,255,255,.8); font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.hero-vertical::after { content: ""; width: 58px; height: 1px; background: rgba(255,255,255,.5); }

.quick-facts { position: relative; z-index: 5; margin-top: -30px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.quick-item { min-height: 112px; padding: 25px 28px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--pine); background: var(--ice); border-radius: 50%; flex: none; }
.quick-icon svg { width: 20px; height: 20px; }
.quick-item .quick-icon { display: grid; place-items: center; margin-top: 0; }
.quick-item .quick-icon svg { display: block; margin: 0; }
.quick-item b { display: block; font-family: var(--display); font-size: 28px; line-height: 1; }
.quick-item span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Layout editoriali */
.intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 124px); align-items: center; }
.portrait-stack { position: relative; min-height: 620px; }
.portrait-stack .main-img { position: absolute; inset: 0 12% 7% 0; height: 93%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.portrait-stack .small-img { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 1/1.18; object-fit: cover; border: 8px solid var(--snow); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.note-card { position: absolute; left: 26px; bottom: 26px; max-width: 270px; padding: 22px; color: white; background: rgba(23,60,53,.92); border-radius: var(--radius-sm); backdrop-filter: blur(8px); }
.note-card strong { display: block; margin-bottom: 3px; font-family: var(--display); font-size: 25px; }
.note-card span { color: rgba(255,255,255,.75); font-size: 13px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 32px 0 38px; padding: 0; list-style: none; }
.feature-list li { padding: 14px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.feature-list svg { width: 18px; height: 18px; color: var(--sun); flex: none; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.section-heading > div { max-width: 740px; }
.mosaic { display: grid; grid-template-columns: 1.08fr .92fr .72fr; grid-template-rows: 280px 280px; gap: 14px; }
.mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-sm); }
.mosaic figure:first-child { grid-row: 1 / 3; }
.mosaic figure:nth-child(2) { grid-column: 2 / 4; }
.mosaic img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic figure:hover img { transform: scale(1.045); }
.mosaic figcaption { position: absolute; inset: auto 14px 14px; width: fit-content; padding: 8px 12px; color: white; background: rgba(10,25,21,.66); border-radius: 999px; backdrop-filter: blur(8px); font-size: 11px; font-weight: 750; }

.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amenity-card { min-height: 210px; padding: 28px; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius-sm); }
.amenity-card svg { width: 28px; height: 28px; color: var(--pine); }
.amenity-card h3 { margin: 28px 0 8px; font-family: var(--display); font-size: 28px; font-weight: 650; line-height: 1; }
.amenity-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.panorama { position: relative; min-height: 72svh; display: grid; place-items: end start; color: white; overflow: hidden; }
.panorama > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.panorama::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,25,21,.76), rgba(11,25,21,.08) 64%); }
.panorama-copy { position: relative; z-index: 2; max-width: 690px; padding: 80px max(var(--pad), calc((100vw - var(--max)) / 2)); }
.panorama-copy h2 { margin-bottom: 20px; font-family: var(--display); font-size: clamp(46px, 7vw, 82px); font-weight: 500; line-height: .95; }
.panorama-copy p { color: rgba(255,255,255,.82); font-size: 18px; }

.nearby-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.distance-list { margin: 0; padding: 0; list-style: none; }
.distance-list li { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.distance-list li:first-child { border-top: 1px solid var(--line); }
.distance-list strong { color: var(--pine); font-family: var(--display); font-size: 30px; font-weight: 650; line-height: 1; }
.distance-list strong small { display: block; margin-top: 4px; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.distance-list b { display: block; margin-bottom: 3px; }
.distance-list span { color: var(--ink-soft); font-size: 14px; }
.nearby-photo { position: sticky; top: 112px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.nearby-photo img { min-height: 600px; object-fit: cover; }
.nearby-photo-label { position: absolute; inset: auto 22px 22px; padding: 14px 18px; color: white; background: rgba(23,60,53,.88); border-radius: var(--radius-sm); backdrop-filter: blur(10px); }
.nearby-photo-label b { display: block; font-family: var(--display); font-size: 24px; }
.nearby-photo-label span { font-size: 12px; opacity: .76; }

/* Hero pagine interne */
.page-hero { position: relative; min-height: 600px; display: grid; place-items: end start; color: white; overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,23,19,.78), rgba(9,23,19,.08) 70%); }
.page-hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - (var(--pad) * 2))); margin: 0 auto; padding: 180px 0 74px; text-align: center; }
.page-title { max-width: 940px; margin: 0 auto 16px; font-family: var(--display); font-size: clamp(54px, 8vw, 100px); font-weight: 500; letter-spacing: -.04em; line-height: .88; }
.page-intro { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: clamp(17px, 2vw, 21px); }
.page-chip { display: inline-flex; gap: 9px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(16,35,30,.22); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.space-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.space-card { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius); }
.space-card.wide { grid-column: 1 / 3; min-height: 600px; }
.space-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.space-card:hover img { transform: scale(1.035); }
.space-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,27,23,.7), transparent 52%); }
.space-copy { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(25px, 4vw, 42px); color: white; }
.space-copy h3 { margin: 0 0 7px; font-family: var(--display); font-size: 37px; line-height: 1; }
.space-copy p { max-width: 48ch; margin: 0; color: rgba(255,255,255,.76); font-size: 14px; }

.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-group { padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.detail-group h3 { margin: 0 0 18px; font-family: var(--display); font-size: 30px; font-weight: 650; }
.check-list { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sun); font-weight: 900; }
.notice { margin-top: 22px; padding: 22px 26px; background: var(--ice); border-left: 3px solid var(--pine); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-soft); font-size: 14px; }

/* Galleria */
.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-btn { padding: 10px 17px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.filter-btn:hover, .filter-btn.active { color: white; border-color: var(--pine); background: var(--pine); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 14px; }
.gallery-item { grid-column: span 4; margin: 0; height: 350px; position: relative; overflow: hidden; border: 0; border-radius: var(--radius-sm); background: var(--snow-deep); cursor: zoom-in; }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { height: 520px; }
.gallery-grid:not(.filter-bagno) .gallery-item.tall { height: 350px; }
.gallery-item.hidden { display: none; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .35s; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.88); }
.gallery-item::after { content: "+"; position: absolute; right: 16px; bottom: 16px; width: 42px; height: 42px; display: grid; place-items: center; color: white; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(20,45,39,.35); backdrop-filter: blur(8px); opacity: 0; transform: translateY(5px); transition: .25s; font-size: 22px; }
.gallery-item:hover::after { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 74px 7vw 50px; color: white; background: rgba(6,15,13,.94); visibility: hidden; opacity: 0; transition: opacity .3s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox img { width: auto; max-width: min(1500px, 100%); max-height: calc(100svh - 145px); object-fit: contain; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; width: 50px; height: 50px; display: grid; place-items: center; color: white; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.07); cursor: pointer; }
.lightbox-close { top: 18px; right: 20px; font-size: 26px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 26px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 17px; left: 50%; transform: translateX(-50%); font-size: 13px; text-align: center; }

/* Livigno */
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.season-card { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius); color: white; }
.season-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.season-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,26,22,.84), rgba(10,26,22,.02) 65%); }
.season-copy { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(28px, 4vw, 46px); }
.season-copy h3 { margin: 0 0 10px; font-family: var(--display); font-size: 48px; line-height: .95; }
.season-copy p { color: rgba(255,255,255,.77); }
.season-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.season-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(0,0,0,.12); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-credits { margin: 22px auto 0; color: var(--ink-soft); font-size: 11px; line-height: 1.55; text-align: center; }
.photo-credits a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; }
.place-card { padding: 28px; border-top: 1px solid var(--line); }
.place-card span { display: block; margin-bottom: 14px; color: var(--sun); font-family: var(--display); font-size: 36px; }
.place-card h3 { margin-bottom: 8px; font-size: 17px; }
.place-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.map-card { overflow: hidden; border-radius: var(--radius); background: var(--snow-deep); box-shadow: var(--shadow); }
.map-card iframe { display: block; width: 100%; min-height: 520px; border: 0; filter: saturate(.7) contrast(1.05); }

/* Contatti e form */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 8vw, 120px); align-items: start; }
.contact-lines { margin-top: 36px; }
.contact-line { padding: 20px 0; display: grid; grid-template-columns: 110px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.contact-line:first-child { border-top: 1px solid var(--line); }
.contact-line small { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-line a, .contact-line span { font-weight: 700; }
.contact-line a:hover { color: var(--sun); }
.form-card { padding: clamp(28px, 5vw, 52px); background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 8px; font-family: var(--display); font-size: 42px; line-height: 1; }
.form-card > p { margin-bottom: 30px; color: var(--ink-soft); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / 3; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 51px; padding: 13px 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: var(--snow); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(35,86,75,.1); }
.form-note { margin: 16px 0 0; color: var(--ink-soft); font-size: 11px; }

/* FAQ e CTA */
.faq { max-width: 850px; margin: 42px auto 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; font-weight: 750; cursor: pointer; }
.faq-button span:last-child { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 68ch; margin: 0 0 24px; color: var(--ink-soft); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.final-cta { position: relative; min-height: 520px; display: grid; place-items: center; color: white; text-align: center; overflow: hidden; }
.final-cta img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: rgba(12,33,28,.68); }
.final-cta-copy { position: relative; z-index: 2; width: min(760px, calc(100% - 40px)); }
.final-cta h2 { margin-bottom: 18px; font-family: var(--display); font-size: clamp(48px, 7vw, 78px); font-weight: 500; line-height: .95; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 18px; }

/* Footer */
.site-footer { padding: 72px 0 26px; color: white; background: #102b26; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 50px; padding-bottom: 54px; }
.site-footer .brand { margin-bottom: 22px; }
.site-footer .brand-copy small { color: rgba(255,255,255,.56); }
.footer-about p { max-width: 430px; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-title { margin-bottom: 18px; color: var(--sage); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; color: rgba(255,255,255,.76); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { padding-top: 23px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.43); border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

/* Pannello contatti */
.panel-backdrop { position: fixed; inset: 0; z-index: 98; background: rgba(7,17,15,.48); visibility: hidden; opacity: 0; transition: opacity .3s; }
.contact-panel { position: fixed; z-index: 99; inset: 0 0 0 auto; width: min(480px, 100%); padding: 90px 42px 42px; color: white; background: var(--pine); transform: translateX(102%); transition: transform .42s var(--ease); overflow-y: auto; }
.panel-backdrop.open { visibility: visible; opacity: 1; }
.contact-panel.open { transform: none; }
.panel-close { position: absolute; top: 25px; right: 26px; width: 46px; height: 46px; color: white; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: transparent; font-size: 24px; cursor: pointer; }
.contact-panel h2 { margin: 0 0 14px; font-family: var(--display); font-size: 52px; font-weight: 500; line-height: .95; }
.contact-panel > p { margin-bottom: 30px; color: rgba(255,255,255,.66); }
.panel-options { display: grid; gap: 10px; }
.panel-option { padding: 18px; display: flex; align-items: center; gap: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); background: rgba(255,255,255,.05); }
.panel-option:hover { background: rgba(255,255,255,.1); }
.panel-option svg { width: 24px; height: 24px; color: var(--sun-soft); }
.panel-option small { display: block; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.panel-option b { font-size: 15px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.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; }

@media (max-width: 1040px) {
  .nav-links { gap: 8px; }
  .lang-link + .lang-link { margin-left: 0; }
  .nav-links .lang-link { display: inline-flex; }
  .nav-links a:not(.lang-link) { display: none; }
  .nav-shell > .btn { display: none; }
  .menu-toggle { display: grid; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .nearby-grid, .contact-grid { grid-template-columns: 1fr; }
  .nearby-photo { position: relative; top: auto; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .detail-group:last-child { grid-column: 1 / 3; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; --radius: 18px; }
  body { font-size: 15px; }
  .site-header { padding-top: 10px; }
  .nav-shell { height: 62px; padding-left: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy b { font-size: 20px; }
  .home-hero-media img { animation: none; will-change: auto; object-position: 50% 50%; transform: scale(1); }
  .hero-content { align-self: center; padding-top: 0; }
  .hero-vertical { display: none; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item { min-height: 100px; padding: 20px 16px; gap: 11px; }
  .quick-icon { width: 36px; height: 36px; }
  .quick-item b { font-size: 24px; }
  .quick-item span { font-size: 9px; }
  .portrait-stack { min-height: 500px; }
  .portrait-stack .main-img { right: 5%; }
  .portrait-stack .small-img { width: 48%; }
  .note-card { left: 14px; bottom: 14px; padding: 16px; }
  .feature-list { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 32px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 190px 190px; }
  .mosaic figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .mosaic figure:nth-child(2) { grid-column: 1 / 3; }
  .amenity-grid, .details-grid, .places-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 170px; }
  .detail-group:last-child { grid-column: auto; }
  .nearby-photo img { min-height: 450px; }
  .page-hero { min-height: 570px; }
  .space-grid, .season-grid { grid-template-columns: 1fr; }
  .space-card, .space-card.wide { grid-column: auto; min-height: 440px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item, .gallery-item.wide { grid-column: span 1; height: 240px; }
  .gallery-item.tall { height: 340px; }
  .gallery-grid:not(.filter-bagno) .gallery-item.tall { height: 240px; }
  .gallery-item:nth-child(5n+1) { grid-column: 1 / 3; }
  .lightbox { padding-inline: 12px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 14px; transform: none; }
  .lightbox-caption { bottom: 28px; max-width: 55%; }
  .season-card { min-height: 520px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-line { grid-template-columns: 84px 1fr; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .contact-panel { padding-inline: 24px; }
}

@media (max-width: 430px) {
  .brand-copy small { display: none; }
  .quick-item { align-items: flex-start; flex-direction: column; }
  .gallery-item, .gallery-item.tall { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

body { background: var(--snow); }
.section { padding: clamp(82px, 9vw, 128px) 0; }
.section-sm { padding: clamp(60px, 7vw, 92px) 0; }
.bg-paper { background: var(--paper); }
.bg-ice { background: var(--snow-deep); }

.kicker {
  color: var(--pine-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
}
.kicker::before { width: 26px; height: 1.5px; background: var(--sun); }
.display, .title { font-family: var(--display); font-weight: 600; letter-spacing: -.03em; }
.display { max-width: 15ch; font-size: clamp(38px, 5.6vw, 64px); line-height: 1.04; }
.title { font-size: clamp(34px, 4.8vw, 56px); line-height: 1.05; }
.display em, .title em, .hero-title em, .page-title em, .panorama-copy h2 em, .final-cta h2 em {
  color: inherit;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
.lead { color: var(--ink-soft); font-size: clamp(17px, 1.8vw, 20px); }

.btn { min-height: 49px; padding: 12px 24px; font-size: 14px; font-weight: 700; }
.btn-primary { background: var(--pine); box-shadow: 0 14px 30px -16px rgba(18, 62, 68, .55); }
.btn-primary:hover { background: var(--pine-2); }
.btn-sun { background: var(--pine); }
.btn-sun:hover { background: var(--pine-2); }

.site-header { padding: 16px var(--pad); }
.site-header.scrolled { padding-top: 10px; }
.nav-shell {
  width: fit-content;
  max-width: 100%;
  height: auto;
  min-height: 58px;
  padding: 7px 7px 7px 17px;
  justify-content: center;
  gap: 25px;
  background: rgba(255, 253, 249, .9);
  border-color: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 40px -24px rgba(59, 43, 27, .42);
}
.site-header.scrolled .nav-shell { background: rgba(255, 253, 249, .97); }
.brand { gap: 10px; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; }
.brand-copy b { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; font-size: 9px; letter-spacing: .18em; }
.nav-links { gap: 23px; }
.nav-links a { font-size: 14px; font-weight: 600; }
.nav-links a::after { bottom: -6px; background: var(--sun); }
.nav-cta { min-height: 44px; padding-inline: 21px; }

.home-hero {
  min-height: 78svh;
  place-items: center;
}
.home-hero-media img { object-position: 50% 55%; animation: heroZoom 30s ease-in-out infinite alternate; will-change: transform; }
.home-hero::after {
  background: linear-gradient(0deg, rgba(8,20,17,.65) 0%, rgba(8,20,17,.2) 40%, transparent 70%);
}
.hero-content {
  width: min(920px, 100%);
  padding: 0 var(--pad);
  text-align: center;
}
.hero-loc {
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.hero-title {
  max-width: 900px;
  margin: 0 auto 24px;
  font-family: var(--display);
  font-size: clamp(82px, 12vw, 160px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .86;
  text-shadow: none;
}
.hero-title em { display: inline; }
.hero-sub { max-width: 590px; margin-bottom: 34px; color: rgba(255,255,255,.9); font-size: clamp(18px, 2.2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-vertical { position: absolute; z-index: 3; right: 22px; bottom: 108px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; color: rgba(255,255,255,.8); font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }

.quick-facts { margin-top: -54px; }
.quick-grid { border-radius: 20px; }
.quick-item { min-height: 105px; padding: 23px 25px; }
.quick-icon { width: 40px; height: 40px; background: var(--ice); }
.quick-item b { font-family: var(--serif); font-style: italic; font-size: 25px; color: var(--pine-2); }
.quick-item span { letter-spacing: .06em; }

.home-page .intro-grid > .portrait-stack { order: 2; }
.home-page .intro-grid > :not(.portrait-stack) { order: 1; }
.intro-grid { grid-template-columns: 1fr 1fr; gap: clamp(38px, 6vw, 80px); }
.portrait-stack { min-height: 520px; }
.portrait-stack .main-img { inset: 0; height: 100%; border-radius: var(--radius); }
.portrait-stack .small-img, .portrait-stack .note-card { display: none; }
.feature-list { margin: 27px 0 32px; gap: 0 24px; }
.feature-list li { padding: 12px 0; font-size: 14px; }

.section-heading { margin-bottom: 44px; }
.mosaic { grid-template-columns: repeat(6, 1fr); grid-template-rows: 190px 190px; gap: 14px; }
.mosaic figure:first-child { grid-column: span 3; grid-row: span 2; }
.mosaic figure:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.mosaic figure:nth-child(3), .mosaic figure:nth-child(4) { grid-column: span 3; }
.mosaic figcaption { background: rgba(18,62,68,.78); }

.amenity-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1040px; margin: 0 auto; }
.amenity-card {
  min-height: 0;
  width: auto;
  max-width: 100%;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px -22px rgba(59,43,27,.32);
}
.amenity-card svg { width: 19px; height: 19px; flex: none; color: var(--pine); }
.amenity-card h3 { margin: 0; font-family: var(--sans); font-size: 14px; font-weight: 700; white-space: nowrap; }
.amenity-card p { display: none; }

.panorama { min-height: 620px; }
.panorama::after { background: linear-gradient(0deg, rgba(18,62,68,.79), rgba(18,62,68,.03) 68%); }
.panorama-copy { max-width: 900px; padding-top: 74px; padding-bottom: 74px; }
.panorama-copy h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 68px); font-weight: 600; line-height: .86; }
.panorama-copy h2 span,
.panorama-copy h2 em { display: block; }
.panorama-copy h2 em { margin-top: .08em; }

.nearby-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(38px, 6vw, 76px); align-items: center; }
.distance-list li { padding: 17px 0; }
.distance-list strong { font-family: var(--serif); font-size: 25px; font-style: italic; }
.nearby-photo { position: relative; top: auto; }
.nearby-photo img { min-height: 540px; }
.nearby-photo-label { background: rgba(18,62,68,.9); }

.faq { margin-top: 34px; }
.faq-button { padding: 21px 0; }
.faq-button span:last-child { color: var(--pine); }
.final-cta { min-height: 500px; }
.final-cta::after { background: rgba(18,62,68,.68); }
.final-cta h2 { font-family: var(--display); font-size: clamp(42px, 6vw, 66px); font-weight: 600; }

.page-hero { min-height: 560px; text-align: center; }
.page-hero::after { background: linear-gradient(180deg, rgba(28,20,12,.28), rgba(28,20,12,.66)); }
.page-hero-content { padding-bottom: 66px; }
.page-chip { background: rgba(255,255,255,.13); }
.page-title { max-width: 900px; margin: 0 auto 16px; font-family: var(--display); font-size: clamp(46px, 7vw, 78px); font-weight: 600; line-height: .98; }
.page-intro { margin-inline: auto; }

.space-grid { gap: 16px; }
.space-card { min-height: 440px; border-radius: var(--radius); }
.space-card.wide { min-height: 510px; }
.space-copy h3 { font-family: var(--display); font-size: 30px; font-weight: 700; }
.details-grid { gap: 18px; }
.detail-group { padding: 28px; border-radius: var(--radius); }
.detail-group h3 { font-family: var(--display); font-size: 25px; font-weight: 700; }

.gallery-item { border-radius: var(--radius); }
.filter-btn:hover, .filter-btn.active { border-color: var(--pine); background: var(--pine); }
.season-card { min-height: 560px; border-radius: var(--radius); }
.season-copy h3 { font-family: var(--display); font-size: 40px; font-weight: 700; }
.places-grid { gap: 22px; }
.place-card span { font-family: var(--serif); color: var(--pine); font-style: italic; }

.form-card { border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card h2 { font-family: var(--display); font-size: 36px; font-weight: 700; }
.field input, .field textarea, .field select { background: #fffdf9; }

.site-footer { background: var(--pine-2); }
.contact-panel { background: var(--pine-2); }
.contact-panel h2 { font-family: var(--display); font-size: 43px; font-weight: 600; }

@media (max-width: 1040px) {
  .nav-shell { width: min(640px, 100%); justify-content: space-between; }
  .intro-grid { grid-template-columns: 1fr; }
  .home-page .intro-grid > .portrait-stack,
  .home-page .intro-grid > :not(.portrait-stack) { order: initial; }
  .portrait-stack { min-height: 500px; }
  .nearby-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 16px; }
  .nav-shell { width: 100%; min-height: 58px; padding: 7px 8px 7px 12px; }
  .brand-copy b { font-size: 16px; }
  .home-hero-media img { animation: none; will-change: auto; object-position: 50% 50%; transform: scale(1); }
  .hero-content { align-self: center; padding-top: 0; }
  .hero-sub { font-size: 17px; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .hero-vertical { display: none; }
  .quick-facts { margin-top: -34px; }
  .quick-item { min-height: 96px; padding: 17px 14px; }
  .quick-item b { font-size: 21px; }
  .quick-item span { font-size: 8px; }
  .portrait-stack { min-height: 410px; }
  .feature-list { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 190px 190px; }
  .mosaic figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .mosaic figure:nth-child(2) { grid-column: 1 / 3; grid-row: auto; }
  .mosaic figure:nth-child(3), .mosaic figure:nth-child(4) { grid-column: span 1; }
  .amenity-grid { justify-content: flex-start; }
  .amenity-card { width: 100%; border-radius: 14px; }
  .panorama { min-height: 560px; }
  .nearby-photo img { min-height: 420px; }
  .page-hero { min-height: 520px; }
  .page-title { font-size: clamp(42px, 12vw, 60px); }
  .space-card, .space-card.wide { min-height: 390px; }
}

/* Sunrise: sovrascritture mirate al sistema Trela. */
.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; padding: 10px 15px; color: #fff; background: var(--pine-2); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #e8a93d; outline-offset: 3px; }
.nav-links a { color: #69584c; }
.brand-copy small { letter-spacing: .12em; }
.btn-primary { box-shadow: 0 14px 30px -16px rgba(79, 43, 22, .68); }
.btn-sun { background: #b86231; }
.btn-sun:hover { background: #914621; }
.btn-light { color: var(--pine-2); }
.home-hero::after { background: linear-gradient(180deg, rgba(45, 28, 18, .39) 0%, rgba(45, 28, 18, .42) 35%, rgba(45, 28, 18, .72) 100%); }
.hero-content { width: min(1080px, 100%); }
.hero-title { max-width: 1020px; font-size: clamp(46px, 7.6vw, 86px); }
.hero-title em { color: #ffe3ad; }
.quick-icon { color: var(--pine); background: #f4e8d7; }
.quick-item b { color: var(--pine-2); }
.note-card { background: rgba(85, 52, 35, .92); }
.mosaic figcaption { background: rgba(82, 47, 28, .84); }
.amenity-card svg { color: var(--sun); }
.honey-section { background: #f6ead8; }
.honey-section .nearby-grid { grid-template-columns: .92fr 1.08fr; align-items: center; }
.honey-section .lead + .lead { margin-top: 24px; }
.honey-photo { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.honey-photo img { height: clamp(340px, 37vw, 560px); object-fit: cover; object-position: 58% 50%; }
.honey-photo span { position: absolute; right: 18px; bottom: 18px; padding: 9px 13px; color: #fff; background: rgba(85, 52, 35, .8); border-radius: 999px; font-size: 11px; font-weight: 700; backdrop-filter: blur(8px); }
.panorama::after { background: linear-gradient(0deg, rgba(65, 35, 22, .83), rgba(65, 35, 22, .08) 75%); }
.nearby-photo-label { background: rgba(85, 52, 35, .9); }
.faq-heading { text-align: center; }
.final-cta::after { background: rgba(53, 31, 20, .67); }
.site-footer { background: var(--pine-2); }
.site-footer .brand-copy b { color: #fff7e9; }
.footer-bottom { color: #d2bfae; }
.footer-bottom a:hover { color: #fff; }
.contact-panel { background: var(--pine-2); }
.page-hero::after { background: linear-gradient(180deg, rgba(45, 28, 18, .25), rgba(45, 28, 18, .76)); }
.season-card::after { background: linear-gradient(0deg, rgba(53, 31, 20, .84), rgba(53, 31, 20, .06) 70%); }
.space-card::after { background: linear-gradient(0deg, rgba(53, 31, 20, .8), transparent 64%); }
.gallery-item::after { background: rgba(85, 52, 35, .65); }
.lightbox { background: rgba(32, 21, 15, .96); }
.photo-credits a { color: var(--pine-2); }
.form-note { line-height: 1.6; }
@media (max-width: 1040px) { .honey-section .nearby-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .home-hero { min-height: 760px; }
  .home-hero-media img { object-position: 64% 50%; }
  .home-hero::after { background: linear-gradient(180deg, rgba(45, 28, 18, .48), rgba(45, 28, 18, .7)); }
  .hero-title { font-size: clamp(40px, 11vw, 60px); }
  .honey-photo img { height: 340px; }
  .honey-photo span { max-width: calc(100% - 36px); }
  .brand-copy small { font-size: 8px; }
}

/* Sunrise in primo piano: materiali di casa, luce miele e fotografie vere. */
:root {
  --snow: #f8f0e5;
  --snow-deep: #efddca;
  --paper: #fffbf5;
  --ink: #35251d;
  --ink-soft: #6f5b4e;
  --pine: #704029;
  --pine-2: #4d2c1e;
  --sage: #b8c9c4;
  --ice: #f3e4d5;
  --sun: #a9572f;
  --sun-soft: #edbb72;
  --line: #e1cbb4;
  --honey: #f1d397;
  --honey-light: #fff1d8;
  --shadow: 0 23px 60px -39px rgba(85, 46, 27, .36);
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Averia Serif Libre", Georgia, serif;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.22, .7, .25, 1);
}

body { background: var(--snow); }
.bg-paper { background: var(--paper); }
.bg-ice { background: var(--ice); }
.kicker::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  background: var(--sun);
  -webkit-mask: url("../assets/brand/sunburst.svg") center / contain no-repeat;
  mask: url("../assets/brand/sunburst.svg") center / contain no-repeat;
}
.kicker.light::before { background: var(--sun-soft); }
.quick-icon {
  color: var(--pine-2);
  background: var(--honey-light);
  border: 1px solid #e9c987;
  box-shadow: inset 0 1px 3px rgba(255,255,255,.75);
}
.quick-icon svg,
.amenity-card svg { stroke-linecap: round; stroke-linejoin: round; }
.quick-item b { font-family: var(--display); font-size: 24px; font-style: normal; font-weight: 700; }

.home-hero { place-items: center; min-height: 78svh; }
.home-hero::after {
  background: linear-gradient(0deg, rgba(8,20,17,.65) 0%, rgba(8,20,17,.2) 40%, transparent 70%);
}
.hero-content { padding: 0 var(--pad); text-align: center; }
.hero-title { max-width: 900px; margin: 0 auto 20px; font-size: clamp(82px, 12vw, 160px); }
.hero-sub { max-width: 590px; margin: 0 auto 28px; }
.hero-actions { justify-content: center; }
.hero-loc { background: transparent; border: none; border-radius: 0; padding: 0; margin-bottom: 20px; }
.btn-sun { background: #9d4929; }
.btn-sun:hover { background: #81391f; }

.home-page .intro-grid > .portrait-stack { order: 2; }
.home-page .portrait-stack { min-height: 570px; }
.home-page .portrait-stack .main-img { inset: 0 10% 8% 0; height: 92%; }
.home-page .portrait-stack .small-img {
  display: block;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--snow);
}
.host-note {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 26px 0 30px;
  padding: 21px 23px;
  background: #fff7eb;
  border: 1px solid #e8cba2;
  border-radius: var(--radius);
  box-shadow: 0 13px 32px -29px rgba(70,38,22,.48);
}
.host-note img { width: 42px; height: 42px; flex: none; }
.host-note p {
  margin: 0 0 12px;
  color: var(--pine-2);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
}
.host-note strong { display: block; font-size: 13px; line-height: 1.3; }
.host-note span { color: var(--ink-soft); font-size: 12px; }

.home-comfort .section-heading { justify-content: center; text-align: center; }
.home-comfort .section-heading > div { max-width: 760px; }
.home-comfort .lead { margin-inline: auto; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 15px;
}
.amenity-card {
  width: auto;
  min-height: 160px;
  padding: 23px;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  border-radius: var(--radius);
  border-color: #e5cdb0;
  background: #fffaf2;
  box-shadow: 0 14px 32px -29px rgba(80,43,25,.35);
}
.amenity-card svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  flex: none;
  color: var(--pine);
  background: var(--honey-light);
  border: 1px solid #ebcf9d;
  border-radius: 50%;
}
.amenity-card h3 { margin: 1px 0 7px; font-size: 15px; white-space: normal; }
.amenity-card p { display: block; margin: 0; font-size: 13px; line-height: 1.55; }

.honey-section { background: #f6e7d0; }
.home-return { min-height: 570px; }
.home-return > img { object-position: 50% 55%; }
.home-return::after { background: linear-gradient(90deg, rgba(46,27,17,.78), rgba(46,27,17,.22) 75%), linear-gradient(0deg, rgba(46,27,17,.55), transparent 70%); }
.home-return .panorama-copy { max-width: 760px; }
.nearby-photo img { width: 100%; max-height: 630px; object-position: center 54%; }
.nearby-photo-label { background: rgba(77,44,30,.93); }
.site-footer, .contact-panel { background: var(--pine-2); }

/* Movimenti discreti: accompagnano il percorso e lasciano spazio alle fotografie. */
.home-hero-media img, .page-hero > img { animation: photo-arrive 1.3s var(--ease) both; }
.hero-loc, .page-chip { animation: copy-arrive .75s .08s var(--ease) both; }
.hero-title, .page-title { animation: copy-arrive .85s .18s var(--ease) both; }
.hero-sub, .page-intro { animation: copy-arrive .85s .32s var(--ease) both; }
.hero-actions { animation: copy-arrive .85s .46s var(--ease) both; }
@keyframes photo-arrive { from { opacity: .6; transform: scale(1.045); } to { opacity: 1; transform: scale(1); } }
@keyframes copy-arrive { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.mosaic figure img, .space-card img, .season-card img, .nearby-photo img, .honey-photo img { transition: transform .75s var(--ease), filter .5s var(--ease); }
@media (hover: hover) {
  .mosaic figure:hover img, .space-card:hover img, .season-card:hover img, .nearby-photo:hover img, .honey-photo:hover img { transform: scale(1.035); }
  .amenity-card:hover, .place-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px -33px rgba(65,35,22,.42); }
  .filter-btn:hover { transform: translateY(-2px); }
}
.amenity-card, .place-card, .filter-btn { transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease); }
.contact-panel[aria-hidden="true"] { visibility: hidden; }
.contact-panel.open { visibility: visible; }
.home-return .panorama-copy { width: min(100%, 1380px); max-width: none; padding-right: var(--pad); }
.home-return .panorama-copy h2 { max-width: 930px; font-size: clamp(42px, 5.3vw, 72px); line-height: 1.04; }
.home-return .panorama-copy h2 span, .home-return .panorama-copy h2 em { white-space: nowrap; }
.page-hero.livigno-hero > img { object-position: center 62%; }
.gallery-grid.filter-esterni .gallery-item { height: 370px; }
.gallery-grid.filter-esterni .gallery-item.wide { height: 450px; }
.gallery-grid.filter-esterni .gallery-item img { object-position: center 45%; }
.gallery-grid.filter-ski-room .gallery-item { grid-column: 1 / -1; height: min(70vw, 620px); }
.gallery-grid.filter-ski-room .gallery-item img { object-position: center 50%; }
.ski-room-section { background: #fff8ed; }
.ski-room-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.ski-room-photo { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.ski-room-photo img { height: 500px; object-fit: cover; object-position: center 44%; transition: transform .75s var(--ease); }
.ski-room-photo span { position: absolute; right: 18px; bottom: 18px; padding: 8px 13px; color: white; background: rgba(77,44,30,.87); border-radius: 999px; font-size: 11px; }
@media (hover: hover) { .ski-room-photo:hover img { transform: scale(1.035); } }

/* Recensioni */
.reviews-section { background: var(--paper); }
.reviews-section .section-heading { align-items: end; }
.review-badges { display: flex; gap: 14px; margin-top: 8px; align-items: center; }
.lang-toggle-btn { padding: 10px 16px; background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; color: var(--ink-soft); transition: .25s; }
.lang-toggle-btn:hover { border-color: var(--pine); background: var(--ice); color: var(--ink); }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--ice);
  border-radius: 999px;
  font-size: 13px;
}
.review-badge svg { width: 22px; height: 22px; color: var(--pine); }
.review-badge b { display: block; font-size: 14px; }
.review-badge small { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.review-carousel { overflow: hidden; margin-top: 40px; }
.review-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.review-carousel:hover .review-carousel-track { animation-play-state: paused; }
.review-carousel .review-card {
  flex: 0 0 340px;
  padding: 28px;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.review-carousel .review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-carousel .review-stars { color: #f0b429; font-size: 18px; letter-spacing: 1px; }
.review-carousel .review-source { font-size: 11px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.review-carousel .review-card[data-review-en] { display: none; }
.review-carousel.show-en .review-card[data-review-it] { display: none; }
.review-carousel.show-en .review-card[data-review-en] { display: block; }

.review-card blockquote { margin: 0 0 18px; }
.review-card blockquote p { font-size: 16px; line-height: 1.6; color: var(--ink); font-style: italic; }
.review-footer { display: flex; flex-direction: column; }
.review-footer strong { font-size: 13px; }
.review-footer span { font-size: 11px; color: var(--ink-soft); }

/* Email fallback modal */
.email-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 60px 24px; background: rgba(6,15,13,.88); visibility: hidden; opacity: 0; transition: opacity .3s; }
.email-modal.open { visibility: visible; opacity: 1; }
.email-modal-backdrop { position: absolute; inset: 0; }
.email-modal-content { position: relative; z-index: 2; width: min(520px, 100%); background: var(--paper); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.email-modal-content h3 { margin: 0 0 8px; font-family: var(--display); font-size: 24px; }
.email-modal-content > p { margin: 0 0 18px; color: var(--ink-soft); font-size: 14px; }
.email-modal-content textarea { width: 100%; min-height: 180px; padding: 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: var(--snow); font-size: 13px; line-height: 1.6; resize: vertical; margin-bottom: 14px; }
.email-modal-content textarea:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(35,86,75,.1); }
.email-modal-actions { display: flex; gap: 10px; align-items: center; }
.email-modal-close-btn { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 22px; cursor: pointer; }
#email-copy-btn { padding: 10px 20px; background: var(--pine); color: white; border: none; border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; }
#email-copy-btn:hover { background: var(--pine-2); }
#email-copy-feedback { font-size: 12px; color: var(--pine); }
.email-modal-open body { overflow: hidden; }

/* Skipass Free */
.skipass-section { padding: clamp(48px, 6vw, 80px) 0; }
.skipass-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
  background: linear-gradient(135deg, var(--honey-light), #fde8c8);
  border: 1px solid #e9c987;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px -26px rgba(120, 64, 41, .25);
}
.skipass-icon { width: 64px; height: 64px; flex: none; display: grid; place-items: center; background: var(--pine); color: white; border-radius: 50%; }
.skipass-icon svg { width: 32px; height: 32px; }
.skipass-copy { flex: 1; }
.skipass-copy h2 { font-family: var(--display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.05; }
.skipass-copy .lead { max-width: 52ch; font-size: clamp(15px, 1.6vw, 17px); }

@media (max-width: 760px) {
  .skipass-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .skipass-copy h2 { font-size: 26px; }
  .skipass-banner .btn { align-self: center; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  z-index: 90;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px -6px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px -6px rgba(37,211,102,.7); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 760px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 1040px) {
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-carousel .review-card { flex: 0 0 300px; }
  .review-badges { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .review-carousel .review-card { flex: 0 0 280px; }
  .review-badges { flex-direction: column; align-items: flex-start; }
}
  .kicker::before {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--sun);
    -webkit-mask: none;
    mask: none;
  }
  .kicker.light::before { background: var(--sun-soft); }
  .home-hero { min-height: 100svh; }
  .home-hero::after { background: linear-gradient(180deg, rgba(42,25,15,.22), rgba(42,25,15,.46) 45%, rgba(40,22,14,.88)); }
  .hero-content { padding-bottom: 115px; }
  .hero-title { font-size: clamp(42px, 11vw, 61px); }
  .home-page .portrait-stack { min-height: 460px; }
  .home-page .intro-grid > .portrait-stack { order: initial; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 130px; }
  .home-return { min-height: 520px; }
  .home-return::after { background: linear-gradient(0deg, rgba(46,27,17,.9), rgba(46,27,17,.18) 82%); }
  .home-return .panorama-copy { padding: 68px var(--pad); }
  .home-return .panorama-copy h2 { font-size: clamp(34px, 9vw, 46px); }
  .home-return .panorama-copy h2 span, .home-return .panorama-copy h2 em { white-space: normal; }
  .gallery-grid.filter-esterni .gallery-item, .gallery-grid.filter-esterni .gallery-item.wide { height: 300px; }
  .gallery-grid.filter-ski-room .gallery-item { height: 460px; }
  .ski-room-feature { grid-template-columns: 1fr; }
  .ski-room-photo img { height: 390px; }
  .email-modal { padding: 40px 16px; }
  .email-modal-content { padding: 24px; }
  .email-modal-content h3 { font-size: 20px; }
}
@media (max-width: 430px) {
  .host-note { gap: 11px; padding: 17px; }
  .host-note img { width: 34px; height: 34px; }
  .host-note p { font-size: 17px; }
  .home-page .portrait-stack .small-img { width: 46%; border-width: 6px; }
}

/* Email fallback modal */
.email-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
}
.email-modal.open { visibility: visible; opacity: 1; }
.email-modal-backdrop { position: absolute; inset: 0; background: rgba(6,15,13,.6); }
.email-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: 85svh;
  overflow-y: auto;
  padding: 36px 32px 30px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.email-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink-soft);
}
.email-modal-close:hover { color: var(--ink); background: var(--snow); }
@media (max-width: 760px) {
  .email-modal-card { padding: 28px 20px 24px; }
}

/* --- Pagina storia di Pamela + posti del cuore (2026-09-23) --- */
.bio-hero > img { object-position: center 8%; }
.bio-couple-stack .main-img { object-position: center 34%; }
.bio-couple-stack .small-img { aspect-ratio: 4 / 3; object-position: center; }

/* Sul desktop il ritratto della hero resta leggibile per intero, con lo stesso scatto
   sfumato a riempire il formato panoramico senza tagliare il volto. */
@media (min-width: 761px) {
  .bio-hero { background: #2f3b3c; }
  .bio-hero::before { content: ""; position: absolute; inset: -24px; z-index: 0; background: url("../assets/site/bio/pamela-ritratto.jpg") center 8% / cover no-repeat; filter: blur(18px); opacity: .72; transform: scale(1.035); }
  .bio-hero > img { z-index: 1; object-fit: contain; object-position: center; transform: scale(1.22); }
  .bio-hero::after { z-index: 2; }
  .bio-hero .page-hero-content { z-index: 3; }
}
.story-quote { position: relative; overflow: hidden; min-height: 560px; display: grid; place-items: center; color: white; text-align: center; border-radius: var(--radius); }
.story-quote > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.story-quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(45,28,18,.88), rgba(45,28,18,.42) 72%); }
.story-quote blockquote { position: relative; z-index: 2; width: min(860px, calc(100% - (var(--pad) * 2))); margin: 0; padding: 76px 0; }
.story-quote p { font-family: var(--serif); font-size: clamp(19px, 2.3vw, 26px); line-height: 1.6; }
.story-quote .quote-final { margin-top: 30px; font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.15; }
.story-quote .quote-final em { color: var(--sun-soft); font-style: italic; font-weight: 500; }
.story-quote .quote-heart { color: var(--sun-soft); }

.cuore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.cuore-card { position: relative; min-height: 440px; overflow: hidden; border-radius: var(--radius); color: white; }
.cuore-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cuore-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(45,28,18,.9), rgba(45,28,18,.04) 68%); }
.cuore-copy { position: absolute; z-index: 2; inset: auto 22px 22px; }
.cuore-copy small { display: block; margin-bottom: 6px; color: var(--sun-soft); font-family: var(--serif); font-style: italic; font-size: 15px; }
.cuore-copy h3 { margin: 0 0 8px; font-size: 22px; }
.cuore-copy p { margin: 0; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.55; }
.cuore-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.cuore-tags span { padding: 5px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; font-size: 11px; }
.cuore-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cuore-group { padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.cuore-group h3 { margin-bottom: 16px; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; color: var(--pine); }
.cuore-item { padding: 16px 0; border-top: 1px solid var(--line); }
.cuore-item:first-of-type { padding-top: 0; border-top: 0; }
.cuore-item h4 { margin: 0 0 4px; font-size: 16px; }
.cuore-item p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; }
.cuore-item .heart { color: var(--sun); }
.cuore-byline { margin: 22px auto 0; color: var(--ink-soft); font-size: 12px; text-align: center; font-family: var(--serif); font-style: italic; }
@media (hover: hover) {
  .cuore-card img { transition: transform .75s var(--ease); }
  .cuore-card:hover img { transform: scale(1.035); }
}
@media (max-width: 900px) {
  .cuore-grid, .cuore-groups { grid-template-columns: 1fr; }
  .cuore-card { min-height: 380px; }
  .story-quote { min-height: 480px; }
}

/* --- GDPR, privacy, form reale, fix foto hero (2026-09-23) --- */
.home-page .hero-title { max-width: 1180px; font-size: clamp(70px, 7.2vw, 110px); line-height: .9; }
@media (max-width: 760px) {
  .home-page .hero-content {
    padding-bottom: 0;
    transform: translateY(36px);
  }
  .home-page .hero-title {
    max-width: 680px;
    font-size: clamp(46px, 13.5vw, 58px);
    line-height: .9;
  }
}

.cookie-banner { position: fixed; inset: auto 0 0 0; z-index: 400; padding: 16px 0; color: white; background: rgba(38,24,17,.97); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.16); box-shadow: 0 -18px 40px -30px rgba(0,0,0,.6); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; max-width: 74ch; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.85); }
.cookie-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.cookie-actions .cookie-privacy { color: var(--sun-soft); }
.cookie-actions .cookie-reject { min-height: 44px; padding: 11px 18px; color: white; border-color: rgba(255,255,255,.55); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.consent input { flex: none; margin-top: 3px; width: 16px; height: 16px; accent-color: var(--pine); }
.consent a { color: var(--pine); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-card.sent { text-align: center; }
.form-card.sent h2 { margin-bottom: 10px; }
.policy-copy { max-width: 840px; }
.policy-copy h1 { margin-bottom: 16px; }
.policy-copy > .lead { margin-bottom: 36px; }
.policy-copy h2 { margin: 36px 0 12px; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.policy-copy p, .policy-copy li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }
.policy-copy p + p { margin-top: 12px; }
.policy-copy ul { margin: 10px 0 0; padding-left: 22px; display: grid; gap: 8px; }
.policy-copy a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; }
.policy-back { margin-top: 46px; }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 760px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; flex-wrap: wrap; gap: 10px; }
  .cookie-actions .cookie-privacy { width: 100%; }
  .cookie-actions .btn { flex: 1 1 145px; }
  .bio-hero { min-height: 320px; }
  .bio-hero > img { object-position: center 5%; }
  .bio-hero .page-hero-content { padding: 110px 0 34px; }
  .bio-couple-stack { display: grid; min-height: 0; gap: 14px; }
  .bio-couple-stack .main-img,
  .bio-couple-stack .small-img { position: relative; inset: auto; display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border: 0; }
}
