@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --red: #9b3026;
  --red-dark: #641912;
  --red-soft: #c65a42;
  --yellow: #f4c82f;
  --yellow-soft: #ffe58b;
  --cream: #f3ead7;
  --paper: #fffaf0;
  --ink: #281d17;
  --muted: #75665c;
  --line: rgba(40, 29, 23, 0.14);
  --white: #fff;
  --shadow: 0 24px 65px rgba(68, 35, 24, 0.16);
  --radius: 26px;
  --container: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
input,
textarea { font: inherit; }

button { color: inherit; }

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 106px 0;
}

.section--paper { background: var(--paper); }
.section--red { background: var(--red-dark); color: var(--white); }
.section--yellow { background: var(--yellow); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--red .eyebrow { color: var(--yellow); }

h1,
h2,
h3,
.brand__name {
  font-family: "Fraunces", Georgia, serif;
}

h1,
h2,
h3,
p { overflow-wrap: break-word; }

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.72;
}

.section--red .lead { color: rgba(255,255,255,.76); }

.kicker {
  color: var(--red);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover { background: var(--red-dark); }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.btn--yellow:hover { background: var(--yellow-soft); }

.btn--outline {
  border-color: currentColor;
  background: transparent;
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.topbar {
  min-height: 38px;
  background: var(--red-dark);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
}
.topbar a:hover { color: var(--yellow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, .98);
  box-shadow: 0 12px 35px rgba(44, 29, 20, .09);
}

.header__inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand__logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.brand__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand__name {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.08;
}

.brand__tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform .2s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__bars {
  position: relative;
}
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle__bars::before { top: -7px; }
.menu-toggle__bars::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 0% 100%, rgba(244, 200, 47, .24), transparent 34%),
    var(--cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  padding: 72px 0 86px;
}

.hero__copy { position: relative; z-index: 2; }

.hero__copy .lead {
  max-width: 650px;
  margin: 28px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero__media {
  position: relative;
  min-height: 545px;
}

.hero__photo {
  width: 100%;
  height: 545px;
  border-radius: 47% 47% 28% 28%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__media::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -28px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--yellow);
  z-index: -1;
}

.hero__badge {
  position: absolute;
  right: -12px;
  bottom: 34px;
  max-width: 245px;
  padding: 17px 20px;
  border-radius: 18px;
  background: rgba(255,250,240,.94);
  box-shadow: 0 17px 45px rgba(40,29,23,.2);
  backdrop-filter: blur(10px);
}

.hero__badge strong {
  display: block;
  color: var(--red);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__badge span {
  display: block;
  margin-top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-strip {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.event-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: stretch;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-fact {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.event-fact small {
  display: block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-fact strong {
  display: block;
  margin-top: 5px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.event-strip__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.split--reverse { grid-template-columns: 1.12fr .88fr; }

.split__copy > :first-child { margin-top: 0; }

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
}

.photo-card__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(255,250,240,.92);
  backdrop-filter: blur(10px);
}

.photo-card__caption strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.photo-card__caption span {
  color: var(--muted);
  font-size: .88rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.42);
}

.stat strong {
  display: block;
  color: var(--red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .86rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.card {
  padding: 32px;
  border-radius: 24px;
  background: var(--cream);
}

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

.card__index {
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.card h3 { margin-top: 42px; }

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  grid-auto-rows: 250px;
  gap: 16px;
  margin-top: 45px;
}

.mosaic__item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
}

.mosaic__item--tall { grid-row: span 2; }
.mosaic__item--wide { grid-column: span 2; }

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.mosaic__item:hover img { transform: scale(1.035); }

.mosaic__item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(40,29,23,.78);
  color: var(--white);
  font-size: .82rem;
  text-align: left;
  backdrop-filter: blur(8px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}

.section-heading .lead {
  max-width: 520px;
  margin: 0;
}

.taste-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--red-dark);
  color: var(--white);
}

.taste-panel__copy { padding: clamp(42px, 6vw, 78px); }

.taste-panel__copy p:not(.eyebrow) { color: rgba(255,255,255,.77); }

.taste-panel__image {
  min-height: 520px;
}

.taste-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: rgba(244,200,47,.13);
}

.notice strong { color: var(--red-dark); }
.section--red .notice strong { color: var(--yellow); }

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 50px;
  padding: 58px 64px;
  border-radius: 30px;
  background: var(--yellow);
}

.cta-band h2 { font-size: clamp(2.4rem, 4vw, 4rem); }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.inner-hero {
  position: relative;
  min-height: 535px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.inner-hero__media,
.inner-hero__media::after {
  position: absolute;
  inset: 0;
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(35,22,17,.88) 0%, rgba(35,22,17,.54) 52%, rgba(35,22,17,.2) 100%);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  max-width: 890px;
  padding: 100px 0 76px;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.inner-hero .lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
}

.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--yellow); }

