:root {
  --ink: #0c2d37;
  --ink-deep: #08232a;
  --paper: #f6f3ed;
  --white: #fffdf8;
  --gold: #e7b62d;
  --pink: #d95573;
  --red: #d74d32;
  --green: #7c9a4b;
  --blue: #4b9bb6;
  --line: rgba(12, 45, 55, 0.2);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 80px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: min-height 250ms ease, background 250ms ease, color 250ms ease;
}

.site-header.is-fixed {
  position: fixed;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--ink);
  background: rgba(246, 243, 237, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(8, 35, 42, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  grid-template-columns: 32px auto auto;
  align-items: center;
  column-gap: 11px;
  line-height: 0.8;
}

.brand-mark {
  display: flex;
  height: 38px;
  align-items: flex-end;
  gap: 3px;
}

.brand-mark i {
  display: block;
  width: 5px;
  height: 25px;
  background: currentColor;
  border-radius: 70% 10% 55% 25%;
  transform: rotate(-4deg);
}

.brand-mark i:nth-child(2) {
  height: 34px;
  transform: rotate(3deg);
}

.brand-mark i:nth-child(3) {
  height: 29px;
  transform: rotate(-2deg);
}

.brand-mark i:nth-child(4) {
  height: 37px;
  transform: rotate(5deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -1px;
}

.brand-hotel {
  align-self: end;
  padding: 0 0 2px 14px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-left: 1px solid currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 14px;
  font-weight: 500;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 7px;
  background: none;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 200ms ease;
}

.section {
  position: relative;
  padding: 130px clamp(24px, 7vw, 112px);
  overflow: hidden;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 55px;
  color: rgba(12, 45, 55, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-kicker p {
  margin: 0;
}

.section-kicker-light {
  color: rgba(255, 253, 248, 0.7);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 950px;
  margin-bottom: 32px;
  font-size: clamp(58px, 7.5vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
}

h1 em,
h2 em {
  font-weight: 400;
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.light {
  color: rgba(255, 253, 248, 0.78);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-bright {
  color: var(--ink);
  background: var(--white);
}

.button-bright:hover {
  color: var(--white);
  background: var(--ink);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-deep);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.light-link {
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding: 165px clamp(24px, 7vw, 112px) 110px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("images/hotel/hero-final.webp");
  background-position: center 48%;
  background-size: cover;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 25, 28, 0.22), transparent 68%),
    linear-gradient(0deg, rgba(4, 25, 28, 0.12), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1060px);
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 112px);
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-note-number {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-cue i {
  width: 45px;
  height: 1px;
  background: currentColor;
}

@keyframes hero-in {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.intro {
  background: var(--paper);
}

.watercolor {
  position: absolute;
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.68;
}

.watercolor::after {
  position: absolute;
  inset: 7% -4% -6% 5%;
  background: inherit;
  content: "";
  filter: blur(12px);
  opacity: 0.46;
  transform: rotate(18deg);
}

.watercolor-pink {
  top: 45px;
  right: -90px;
  width: 330px;
  height: 150px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217, 85, 115, 0.45), transparent 65%),
    radial-gradient(ellipse at 60% 30%, rgba(215, 77, 50, 0.48), transparent 64%),
    radial-gradient(ellipse at 80% 70%, rgba(231, 182, 45, 0.5), transparent 62%);
  transform: rotate(-12deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 7vw;
  align-items: start;
}

.intro-copy {
  padding-top: 13px;
}

.intro-copy > p:not(.lead) {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(12, 45, 55, 0.7);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 95px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 36px;
  border-right: 1px solid var(--line);
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.facts span {
  color: rgba(12, 45, 55, 0.58);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(55px, 7vw, 115px);
  color: var(--white);
  background: var(--ink);
}

.hotel-gallery {
  position: relative;
  min-height: 720px;
}

.hotel-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.hotel-photo img {
  height: 100%;
  object-fit: cover;
}

.hotel-photo-main {
  top: 0;
  left: 0;
  width: 77%;
  height: 76%;
}

.hotel-photo-pool {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 42%;
  border: 12px solid var(--ink);
}

.gallery-caption {
  position: absolute;
  bottom: 4%;
  left: 0;
  max-width: 130px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hotel-content {
  align-self: center;
}

.hotel-content .lead {
  max-width: 590px;
  color: rgba(255, 253, 248, 0.88);
}

.amenities {
  margin: 50px 0 45px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.amenities li {
  display: flex;
  min-height: 57px;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.amenities span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.gallery {
  background: var(--paper);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.48fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 75px;
}

.gallery-heading h2,
.gallery-heading p {
  margin-bottom: 0;
}

.gallery-heading > div > p:first-child {
  color: rgba(12, 45, 55, 0.7);
}

.gallery-heading .gallery-disclaimer {
  margin-top: 20px;
  padding-top: 14px;
  color: rgba(12, 45, 55, 0.48);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  min-height: 1020px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  text-align: left;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(4, 25, 28, 0.58), transparent);
  content: "";
  pointer-events: none;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 250ms ease;
}

.gallery-item:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  font-family: var(--serif);
  font-size: 19px;
}

.gallery-item-main { grid-area: 1 / 1 / 3 / 7; }
.gallery-item-facade { grid-area: 1 / 7 / 2 / 10; }
.gallery-item-pool { grid-area: 1 / 10 / 2 / 13; }
.gallery-item-room-green { grid-area: 2 / 7 / 3 / 10; }
.gallery-item-room-purple { grid-area: 2 / 10 / 3 / 13; }
.gallery-item-tower { grid-area: 3 / 1 / 4 / 4; }
.gallery-item-vineyards { grid-area: 3 / 4 / 4 / 7; }
.gallery-item-breakfast { grid-area: 3 / 7 / 4 / 10; }
.gallery-item-lounge { grid-area: 3 / 10 / 4 / 13; }

.gallery-all {
  z-index: 2;
  display: flex;
  grid-area: 2 / 1 / 3 / 7;
  width: fit-content;
  height: fit-content;
  align-self: end;
  align-items: center;
  gap: 22px;
  margin: 0 0 24px 24px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(4, 25, 28, 0.16);
}

.gallery-all strong {
  color: rgba(12, 45, 55, 0.48);
  font-size: 8px;
  font-weight: 500;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: rgba(4, 25, 28, 0.98);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(4, 25, 28, 0.94);
}

body:has(.lightbox[open]) {
  overflow: hidden;
}

.lightbox-bar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox-bar p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  color: var(--ink);
  background: var(--white);
}

.lightbox-close {
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  font-family: var(--serif);
  font-size: 28px;
}

.lightbox-stage {
  display: grid;
  height: 100%;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 30px;
  padding: 100px clamp(20px, 4vw, 60px) 35px;
}

.lightbox-stage figure {
  display: flex;
  height: 100%;
  min-height: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 180px);
  object-fit: contain;
}

.lightbox-stage figcaption {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 17px;
}

.lightbox-arrow {
  width: 52px;
  height: 52px;
  font-size: 20px;
}

.shop {
  background: var(--white);
}

.watercolor-yellow {
  top: 55px;
  left: 52%;
  width: 270px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(231, 182, 45, 0.65), transparent 68%);
  transform: rotate(18deg);
}

.watercolor-red {
  right: -70px;
  bottom: 25%;
  width: 260px;
  height: 130px;
  background: radial-gradient(ellipse, rgba(215, 77, 50, 0.55), transparent 67%);
  transform: rotate(-15deg);
}

.shop-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.52fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 85px;
}

.shop-heading h2,
.shop-heading p {
  margin-bottom: 0;
}

.shop-heading p {
  max-width: 500px;
  color: rgba(12, 45, 55, 0.68);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card:nth-child(even) {
  padding-top: 55px;
}

.product-image {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
}

.product-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 25, 28, 0.35), transparent 45%);
  content: "";
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-image span {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.product-copy {
  padding-top: 25px;
}

.product-copy h3 {
  margin-bottom: 12px;
}

.product-copy p {
  color: rgba(12, 45, 55, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.shop-note {
  width: fit-content;
  margin: 75px auto 0;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.place {
  display: grid;
  min-height: 700px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  color: var(--white);
  background: #355c55;
}

.place-content {
  align-self: center;
}

.place-content > p {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.75);
}

.place-map {
  position: relative;
  min-height: 560px;
  align-self: center;
  isolation: isolate;
}

.map-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-water {
  fill: #4b9bb6;
  fill-opacity: 0.93;
}

.map-peninsula {
  fill: #355c55;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.map-roads {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-dasharray: 5 7;
  stroke-width: 1.2;
}

.map-rings {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.map-water-name {
  fill: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  transform: rotate(-5deg);
  transform-origin: 575px 112px;
}

.map-place {
  position: absolute;
  z-index: 2;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.12;
  white-space: nowrap;
}

.map-place i {
  position: absolute;
  top: 5px;
  left: -11px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.map-place small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-lonato { top: 46%; left: 5%; }
.place-desenzano { top: 30%; left: 23%; }
.place-sirmione { top: 15%; left: 56%; }
.place-peschiera { top: 48%; right: 1%; }
.place-pozzolengo { top: 71%; left: 67%; }
.place-castellaro { bottom: 2%; left: 66%; }
.place-monzambano { top: 83%; right: 0; }
.place-tower {
  top: 52%;
  left: 55%;
  text-align: right;
  transform: translateX(-100%);
}

.place-tower i {
  right: -13px;
  left: auto;
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 59%;
  left: 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.map-pin span {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.map-pin strong {
  margin-top: 9px;
  padding: 7px 10px 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 8px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-pin strong small {
  display: block;
  margin-top: 4px;
  color: rgba(12, 45, 55, 0.55);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.map-north,
.map-distance-note {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-north {
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-north span {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.map-distance-note {
  bottom: 8px;
  left: 0;
}

.request {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  background: var(--paper);
}

.request-heading {
  align-self: start;
}

.request-heading > p {
  max-width: 460px;
  color: rgba(12, 45, 55, 0.68);
}

.request-form {
  padding: 45px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(8, 35, 42, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.request-form label {
  display: block;
  margin-bottom: 25px;
}

.request-form label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(12, 45, 55, 0.65);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-form label small {
  font-size: inherit;
  font-weight: 400;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 12px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--ink);
}

.request-form textarea {
  resize: vertical;
}

.request-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 15px 0 0;
  color: rgba(12, 45, 55, 0.55);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 45px;
  padding: 80px clamp(24px, 7vw, 112px) 32px;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-brand .brand-name {
  display: block;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 0.75;
}

.footer-brand p {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column address,
.footer-column > a {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-style: normal;
}

.footer-column > a:hover {
  color: var(--gold);
}

.footer-nav a {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    min-height: 84px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 9vw;
    color: var(--white);
    background: var(--ink-deep);
    font-family: var(--serif);
    font-size: clamp(34px, 6vw, 60px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav .nav-cta {
    margin-top: 25px;
    font-family: var(--sans);
    font-size: 12px;
  }

  .menu-open .menu-toggle {
    color: var(--white);
  }

  .menu-open .menu-toggle > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-note {
    display: none;
  }

  .hotel {
    grid-template-columns: 1fr;
  }

  .hotel-gallery {
    min-height: 600px;
  }

  .hotel-content {
    width: min(100%, 700px);
  }

  .gallery-grid {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 520px repeat(4, 300px);
  }

  .gallery-item-main { grid-area: 1 / 1 / 2 / 3; }
  .gallery-item-facade { grid-area: 2 / 1 / 3 / 2; }
  .gallery-item-pool { grid-area: 2 / 2 / 3 / 3; }
  .gallery-item-room-green { grid-area: 3 / 1 / 4 / 2; }
  .gallery-item-room-purple { grid-area: 3 / 2 / 4 / 3; }
  .gallery-item-tower { grid-area: 4 / 1 / 5 / 2; }
  .gallery-item-vineyards { grid-area: 4 / 2 / 5 / 3; }
  .gallery-item-breakfast { grid-area: 5 / 1 / 6 / 2; }
  .gallery-item-lounge { grid-area: 5 / 2 / 6 / 3; }
  .gallery-all { grid-area: 1 / 1 / 2 / 3; }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }

  .product-card:nth-child(even) {
    padding-top: 45px;
  }

  .place {
    grid-template-columns: 1fr;
  }

  .place-content {
    width: min(100%, 720px);
  }

  .place-map {
    width: 100%;
  }

  .request {
    grid-template-columns: 1fr;
  }

  .request-heading {
    width: min(100%, 720px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header,
  .site-header.is-fixed {
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand {
    grid-template-columns: 23px auto;
    column-gap: 8px;
  }

  .brand-mark {
    height: 31px;
    gap: 2px;
  }

  .brand-mark i {
    width: 4px;
    height: 20px;
  }

  .brand-mark i:nth-child(2) { height: 28px; }
  .brand-mark i:nth-child(3) { height: 24px; }
  .brand-mark i:nth-child(4) { height: 30px; }

  .brand-name {
    font-size: 20px;
  }

  .brand-hotel {
    display: none;
  }

  .section {
    padding: 88px 22px;
  }

  .section-kicker {
    margin-bottom: 37px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 74px);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
    padding: 130px 22px 85px;
  }

  .hero-media {
    background-position: 86% center;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .shop-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .facts {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .facts div,
  .facts div:first-child {
    min-height: 100px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }

  .hotel {
    gap: 65px;
  }

  .hotel-gallery {
    min-height: 430px;
  }

  .hotel-photo-main {
    width: 88%;
    height: 78%;
  }

  .hotel-photo-pool {
    width: 58%;
    height: 42%;
    border-width: 8px;
  }

  .gallery-caption {
    display: none;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .gallery-grid {
    display: flex;
    min-height: 0;
    margin-right: -22px;
    padding-right: 22px;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    height: 470px;
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .gallery-all {
    width: auto;
    height: 470px;
    flex: 0 0 150px;
    align-self: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    color: var(--white);
    background: var(--ink);
    box-shadow: none;
    scroll-snap-align: start;
  }

  .gallery-all strong {
    color: rgba(255, 255, 255, 0.55);
  }

  .lightbox-stage {
    display: flex;
    padding: 90px 18px 90px;
  }

  .lightbox-stage figure {
    width: 100%;
  }

  .lightbox-stage img {
    max-height: calc(100dvh - 210px);
  }

  .lightbox-arrow {
    position: absolute;
    z-index: 3;
    bottom: 22px;
  }

  .lightbox-prev { left: 22px; }
  .lightbox-next { right: 22px; }

  .shop-heading {
    margin-bottom: 55px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-card:nth-child(even) {
    padding-top: 0;
  }

  .product-image {
    aspect-ratio: 0.9;
  }

  .shop-note {
    text-align: center;
  }

  .place {
    gap: 40px;
  }

  .place-map {
    min-height: 540px;
  }

  .map-place {
    font-size: 11px;
  }

  .map-place small {
    font-size: 6px;
  }

  .place-lonato { top: 46%; left: 3%; }
  .place-desenzano { top: 31%; left: 15%; }
  .place-sirmione { top: 16%; left: 55%; }
  .place-peschiera { top: 47%; right: -1%; }
  .place-pozzolengo { top: 72%; left: 63%; }
  .place-castellaro { bottom: 2%; left: 54%; }
  .place-monzambano { top: 84%; right: -1%; }
  .place-tower { top: 51%; left: 55%; }

  .map-pin {
    top: 59%;
    left: 58%;
  }

  .request-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 45px 24px;
    padding: 70px 22px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-nav {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