.richtext {
  color: var(--muted);
  font-size: 1.04rem;
}

.richtext h2,
.richtext h3 { color: var(--ink); }

.richtext h2 { margin: 65px 0 22px; }
.richtext h3 { margin: 34px 0 15px; }
.richtext p { margin: 0 0 20px; }
.richtext ul { padding-left: 22px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.timeline__step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 19px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.timeline__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.timeline__step h3 { font-size: 1.45rem; }
.timeline__step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quote {
  margin: 42px 0;
  padding: 36px;
  border-radius: 24px;
  background: var(--red-dark);
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.25;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.detail-list__item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list__item strong { color: var(--red); }

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
}

.gallery-card:nth-child(1) { grid-column: span 7; min-height: 490px; }
.gallery-card:nth-child(2) { grid-column: span 5; min-height: 490px; }
.gallery-card:nth-child(3) { grid-column: span 4; }
.gallery-card:nth-child(4) { grid-column: span 4; }
.gallery-card:nth-child(5) { grid-column: span 4; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-card:hover img { transform: scale(1.03); }

.gallery-card__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(40,29,23,.78);
  color: var(--white);
  text-align: left;
  backdrop-filter: blur(8px);
}

.gallery-card__caption strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
}

.gallery-card__caption span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17,12,10,.94);
}

.lightbox.is-open { display: flex; }

.lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
}

.lightbox__image {
  width: 100%;
  max-height: 82vh;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox__caption {
  margin: 12px 0 0;
  color: var(--white);
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { top: 50%; left: 12px; transform: translateY(-50%); }
.lightbox__next { top: 50%; right: 12px; transform: translateY(-50%); }

.route-map {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.route-map img { width: 100%; }

.route-map__caption {
  padding: 18px 22px;
  color: var(--muted);
  font-size: .88rem;
}

.tasting-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.tasting-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: var(--paper);
}

.tasting-card__stage {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.tasting-card h3 { margin-top: 28px; }
.tasting-card p { color: var(--muted); }

.tasting-card__pairing {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 42px;
}

.contact-layout > * { min-width: 0; }

.contact-panel {
  padding: 38px;
  border-radius: 26px;
  background: var(--red-dark);
  color: var(--white);
}

.contact-panel h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }

.contact-items {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.contact-item small {
  display: block;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 1.02rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  color: var(--white);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.social-button:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.form-card {
  padding: 38px;
  border-radius: 26px;
  background: var(--paper);
}

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

.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: .88rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 13px 15px;
  color: var(--ink);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(244,200,47,.45);
  border-color: var(--red);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .86rem;
  color: var(--muted);
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.is-visible { display: block; }
.form-status--success { background: #e4f4e6; color: #195d26; }
.form-status--error { background: #fbe5e2; color: #7c211a; }

.map-shell {
  min-height: 465px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #e7d29d, #f8edcf);
}

.map-consent {
  min-height: 465px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.map-consent__box {
  max-width: 480px;
}

.map-consent__box p { color: var(--muted); }

.map-shell iframe {
  width: 100%;
  min-height: 465px;
  border: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, .3fr) minmax(0, .7fr);
  gap: 70px;
}

.policy-nav {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
}

.policy-nav strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
}

.policy-nav a:hover { color: var(--red); }

.floating-social {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 80;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.floating-social a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(40,29,23,.22);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.floating-social a:hover {
  transform: translateX(-3px);
  background: var(--red);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr;
  gap: 70px;
  padding: 72px 0 58px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.footer__brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.63);
  font-size: .85rem;
}

.footer__copy {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.68);
}

.footer__title {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 9px;
}

.footer__links a,
.footer__links button {
  width: fit-content;
  border: 0;
  background: none;
  padding: 0;
  color: rgba(255,255,255,.77);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer__links a:hover,
.footer__links button:hover { color: var(--yellow); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: .78rem;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  width: min(470px, calc(100% - 44px));
  display: none;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(40,29,23,.25);
}

.cookie-banner.is-visible { display: block; }

.cookie-banner h2 {
  font-size: 1.65rem;
  letter-spacing: -.02em;
}

.cookie-banner p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: .9rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}


.section--flush-top { padding-top: 0; }
.section-heading--spaced { margin-bottom: 44px; }
.section-followup { margin-top: 28px; }
.form-title { margin-bottom: 26px; font-size: clamp(2.25rem, 4vw, 3.8rem); }


/* Home: sezione storia e racconto unitario */
.home-history {
  padding-bottom: 90px;
}

.home-history__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.home-history__copy {
  max-width: 560px;
}

.home-history__link {
  margin: 26px 0 0;
}

.home-history__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.home-history__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 48%;
}

.home-history__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(255,250,240,.94);
  backdrop-filter: blur(10px);
}

.home-history__media figcaption strong {
  flex: 0 0 auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
}

.home-history__media figcaption span {
  color: var(--muted);
  font-size: .86rem;
  text-align: right;
}


.home-pillars {
  padding-top: 22px;
}

.home-pillars__panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 96px);
  padding: clamp(48px, 6vw, 76px);
  border-radius: 30px;
  background: var(--red-dark);
  color: var(--white);
}

.home-pillars__intro {
  align-self: start;
}

.home-pillars__intro .eyebrow {
  color: var(--yellow);
}

.home-pillars__intro h2 {
  max-width: 560px;
}

.home-pillars__intro > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
}

.home-pillars__list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.home-pillar {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.home-pillar > span {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.home-pillar h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.25vw, 1.9rem);
}

.home-pillar p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
}

@media (max-width: 1080px) {
  .nav { gap: 17px; }
  .nav a { font-size: .84rem; }
  .brand__tagline { display: none; }
  .hero__inner { grid-template-columns: minmax(0,1fr) minmax(370px,.85fr); }
  .floating-social { display: none; }
  .footer__main { gap: 40px; }
  .home-history__grid { gap: 48px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header__inner { min-height: 82px; }
  .brand__logo { width: 58px; height: 58px; }
  .brand__name { font-size: 1.05rem; }
  .menu-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    overflow-y: auto;
    padding: 35px 24px;
    background: var(--paper);
  }

  .nav.is-open {
    display: grid;
    grid-auto-rows: min-content;
    gap: 4px;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.65rem;
  }

  .nav a::after { display: none; }

  .hero { min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 65px 0 95px;
  }
  .hero__media { min-height: 440px; }
  .hero__photo { height: 440px; }
  .hero__badge { right: 15px; }

  .event-strip { margin-top: -60px; }
  .event-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .event-strip__cta { grid-column: 1 / -1; }

  .section { padding: 82px 0; }
  .split,
  .split--reverse,
  .taste-panel,
  .cta-band,
  .contact-layout,
  .policy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .split--reverse .split__media { order: -1; }
  .photo-card img { min-height: 430px; }
  .cards,
  .tasting-cards { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item--tall { grid-row: auto; }
  .mosaic__item--wide { grid-column: span 2; }
  .section-heading { align-items: start; flex-direction: column; }
  .taste-panel__image { min-height: 420px; }
  .cta-band { padding: 44px; }
  .cta-band__actions { justify-content: flex-start; }

  .timeline { grid-template-columns: 1fr; }
  .gallery-card:nth-child(n) { grid-column: span 6; min-height: 360px; }
  .gallery-card:nth-child(1) { grid-column: 1 / -1; min-height: 470px; }

  .policy-nav { position: static; }
  .home-history__grid,
  .home-pillars__panel { grid-template-columns: 1fr; }
  .home-history__copy { max-width: 760px; }
  .home-history__media img { aspect-ratio: 16 / 9; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand__text { max-width: 205px; }
  .brand__name { font-size: .98rem; }
  .hero__inner { padding-top: 48px; }
  .hero__media,
  .hero__photo { height: 370px; min-height: 370px; }
  .hero__photo { border-radius: 42% 42% 25% 25%; }
  .hero__badge {
    right: 10px;
    bottom: 16px;
    max-width: 205px;
    padding: 13px 15px;
  }
  .hero__badge span { font-size: 1.05rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .event-strip__inner { grid-template-columns: 1fr; }
  .event-fact {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .event-strip__cta { grid-column: auto; }
  .stats { grid-template-columns: 1fr; }
  .photo-card img { min-height: 350px; }
  .home-history { padding-bottom: 72px; }
  .home-history__media figcaption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .home-history__media figcaption span { text-align: left; }
  .home-pillars { padding-top: 0; }
  .home-pillars__panel { padding: 36px 24px; }
  .home-pillar { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 265px; }
  .mosaic__item--wide { grid-column: auto; }
  .cta-band { padding: 34px 25px; }
  .inner-hero { min-height: 460px; }
  .inner-hero__content { padding: 85px 0 55px; }
  .timeline__step { grid-template-columns: 44px 1fr; padding: 21px; }
  .timeline__number { width: 44px; height: 44px; }
  .detail-list__item { grid-template-columns: 1fr; gap: 4px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:nth-child(n) { grid-column: auto; min-height: 330px; }
  .lightbox { padding: 14px; }
  .lightbox__prev,
  .lightbox__next { top: auto; bottom: 54px; transform: none; }
  .form-card,
  .contact-panel { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .footer__main { grid-template-columns: 1fr; gap: 35px; padding: 55px 0 42px; }
  .footer__main > :first-child { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { right: 14px; bottom: 14px; width: calc(100% - 28px); }
}

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