@font-face {
  font-family: "Colossalis";
  src: url("../fonts/Colossalis-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Colossalis";
  src: url("../fonts/Colossalis-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --wine: #671b30;
  --wine-deep: #280a14;
  --cream: #fff7ea;
  --paper: #fcf7ef;
  --ink: #21191a;
  --muted: #74696a;
  --gold: #e2ad46;
  --line-light: rgba(255, 247, 234, 0.26);
  --line-dark: rgba(103, 27, 48, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
}

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

button {
  font: inherit;
}

.slider-page {
  min-height: 100svh;
}

.concept-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 25px 48px;
  border-bottom: 1px solid transparent;
}

.concept-header.light-line {
  border-bottom-color: var(--line-light);
}

.concept-header.dark {
  border-bottom-color: var(--line-dark);
}

.concept-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: "Colossalis", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}

.concept-header.dark .concept-brand,
.concept-header.dark .concept-nav,
.concept-header.dark .menu-toggle {
  color: var(--wine);
}

.concept-header.dark .concept-brand img {
  background: var(--wine);
}

.concept-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
}

.concept-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
}

.concept-nav a {
  position: relative;
  padding: 10px 0;
}

.concept-nav a[aria-current="page"]::after,
.concept-nav a:hover::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  content: "";
}

.nav-order {
  padding: 13px 22px !important;
  border: 1px solid var(--gold);
  border-radius: 4px;
}

.nav-order::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentcolor;
  border-radius: 4px;
  background: transparent;
  color: var(--cream);
  font-size: 20px;
}

.hero-slider {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 92svh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 2px;
  background: currentcolor;
  content: "";
}

h1,
.slide-title {
  margin: 0;
  color: inherit;
  font-family: "Colossalis", Georgia, serif;
  font-size: 82px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 485px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--wine-deep);
}

.hero-btn-secondary {
  border-color: currentcolor;
}

.slider-ui {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cream);
}

.slider-ui.dark {
  color: var(--wine);
}

.slide-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentcolor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.slide-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--wine-deep);
}

.slide-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-dot {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: currentcolor;
  cursor: pointer;
  opacity: 0.34;
}

.slide-dot.is-active {
  background: var(--gold);
  opacity: 1;
}

.peek-band {
  display: flex;
  min-height: 8svh;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 18px 30px;
  background: var(--cream);
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.peek-band span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.peek-band span:not(:last-child)::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

/* Proposal 1: photographic editorial */
.editorial-slide {
  align-items: flex-end;
  color: var(--cream);
  background: var(--wine-deep);
}

.editorial-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 8, 13, 0.9) 0%, rgba(25, 8, 13, 0.64) 39%, rgba(25, 8, 13, 0.12) 73%),
    linear-gradient(0deg, rgba(25, 8, 13, 0.72), transparent 38%);
  content: "";
}

.editorial-slide .slide-photo {
  object-position: center 40%;
}

.editorial-copy {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
  padding: 168px 0 82px;
}

.editorial-note {
  position: absolute;
  right: 48px;
  bottom: 116px;
  z-index: 3;
  width: 295px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 247, 234, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.editorial-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: "Colossalis", Georgia, serif;
  font-size: 21px;
  text-transform: uppercase;
}

/* Proposal 2: contemporary showcase */
.showcase-page {
  background: var(--wine);
}

.showcase-slider {
  background:
    radial-gradient(circle at 79% 48%, rgba(226, 173, 70, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(103, 27, 48, 0.97) 0%, rgba(103, 27, 48, 0.94) 52%, rgba(66, 14, 29, 0.95) 100%),
    url("../images/baccus-hero-1.jpg") center / cover;
}

.showcase-slide {
  align-items: center;
  color: var(--cream);
}

.showcase-slide::before {
  position: absolute;
  top: 114px;
  left: 48px;
  color: rgba(255, 247, 234, 0.06);
  font-family: "Colossalis", Georgia, serif;
  font-size: 132px;
  font-weight: 700;
  content: attr(data-mark);
}

.showcase-grid {
  position: relative;
  display: grid;
  z-index: 2;
  width: min(1240px, calc(100% - 96px));
  align-items: center;
  margin: 0 auto;
  padding: 98px 0 74px;
  gap: 50px;
  grid-template-columns: minmax(440px, 44%) minmax(0, 1fr);
}

.showcase-copy h1,
.showcase-copy .slide-title {
  font-size: 72px;
}

.showcase-copy .hero-copy {
  max-width: 455px;
  color: rgba(255, 247, 234, 0.84);
}

.showcase-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.showcase-perks span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 234, 0.19);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-perks i {
  color: var(--gold);
}

.showcase-copy .hero-actions {
  margin-top: 29px;
}

.showcase-art {
  position: relative;
  height: 496px;
}

.showcase-product {
  position: absolute;
  inset: 0;
  color: var(--cream);
  isolation: isolate;
}

.showcase-product::before {
  position: absolute;
  top: 27px;
  right: 58px;
  width: 393px;
  height: 393px;
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 234, 0.15) 0%, rgba(255, 247, 234, 0.04) 57%, transparent 70%);
  content: "";
}

.showcase-product::after {
  position: absolute;
  right: 34px;
  bottom: 68px;
  width: 466px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 173, 70, 0.74) 27%, rgba(255, 247, 234, 0.3) 78%, transparent);
  content: "";
}

.shop-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  left: auto;
  z-index: 3;
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 234, 0.44);
  background: rgba(40, 10, 20, 0.28);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-art img {
  position: absolute;
  top: 10px;
  right: 26px;
  bottom: 30px;
  z-index: 1;
  width: calc(100% - 48px);
  height: calc(100% - 40px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 29px 29px rgba(20, 4, 9, 0.38));
}

.showcase-art .wide-pack {
  right: 34px;
  bottom: 37px;
  width: calc(100% - 18px);
  height: calc(100% - 54px);
}

.showcase-art .single-bottle {
  bottom: 44px;
  transform: scale(1.17);
  transform-origin: center bottom;
}

.showcase-art .showcase-scene {
  top: 48px;
  right: 0;
  bottom: 80px;
  width: min(100%, 590px);
  height: 340px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  object-fit: cover;
  object-position: center;
}

.showcase-buy {
  position: absolute;
  right: 0;
  bottom: 31px;
  left: auto;
  z-index: 3;
  display: flex;
  width: 318px;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 16px 15px 20px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  box-shadow: 0 21px 36px rgba(25, 5, 12, 0.25);
}

.showcase-buy small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-buy strong {
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-buy a {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--wine-deep);
}

.showcase-buy a:hover {
  background: var(--wine);
  color: var(--cream);
}

.showcase-ui {
  right: auto;
  left: 48px;
  bottom: 27px;
  gap: 14px;
}

.showcase-tabs {
  display: flex;
  border: 1px solid var(--line-light);
}

.showcase-tab {
  display: flex;
  width: 126px;
  height: 52px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 0 12px;
  border-left: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 247, 234, 0.7);
  opacity: 1;
}

.showcase-tab:first-child {
  border-left: 0;
}

.showcase-tab.is-active {
  background: var(--cream);
  color: var(--wine);
}

.showcase-tab b {
  color: var(--gold);
  font-family: "Colossalis", Georgia, serif;
  font-size: 16px;
  line-height: 1;
}

.showcase-tab span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-assurance {
  display: flex;
  min-height: 8svh;
  align-items: center;
  justify-content: center;
  gap: 66px;
  padding: 15px 30px;
  background: var(--cream);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-assurance span,
.showcase-assurance a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.showcase-assurance i {
  color: var(--gold);
}

.showcase-assurance a {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--wine);
}

.client-story,
.client-locations,
.online-strip {
  background: var(--paper);
  color: var(--wine);
}

.client-story {
  display: grid;
  align-items: center;
  gap: 54px;
  padding: 92px max(48px, calc((100vw - 1240px) / 2)) 82px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.client-story .hero-kicker,
.client-locations .hero-kicker,
.online-strip .hero-kicker {
  color: var(--gold);
}

.client-story h2,
.location-heading h2,
.online-strip h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 54px;
  line-height: 0.98;
  text-transform: uppercase;
}

.client-story p {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.58;
}

.client-story .hero-btn {
  margin-top: 31px;
}

.client-story-visual {
  position: relative;
  min-height: 455px;
  overflow: hidden;
}

.client-story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-locations {
  display: grid;
  gap: 42px;
  align-items: start;
  padding: 86px max(48px, calc((100vw - 1240px) / 2)) 96px;
  border-top: 1px solid rgba(255, 248, 235, 0.14);
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 173, 70, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(103, 27, 48, 0.98), rgba(40, 10, 20, 0.99));
  color: var(--cream);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.client-locations .hero-kicker {
  color: var(--gold);
}

.client-locations .location-heading h2 {
  color: var(--cream);
}

.location-heading {
  position: sticky;
  top: 116px;
}

.location-heading p:not(.hero-kicker) {
  max-width: 395px;
  margin: 24px 0 0;
  color: rgba(255, 248, 235, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

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

.location-cards article {
  border: 1px solid var(--line-dark);
  background: var(--cream);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.location-cards article:hover {
  box-shadow: 0 24px 52px rgba(43, 12, 20, 0.12);
  transform: translateY(-4px);
}

.location-cards figure {
  height: 305px;
  margin: 0;
  overflow: hidden;
  background: var(--wine-deep);
}

.location-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-card-content {
  padding: 25px;
}

.location-card-content span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 12px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card-content h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.location-card-content p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.location-card-content a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card-content a:hover {
  background: var(--wine);
  color: #fff;
}

.online-strip {
  display: grid;
  gap: 38px;
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 96px;
  border-top: 1px solid var(--line-dark);
}

.online-items {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.online-items article {
  border: 1px solid var(--line-dark);
  background: var(--cream);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.online-items article:hover {
  box-shadow: 0 24px 52px rgba(43, 12, 20, 0.12);
  transform: translateY(-4px);
}

.online-items figure {
  height: 258px;
  margin: 0;
  overflow: hidden;
  background: var(--wine-deep);
}

.online-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.online-items article:hover img {
  transform: scale(1.045);
}

.online-card-body {
  padding: 25px;
}

.online-items span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 12px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.online-items strong {
  display: block;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 25px;
  line-height: 1.02;
  text-transform: uppercase;
}

.online-items p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.online-items a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0 17px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.online-items a:hover {
  background: var(--wine);
  color: #fff;
}

.proposal-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr 0.9fr 0.86fr;
  gap: 34px;
  padding: 68px max(48px, calc((100vw - 1240px) / 2)) 28px;
  background:
    linear-gradient(135deg, rgba(103, 27, 48, 0.95), rgba(33, 8, 15, 0.98)),
    var(--wine-deep);
  color: var(--cream);
}

.proposal-footer .concept-brand {
  color: var(--cream);
}

.proposal-footer .concept-brand span {
  color: var(--cream);
}

.footer-brand p {
  max-width: 360px;
  margin: 23px 0 0;
  color: rgba(255, 248, 235, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.footer-nav,
.footer-locations,
.footer-shop {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-nav a,
.footer-locations a {
  color: rgba(255, 248, 235, 0.78);
  font-size: 14px;
}

.footer-nav a:hover,
.footer-locations a:hover {
  color: #fff;
}

.footer-locations div {
  display: grid;
  gap: 6px;
}

.footer-locations strong {
  color: #fff;
  font-family: "Colossalis", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-shop span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-shop .hero-btn {
  width: fit-content;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--wine-deep);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 235, 0.18);
  color: rgba(255, 248, 235, 0.62);
}

/* Shop page */
.shop-page {
  background: var(--paper);
}

.shop-header {
  position: fixed;
  border-bottom: 1px solid rgba(255, 248, 235, 0.18);
  background: rgba(40, 10, 20, 0.82);
  backdrop-filter: blur(18px);
}

.shop-hero {
  display: grid;
  min-height: 92svh;
  align-items: center;
  gap: 56px;
  padding: 132px max(48px, calc((100vw - 1240px) / 2)) 62px;
  background:
    radial-gradient(circle at 79% 42%, rgba(226, 173, 70, 0.18), transparent 31%),
    linear-gradient(105deg, rgba(103, 27, 48, 0.98) 0%, rgba(103, 27, 48, 0.92) 48%, rgba(40, 10, 20, 0.98) 100%),
    url("../images/baccus-hero-1.jpg") center / cover;
  color: var(--cream);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.shop-hero-copy h1 {
  max-width: 650px;
  font-size: 76px;
}

.shop-hero-copy p:not(.hero-kicker) {
  max-width: 535px;
  margin: 26px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.shop-hero-board {
  position: relative;
  min-height: 560px;
}

.shop-hero-board::before {
  position: absolute;
  top: 42px;
  right: 24px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(226, 173, 70, 0.2);
  content: "";
}

.shop-hero-photo {
  position: absolute;
  top: 24px;
  right: 0;
  width: 72%;
  height: 380px;
  border: 12px solid rgba(255, 248, 235, 0.11);
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(20, 5, 10, 0.36);
}

.shop-hero-products {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: grid;
  width: 66%;
  gap: 14px;
  grid-template-columns: 1fr 0.78fr;
}

.shop-hero-products img {
  width: 100%;
  height: 212px;
  border: 10px solid rgba(255, 248, 235, 0.11);
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(20, 5, 10, 0.32);
}

.shop-hero-products img:last-child {
  margin-top: 48px;
}

.shop-hero-ticket {
  position: absolute;
  right: 34px;
  bottom: 54px;
  min-width: 190px;
  padding: 22px 24px;
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 22px 50px rgba(20, 5, 10, 0.3);
}

.shop-hero-ticket span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-hero-ticket strong {
  font-family: "Colossalis", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-categories {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
  background: var(--cream);
  color: var(--wine);
}

.shop-categories a {
  display: inline-flex;
  min-height: 92px;
  align-items: center;
  padding: 0 30px;
  border-left: 1px solid var(--line-dark);
  font-family: "Colossalis", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-categories a:last-child {
  border-right: 1px solid var(--line-dark);
}

.shop-categories a:hover,
.shop-categories a[aria-current="true"] {
  background: var(--wine);
  color: var(--cream);
}

.shop-layout {
  display: grid;
  gap: 40px;
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 92px;
  grid-template-columns: 315px minmax(0, 1fr);
}

.shop-panel {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--cream);
}

.shop-panel h2,
.shop-toolbar h2,
.shop-cta-band h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-summary-card {
  margin-top: 28px;
  padding: 22px;
  background: var(--wine);
  color: var(--cream);
}

.shop-summary-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-summary-card strong {
  display: block;
  font-family: "Colossalis", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-summary-card p {
  margin: 14px 0 22px;
  color: rgba(255, 248, 235, 0.78);
  font-size: 14px;
  line-height: 1.52;
}

.shop-summary-card a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  background: var(--cream);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-service-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-service-list span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-service-list i {
  color: var(--gold);
}

.shop-products-area {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.shop-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-toolbar select {
  min-width: 210px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.shop-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  background: var(--cream);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-product-card:hover {
  box-shadow: 0 24px 52px rgba(43, 12, 20, 0.12);
  transform: translateY(-4px);
}

.shop-product-card figure {
  height: 246px;
  margin: 0;
  overflow: hidden;
  background: #f3eadc;
}

.shop-product-featured {
  grid-column: span 2;
}

.shop-product-featured figure {
  height: 330px;
}

.shop-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.shop-product-card .product-cutout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.shop-product-card .product-cutout img {
  object-fit: contain;
}

.shop-product-card:hover .product-cutout img {
  transform: scale(1.05);
}

.shop-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.shop-product-content span {
  display: inline-flex;
  width: fit-content;
  min-height: 29px;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 11px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-product-content h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-product-content p {
  margin: 15px 0 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.shop-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.shop-product-bottom strong {
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-product-bottom a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-product-bottom a:hover {
  background: var(--wine);
  color: #fff;
}

.shop-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 64px max(48px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line-dark);
  background: var(--cream);
}

/* Contact page */
.contact-page {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  min-height: 82svh;
  align-items: center;
  gap: 56px;
  padding: 132px max(48px, calc((100vw - 1240px) / 2)) 72px;
  background:
    linear-gradient(105deg, rgba(103, 27, 48, 0.98) 0%, rgba(103, 27, 48, 0.88) 49%, rgba(40, 10, 20, 0.95) 100%),
    url("../images/baccus-hero-2.jpg") center / cover;
  color: var(--cream);
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
}

.contact-hero-copy h1 {
  max-width: 730px;
  font-size: 72px;
}

.contact-hero-copy p:not(.hero-kicker) {
  max-width: 555px;
  margin: 26px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.contact-hero-card {
  position: relative;
  min-height: 520px;
}

.contact-hero-card::before {
  position: absolute;
  top: 58px;
  right: 20px;
  width: 385px;
  height: 385px;
  border-radius: 50%;
  background: rgba(226, 173, 70, 0.18);
  content: "";
}

.contact-hero-card img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 88%;
  height: 410px;
  border: 12px solid rgba(255, 248, 235, 0.12);
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(20, 5, 10, 0.34);
}

.contact-hero-card div {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 70px;
  display: grid;
  gap: 9px;
  padding: 25px;
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 22px 50px rgba(20, 5, 10, 0.26);
}

.contact-hero-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero-card a {
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-locations {
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 94px;
}

.contact-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-section-heading h2,
.contact-form-intro h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 48px;
  line-height: 0.98;
  text-transform: uppercase;
}

.location-card {
  display: grid;
  border: 1px solid var(--line-dark);
  background: var(--cream);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.location-card + .location-card {
  margin-top: 24px;
}

.location-map {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(103, 27, 48, 0.74), rgba(40, 10, 20, 0.92)),
    url("../images/gallery-banco-tagliere.jpg") center / cover;
}

.location-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
  filter: saturate(0.86) contrast(0.95);
}

.location-map a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  background: var(--cream);
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(20, 5, 10, 0.2);
}

.location-info {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

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

.location-title span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 12px;
  font-weight: 900;
}

.location-title h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 37px;
  line-height: 0.98;
  text-transform: uppercase;
}

.location-info > p {
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.contact-detail-grid {
  display: grid;
  gap: 10px;
}

.contact-detail-grid a {
  display: grid;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  color: var(--wine);
  grid-template-columns: 34px minmax(0, 1fr);
}

.contact-detail-grid a:hover {
  background: var(--wine);
  color: var(--cream);
}

.contact-detail-grid i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: rgba(226, 173, 70, 0.2);
  color: var(--gold);
}

.contact-detail-grid span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form-section {
  display: grid;
  gap: 46px;
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 96px;
  border-top: 1px solid var(--line-dark);
  background: var(--cream);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
}

.contact-form-intro p:not(.hero-kicker) {
  max-width: 475px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.contact-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-mini-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-mini-actions a:hover {
  background: var(--wine);
  color: #fff;
}

.contact-form-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-form-card span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  outline: none;
}

.contact-form-card textarea {
  min-height: 142px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--wine);
}

.contact-form-card button {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0 27px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Menu page */
.menu-page {
  background: var(--paper);
}

.menu-hero {
  display: grid;
  min-height: 86svh;
  align-items: center;
  gap: 56px;
  padding: 132px max(48px, calc((100vw - 1240px) / 2)) 70px;
  background:
    linear-gradient(105deg, rgba(103, 27, 48, 0.98) 0%, rgba(103, 27, 48, 0.9) 48%, rgba(40, 10, 20, 0.98) 100%),
    url("../images/baccus-hero-3.jpg") center / cover;
  color: var(--cream);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
}

.menu-hero-copy h1 {
  max-width: 720px;
  font-size: 72px;
}

.menu-hero-copy p:not(.hero-kicker) {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.menu-hero-visual {
  position: relative;
  min-height: 540px;
}

.menu-hero-visual::before {
  position: absolute;
  top: 54px;
  right: 42px;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: rgba(226, 173, 70, 0.18);
  content: "";
}

.menu-hero-main {
  position: absolute;
  top: 18px;
  right: 0;
  width: 78%;
  height: 390px;
  border: 12px solid rgba(255, 248, 235, 0.12);
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(20, 5, 10, 0.34);
}

.menu-hero-small {
  position: absolute;
  width: 245px;
  height: 170px;
  border: 10px solid rgba(255, 248, 235, 0.12);
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(20, 5, 10, 0.3);
}

.menu-hero-wine {
  bottom: 42px;
  left: 22px;
}

.menu-hero-beer {
  right: 26px;
  bottom: 0;
}

.menu-categories {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-dark);
  background: var(--cream);
  color: var(--wine);
}

.menu-categories a {
  display: inline-flex;
  min-height: 92px;
  align-items: center;
  padding: 0 28px;
  border-left: 1px solid var(--line-dark);
  font-family: "Colossalis", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-categories a:last-child {
  border-right: 1px solid var(--line-dark);
}

.menu-categories a:hover {
  background: var(--wine);
  color: var(--cream);
}

.menu-layout {
  display: grid;
  gap: 40px;
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 92px;
  grid-template-columns: 315px minmax(0, 1fr);
}

.menu-aside {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--cream);
}

.menu-aside h2,
.menu-section-heading h2,
.menu-feature-row h2,
.menu-mini-section h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  line-height: 0.98;
  text-transform: uppercase;
}

.menu-aside h2 {
  font-size: 36px;
}

.menu-aside > p:not(.hero-kicker) {
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.menu-aside a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-board {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.menu-section,
.menu-feature-row,
.menu-mini-section {
  border: 1px solid var(--line-dark);
  background: var(--cream);
}

.menu-section {
  padding: 34px;
}

.menu-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.menu-section-heading > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 12px;
  font-weight: 900;
}

.menu-section-heading h2 {
  font-size: 42px;
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-items article {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: minmax(0, 1fr) auto;
}

.menu-item-main {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 104px minmax(0, 1fr);
}

.menu-item-thumb {
  display: flex;
  width: 104px;
  height: 86px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgba(226, 173, 70, 0.14);
  overflow: hidden;
}

.menu-item-thumb img {
  width: 118%;
  height: 118%;
  object-fit: contain;
  display: block;
}

.menu-items h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.menu-items p {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.menu-items strong {
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.menu-items strong small {
  display: block;
  margin: 0 0 5px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.menu-feature-row {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
}

.menu-feature-row figure {
  min-height: 360px;
  margin: 0;
}

.menu-feature-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-feature-row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.menu-feature-row h2,
.menu-mini-section h2 {
  font-size: 38px;
}

.menu-feature-row p:not(.hero-kicker),
.menu-mini-section p:not(.hero-kicker) {
  margin: 18px 0 26px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.menu-split-sections {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-mini-section {
  overflow: hidden;
}

.menu-mini-section img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  background: var(--wine-deep);
}

.menu-mini-section > div {
  padding: 26px;
}

.menu-mini-section a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-mini-section a:hover {
  background: var(--wine);
  color: #fff;
}

.menu-gallery-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-gallery-strip img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

/* About page */
.about-page {
  background: var(--paper);
}

.about-hero {
  display: grid;
  min-height: 86svh;
  align-items: center;
  gap: 56px;
  padding: 132px max(48px, calc((100vw - 1240px) / 2)) 70px;
  background:
    linear-gradient(105deg, rgba(103, 27, 48, 0.98) 0%, rgba(103, 27, 48, 0.9) 48%, rgba(40, 10, 20, 0.98) 100%),
    url("../images/baccus-hero-2.jpg") center / cover;
  color: var(--cream);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
}

.about-hero-copy h1 {
  max-width: 730px;
  font-size: 72px;
}

.about-hero-copy p:not(.hero-kicker) {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.about-hero-visual {
  position: relative;
  min-height: 530px;
}

.about-hero-visual::before {
  position: absolute;
  top: 52px;
  right: 20px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(226, 173, 70, 0.18);
  content: "";
}

.about-hero-main {
  position: absolute;
  top: 18px;
  right: 0;
  width: 86%;
  height: 410px;
  border: 12px solid rgba(255, 248, 235, 0.12);
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(20, 5, 10, 0.34);
}

.about-hero-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 80px;
  padding: 24px;
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 24px 54px rgba(20, 5, 10, 0.28);
}

.about-hero-note span,
.about-experience-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 10px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-note strong {
  display: block;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero-note p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.about-story {
  display: grid;
  gap: 58px;
  align-items: center;
  padding: 86px max(48px, calc((100vw - 1240px) / 2));
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.74fr);
}

.about-story h2,
.about-section-heading h2,
.about-product-band h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 50px;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-story p:not(.hero-kicker),
.about-product-band p:not(.hero-kicker) {
  max-width: 675px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.about-story-image {
  min-height: 470px;
  margin: 0;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.about-metrics {
  display: grid;
  gap: 18px;
  padding: 0 max(48px, calc((100vw - 1240px) / 2)) 86px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metrics article {
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--cream);
}

.about-metrics span {
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 58px;
  line-height: 0.9;
  text-transform: uppercase;
}

.about-metrics strong {
  display: block;
  margin-top: 18px;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.about-metrics p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.about-experience {
  padding: 86px max(48px, calc((100vw - 1240px) / 2)) 96px;
  border-top: 1px solid var(--line-dark);
  background: var(--cream);
}

.about-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

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

.about-experience-grid article {
  border: 1px solid var(--line-dark);
  background: var(--paper);
  overflow: hidden;
}

.about-experience-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.about-experience-grid div {
  padding: 23px;
}

.about-experience-grid h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.about-experience-grid p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.about-product-band {
  display: grid;
  gap: 42px;
  align-items: center;
  padding: 82px max(48px, calc((100vw - 1240px) / 2)) 96px;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.about-product-band .hero-btn {
  margin-top: 30px;
}

.about-product-band figure {
  margin: 0;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.about-product-band img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

/* Takeaway page */
.takeaway-page {
  background: var(--paper);
}

.takeaway-hero {
  display: grid;
  min-height: 88svh;
  align-items: center;
  gap: 58px;
  padding: 136px max(48px, calc((100vw - 1240px) / 2)) 78px;
  background:
    radial-gradient(circle at 78% 26%, rgba(226, 173, 70, 0.18), transparent 28%),
    linear-gradient(118deg, rgba(103, 27, 48, 0.99) 0%, rgba(72, 16, 33, 0.96) 50%, rgba(35, 8, 15, 0.99) 100%),
    url("../images/baccus-hero-2.jpg") center / cover;
  color: var(--cream);
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 0.83fr);
  overflow: hidden;
}

.takeaway-hero-copy h1 {
  max-width: 760px;
  font-size: 74px;
}

.takeaway-hero-copy p:not(.hero-kicker) {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.takeaway-hero-visual {
  position: relative;
  min-height: 520px;
}

.takeaway-hero-visual::before {
  position: absolute;
  inset: 52px -42px auto auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: 50%;
  content: "";
}

.takeaway-hero-main {
  position: absolute;
  top: 18px;
  right: 0;
  width: 88%;
  height: 430px;
  border: 12px solid rgba(255, 248, 235, 0.12);
  object-fit: cover;
  box-shadow: 0 34px 70px rgba(20, 5, 10, 0.38);
}

.takeaway-price-card {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: min(250px, 78%);
  padding: 24px;
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 26px 54px rgba(20, 5, 10, 0.3);
}

.takeaway-price-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.takeaway-price-card strong {
  display: block;
  margin-top: 16px;
  font-family: "Colossalis", Georgia, serif;
  font-size: 66px;
  line-height: 0.9;
}

.takeaway-price-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.takeaway-included,
.takeaway-steps,
.takeaway-places {
  padding: 86px max(48px, calc((100vw - 1240px) / 2));
}

.takeaway-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.takeaway-section-heading h2,
.takeaway-cta h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 54px;
  line-height: 0.98;
  text-transform: uppercase;
}

.takeaway-section-heading p:not(.hero-kicker),
.takeaway-cta p:not(.hero-kicker) {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
}

.takeaway-included {
  background: var(--cream);
}

.takeaway-included-layout {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.takeaway-included-layout > img {
  width: min(480px, 100%);
  justify-self: center;
  filter: drop-shadow(0 26px 34px rgba(20, 5, 10, 0.2));
}

.takeaway-included-grid,
.takeaway-step-grid,
.takeaway-place-grid {
  display: grid;
  gap: 18px;
}

.takeaway-included-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.takeaway-included-grid article,
.takeaway-step-grid article {
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.takeaway-included-grid span {
  color: var(--gold);
  font-family: "Colossalis", Georgia, serif;
  font-size: 42px;
  line-height: 0.9;
}

.takeaway-included-grid h3,
.takeaway-step-grid h3,
.takeaway-place-grid h3 {
  margin: 16px 0 0;
  color: var(--wine);
  font-family: "Colossalis", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.takeaway-included-grid p,
.takeaway-step-grid p,
.takeaway-place-grid p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.takeaway-steps {
  border-top: 1px solid var(--line-dark);
}

.takeaway-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.takeaway-step-grid i {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--wine);
  color: var(--cream);
  font-size: 20px;
}

.takeaway-places {
  background: var(--wine);
  color: var(--cream);
}

.takeaway-places .takeaway-section-heading h2 {
  color: var(--cream);
}

.takeaway-places .takeaway-section-heading p:not(.hero-kicker) {
  color: rgba(255, 248, 235, 0.78);
}

.takeaway-place-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.takeaway-place-grid article {
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}

.takeaway-place-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.takeaway-place-grid div {
  padding: 25px;
}

.takeaway-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 64px max(48px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.92), rgba(255, 247, 234, 0.78)),
    url("../images/tagliere-birra.jpg") center / cover;
}

.takeaway-cta .hero-btn {
  flex: 0 0 auto;
}

/* Proposal 3: sunset session */
.session-page {
  background: var(--wine-deep);
}

.session-slider {
  background: var(--wine-deep);
}

.session-slide {
  align-items: stretch;
  color: var(--cream);
}

.session-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-photo-wine {
  object-position: center 61%;
}

.session-photo-beer {
  object-position: center 58%;
}

.session-photo-away {
  object-position: center 58%;
}

.session-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 7, 13, 0.92) 0%, rgba(49, 10, 20, 0.82) 37%, rgba(49, 10, 20, 0.26) 65%, rgba(29, 7, 13, 0.64) 100%),
    linear-gradient(0deg, rgba(29, 7, 13, 0.8) 0%, transparent 40%);
  content: "";
}

.session-layout {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1240px, calc(100% - 96px));
  align-items: end;
  justify-content: space-between;
  gap: 52px;
  margin: 0 auto;
  padding: 151px 0 151px;
}

.session-copy {
  max-width: 610px;
}

.session-copy h1 {
  font-size: 78px;
}

.session-copy .slide-title {
  font-size: 66px;
}

.session-copy .hero-copy {
  max-width: 475px;
  color: rgba(255, 247, 234, 0.9);
}

.session-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 29px;
}

.session-chips span {
  min-height: 36px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 247, 234, 0.38);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-copy .hero-actions {
  margin-top: 23px;
}

.session-card {
  position: relative;
  width: 285px;
  flex-shrink: 0;
  margin-bottom: 32px;
  padding: 38px 27px 26px;
  border: 1px solid rgba(255, 247, 234, 0.4);
  background: rgba(40, 10, 20, 0.52);
  backdrop-filter: blur(7px);
}

.session-sticker {
  position: absolute;
  top: -20px;
  right: 19px;
  padding: 11px 17px;
  background: var(--gold);
  color: var(--wine-deep);
  font-family: "Colossalis", Georgia, serif;
  font-size: 17px;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.session-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-card strong {
  display: block;
  color: var(--cream);
  font-family: "Colossalis", Georgia, serif;
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.session-card p {
  margin: 14px 0 25px;
  color: rgba(255, 247, 234, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-card a {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 15px;
  background: var(--cream);
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-card a i {
  color: var(--gold);
}

.session-nav {
  position: absolute;
  right: 48px;
  bottom: 30px;
  left: 48px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--cream);
}

.session-tracks {
  display: flex;
  background: rgba(32, 7, 14, 0.42);
}

.session-track {
  display: flex;
  width: 126px;
  height: 60px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 0 15px;
  border: 1px solid rgba(255, 247, 234, 0.33);
  border-left: 0;
  background: transparent;
  color: rgba(255, 247, 234, 0.7);
  opacity: 1;
}

.session-track:first-child {
  border-left: 1px solid rgba(255, 247, 234, 0.33);
}

.session-track.is-active {
  background: var(--cream);
  color: var(--wine);
}

.session-track b {
  color: var(--gold);
  font-family: "Colossalis", Georgia, serif;
  font-size: 16px;
}

.session-track span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-band {
  display: flex;
  min-height: 8svh;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 12px 26px;
  background: var(--cream);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-band span,
.session-band a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.session-band i {
  color: var(--gold);
}

.session-band a {
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--wine);
}

/* Proposal 4: storefront grid */
.storefront-page,
.storefront-slider {
  background: #f7f4ee;
}

.storefront-slide {
  color: var(--wine);
  background: #f7f4ee;
}

.storefront-layout {
  display: grid;
  width: min(1260px, calc(100% - 96px));
  align-items: center;
  margin: 0 auto;
  padding-top: 95px;
  padding-bottom: 42px;
  gap: 54px;
  grid-template-columns: 32% 68%;
}

.storefront-intro h1,
.storefront-intro .slide-title {
  font-size: 60px;
}

.storefront-intro .hero-copy {
  color: #55494a;
}

.storefront-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.storefront-link i {
  color: var(--gold);
}

.product-grid {
  display: grid;
  height: 570px;
  gap: 14px;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: 1fr 1fr;
}

.store-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 24px;
  color: var(--wine);
}

.store-card span,
.store-card small {
  position: relative;
  z-index: 2;
  display: block;
  color: #756568;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.store-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 8px;
  font-family: "Colossalis", Georgia, serif;
  font-size: 24px;
  text-transform: uppercase;
}

.store-card img {
  position: absolute;
  object-fit: contain;
}

.card-featured {
  grid-row: 1 / 3;
}

.card-wine {
  background: #ebe3d9;
}

.card-beer {
  background: #e4eadf;
}

.card-food {
  background: #efe7df;
}

.card-featured img {
  right: 12px;
  bottom: 5px;
  width: calc(100% - 24px);
  height: 78%;
}

.product-grid > .store-card:not(.card-featured) img {
  right: 8px;
  bottom: -16px;
  width: 47%;
  height: 82%;
}

.photo-card {
  padding: 0;
  color: var(--cream);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 8, 15, 0.62), transparent 56%);
  content: "";
}

.photo-card img {
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.photo-card strong {
  position: absolute;
  left: 22px;
  bottom: 18px;
}

.copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--wine);
  color: var(--cream);
}

.copy-card span,
.copy-card small {
  color: rgba(255, 247, 234, 0.68);
}

.copy-card small {
  margin-top: 14px;
}

.storefront-ui {
  right: auto;
  left: calc((100% - min(1260px, 100% - 96px)) / 2);
  bottom: 40px;
}

.storefront-band {
  background: #ffffff;
}

/* Proposal 5: photographic journal commerce */
.journal-page,
.journal-slider {
  background: var(--wine-deep);
}

.journal-header {
  border-bottom: 1px solid rgba(255, 247, 234, 0.2);
}

.journal-slide {
  align-items: flex-end;
  color: var(--cream);
  background: var(--wine-deep);
}

.journal-slide:not(.is-active) {
  visibility: hidden;
}

.journal-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 8, 13, 0.84) 0%, rgba(26, 8, 13, 0.36) 48%, rgba(26, 8, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(26, 8, 13, 0.7) 0%, transparent 54%);
  content: "";
}

.journal-slide .slide-photo {
  object-position: center 54%;
}

.journal-slide .journal-photo-portrait {
  object-position: center 55%;
}

.journal-heading {
  position: absolute;
  left: 48px;
  bottom: 235px;
  z-index: 2;
  max-width: 650px;
}

.journal-heading h1,
.journal-heading .slide-title {
  font-size: 74px;
}

.journal-order {
  position: absolute;
  right: 145px;
  bottom: 54px;
  z-index: 3;
  display: flex;
  min-width: 630px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 27px 30px;
  background: var(--wine);
  color: var(--cream);
}

.journal-details span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-details strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Colossalis", Georgia, serif;
  font-size: 25px;
  text-transform: uppercase;
}

.journal-details p {
  margin: 0;
  color: rgba(255, 247, 234, 0.74);
  font-size: 14px;
}

.journal-rail {
  position: absolute;
  top: 128px;
  right: 48px;
  bottom: 270px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--cream);
}

.journal-arrow {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 247, 234, 0.5);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.journal-dots {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.journal-dot {
  width: 44px;
  height: 35px;
  border: 0;
  background: transparent;
  color: rgba(255, 247, 234, 0.48);
  font-family: "Colossalis", Georgia, serif;
  font-size: 18px;
  text-align: center;
}

.journal-dot.is-active {
  background: transparent;
  color: var(--gold);
}

.journal-dot span {
  display: block;
}

.journal-band {
  display: flex;
  min-height: 8svh;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-band a {
  min-width: 195px;
  padding: 0 35px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.journal-band a:first-child {
  border-left: 1px solid var(--line-dark);
}

@media (max-width: 1100px) {
  h1,
  .slide-title {
    font-size: 66px;
  }

  .showcase-grid {
    gap: 26px;
    grid-template-columns: minmax(360px, 43%) minmax(0, 1fr);
  }

  .showcase-copy h1,
  .showcase-copy .slide-title {
    font-size: 58px;
  }

  .showcase-art {
    height: 430px;
  }

  .showcase-product::before {
    right: 20px;
    width: 345px;
    height: 345px;
  }

  .showcase-product::after {
    right: 9px;
    width: 389px;
  }

  .showcase-buy {
    width: 287px;
  }

  .showcase-tab {
    width: 112px;
  }

  .session-layout {
    gap: 28px;
  }

  .session-copy h1 {
    font-size: 62px;
  }

  .session-copy .slide-title {
    font-size: 54px;
  }

  .session-track {
    width: 108px;
  }

  .storefront-intro h1,
  .storefront-intro .slide-title {
    font-size: 52px;
  }

  .journal-heading h1,
  .journal-heading .slide-title {
    font-size: 62px;
  }

  .journal-order {
    min-width: 575px;
  }
}

@media (max-width: 767px) {
  .concept-header {
    padding: 18px;
  }

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

  .concept-brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .concept-header.dark .concept-nav {
    color: var(--cream);
  }

  .concept-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 20px;
    background: var(--wine);
    color: var(--cream);
  }

  .concept-nav.is-open {
    display: flex;
  }

  .concept-nav a {
    min-height: 46px;
    padding: 14px 0;
  }

  .nav-order {
    margin-top: 8px;
    text-align: center;
  }

  .hero-slider,
  .hero-slide {
    min-height: 92svh;
  }

  h1,
  .slide-title {
    font-size: 46px;
  }

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

  .hero-actions {
    margin-top: 27px;
  }

  .hero-btn {
    min-height: 52px;
    padding: 0 23px;
  }

  .slider-ui,
  .storefront-ui {
    right: 18px;
    bottom: 18px;
    left: auto;
    gap: 12px;
  }

  .slide-arrow {
    width: 42px;
    height: 42px;
  }

  .slide-dot {
    width: 19px;
  }

  .peek-band {
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
    padding: 16px 18px;
    font-size: 15px;
    white-space: nowrap;
  }

  .peek-band span {
    gap: 20px;
  }

  .editorial-slide::after {
    background: linear-gradient(0deg, rgba(25, 8, 13, 0.94) 0%, rgba(25, 8, 13, 0.73) 58%, rgba(25, 8, 13, 0.25) 100%);
  }

  .editorial-slide .slide-photo {
    object-position: 58% center;
  }

  .editorial-copy {
    width: calc(100% - 36px);
    padding: 170px 0 116px;
  }

  .editorial-note {
    display: none;
  }

  .showcase-slide {
    align-items: flex-start;
  }

  .showcase-slide::before {
    top: 92px;
    right: -8px;
    left: auto;
    font-size: 78px;
  }

  .showcase-grid {
    display: flex;
    width: calc(100% - 36px);
    min-height: 92svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
    padding: 96px 0 70px;
  }

  .showcase-copy .hero-kicker {
    margin-bottom: 12px;
  }

  .showcase-copy h1,
  .showcase-copy .slide-title {
    font-size: 40px;
  }

  .showcase-copy .hero-copy {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .showcase-perks {
    display: none;
  }

  .showcase-copy .hero-actions {
    margin-top: 13px;
  }

  .showcase-copy .hero-btn {
    min-height: 44px;
    font-size: 12px;
  }

  .showcase-copy .hero-btn-secondary {
    display: none;
  }

  .showcase-art {
    height: 285px;
    margin-top: 0;
  }

  .showcase-product {
    inset: 0;
  }

  .showcase-product::before {
    top: 2px;
    right: 50%;
    bottom: auto;
    left: auto;
    width: 260px;
    height: 260px;
    transform: translateX(50%);
  }

  .showcase-product::after {
    right: 16px;
    bottom: 62px;
    width: calc(100% - 32px);
  }

  .shop-badge {
    top: 12px;
    right: 12px;
    left: auto;
    min-height: 26px;
    padding: 0 10px;
    font-size: 9px;
  }

  .showcase-art img,
  .showcase-art .wide-pack {
    top: 2px;
    right: 18px;
    bottom: 42px;
    width: calc(100% - 36px);
    height: calc(100% - 44px);
  }

  .showcase-art .wide-pack {
    right: 19px;
    bottom: 45px;
    width: calc(100% - 20px);
    height: calc(100% - 51px);
  }

  .showcase-art .single-bottle {
    transform: scale(1.2);
  }

  .showcase-art .showcase-scene {
    top: 17px;
    right: 0;
    bottom: 52px;
    width: 100%;
    height: 225px;
  }

  .showcase-buy {
    right: 0;
    bottom: 4px;
    width: 255px;
    min-height: 59px;
    padding: 9px 12px 9px 16px;
  }

  .showcase-buy small {
    display: none;
  }

  .showcase-buy strong {
    font-size: 17px;
  }

  .showcase-buy a {
    width: 41px;
    height: 41px;
  }

  .showcase-ui {
    right: 18px;
    bottom: 14px;
    left: 18px;
    gap: 0;
  }

  .showcase-ui .slide-arrow {
    display: none;
  }

  .showcase-tabs {
    width: 100%;
  }

  .showcase-tab {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 44px;
    padding: 0 9px;
  }

  .showcase-tab b {
    font-size: 14px;
  }

  .showcase-tab span {
    font-size: 9px;
  }

  .shop-header {
    padding: 18px;
  }

  .shop-hero {
    display: block;
    min-height: 0;
    padding: 112px 18px 52px;
  }

  .shop-hero-copy h1 {
    font-size: 44px;
  }

  .shop-hero-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .shop-hero-board {
    min-height: 410px;
    margin-top: 34px;
  }

  .shop-hero-board::before {
    top: 35px;
    right: 50%;
    width: 292px;
    height: 292px;
    transform: translateX(50%);
  }

  .shop-hero-photo {
    top: 0;
    right: 0;
    width: 100%;
    height: 250px;
    border-width: 8px;
  }

  .shop-hero-products {
    bottom: 18px;
    left: 0;
    width: 82%;
    gap: 9px;
  }

  .shop-hero-products img {
    height: 142px;
    border-width: 7px;
  }

  .shop-hero-products img:last-child {
    margin-top: 34px;
  }

  .shop-hero-ticket {
    right: 0;
    bottom: 0;
    min-width: 134px;
    padding: 16px;
  }

  .shop-hero-ticket strong {
    font-size: 25px;
  }

  .shop-categories {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 72px;
  }

  .shop-categories a {
    min-height: 72px;
    padding: 0 20px;
    font-size: 15px;
    white-space: nowrap;
  }

  .shop-layout {
    display: block;
    padding: 54px 18px 62px;
  }

  .shop-panel {
    position: static;
    padding: 22px;
  }

  .shop-products-area {
    margin-top: 42px;
  }

  .shop-toolbar {
    display: block;
  }

  .shop-toolbar h2,
  .shop-panel h2,
  .shop-cta-band h2 {
    font-size: 36px;
  }

  .shop-toolbar label {
    margin-top: 22px;
  }

  .shop-toolbar select {
    width: 100%;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-featured {
    grid-column: auto;
  }

  .shop-product-card figure,
  .shop-product-featured figure {
    height: 230px;
  }

  .shop-product-content {
    padding: 21px;
  }

  .shop-product-content h3 {
    font-size: 25px;
  }

  .shop-cta-band {
    display: block;
    padding: 48px 18px;
  }

  .shop-cta-band .hero-btn {
    margin-top: 24px;
  }

  .contact-hero {
    display: block;
    min-height: 0;
    padding: 112px 18px 52px;
  }

  .contact-hero-copy h1 {
    font-size: 43px;
  }

  .contact-hero-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .contact-hero-card {
    min-height: 390px;
    margin-top: 34px;
  }

  .contact-hero-card::before {
    top: 42px;
    right: 50%;
    width: 292px;
    height: 292px;
    transform: translateX(50%);
  }

  .contact-hero-card img {
    width: 100%;
    height: 285px;
    border-width: 8px;
  }

  .contact-hero-card div {
    right: 0;
    bottom: 0;
    left: 22px;
    padding: 19px;
  }

  .contact-hero-card a {
    font-size: 19px;
  }

  .contact-locations {
    padding: 58px 18px 64px;
  }

  .contact-section-heading {
    display: block;
  }

  .contact-section-heading h2,
  .contact-form-intro h2 {
    font-size: 38px;
  }

  .location-card {
    display: block;
  }

  .location-map,
  .location-map iframe {
    min-height: 310px;
  }

  .location-info {
    min-height: 0;
    padding: 23px;
  }

  .location-title {
    align-items: flex-start;
  }

  .location-title h3 {
    font-size: 29px;
  }

  .location-info > p {
    margin: 18px 0 22px;
    font-size: 15px;
  }

  .contact-detail-grid a {
    min-height: 56px;
    padding: 11px 12px;
  }

  .contact-form-section {
    display: block;
    padding: 56px 18px 64px;
  }

  .contact-form-card {
    margin-top: 32px;
    padding: 22px;
  }

  .contact-form-card button {
    width: 100%;
  }

  .menu-hero {
    display: block;
    min-height: 0;
    padding: 112px 18px 52px;
  }

  .menu-hero-copy h1 {
    font-size: 42px;
  }

  .menu-hero-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .menu-hero-visual {
    min-height: 410px;
    margin-top: 34px;
  }

  .menu-hero-visual::before {
    top: 40px;
    right: 50%;
    width: 292px;
    height: 292px;
    transform: translateX(50%);
  }

  .menu-hero-main {
    top: 0;
    right: 0;
    width: 100%;
    height: 270px;
    border-width: 8px;
  }

  .menu-hero-small {
    width: 170px;
    height: 122px;
    border-width: 7px;
  }

  .menu-hero-wine {
    bottom: 42px;
    left: 0;
  }

  .menu-hero-beer {
    right: 0;
    bottom: 4px;
  }

  .menu-categories {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 72px;
  }

  .menu-categories a {
    min-height: 72px;
    padding: 0 20px;
    font-size: 15px;
    white-space: nowrap;
  }

  .menu-layout {
    display: block;
    padding: 54px 18px 62px;
  }

  .menu-aside {
    position: static;
    padding: 22px;
  }

  .menu-board {
    margin-top: 34px;
  }

  .menu-section {
    padding: 23px;
  }

  .menu-section-heading h2,
  .menu-feature-row h2,
  .menu-mini-section h2 {
    font-size: 32px;
  }

  .menu-items article {
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-item-main {
    gap: 13px;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .menu-item-thumb {
    width: 78px;
    height: 68px;
  }

  .menu-item-thumb img {
    width: 125%;
    height: 125%;
  }

  .menu-items strong {
    text-align: left;
  }

  .menu-feature-row,
  .menu-split-sections {
    display: block;
  }

  .menu-feature-row figure {
    min-height: 240px;
  }

  .menu-feature-row > div,
  .menu-mini-section > div {
    padding: 23px;
  }

  .menu-mini-section + .menu-mini-section {
    margin-top: 18px;
  }

  .menu-mini-section img {
    height: 220px;
  }

  .menu-gallery-strip {
    grid-template-columns: 1fr;
  }

  .menu-gallery-strip img {
    height: 240px;
  }

  .about-hero {
    display: block;
    min-height: 0;
    padding: 112px 18px 52px;
  }

  .about-hero-copy h1 {
    font-size: 42px;
  }

  .about-hero-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .about-hero-visual {
    min-height: 410px;
    margin-top: 34px;
  }

  .about-hero-visual::before {
    top: 42px;
    right: 50%;
    width: 292px;
    height: 292px;
    transform: translateX(50%);
  }

  .about-hero-main {
    width: 100%;
    height: 292px;
    border-width: 8px;
  }

  .about-hero-note {
    right: 0;
    bottom: 0;
    left: 22px;
    padding: 19px;
  }

  .about-hero-note strong {
    font-size: 25px;
  }

  .about-story {
    display: block;
    padding: 58px 18px;
  }

  .about-story h2,
  .about-section-heading h2,
  .about-product-band h2 {
    font-size: 38px;
  }

  .about-story-image {
    min-height: 320px;
    margin-top: 34px;
  }

  .about-story-image img {
    min-height: 320px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    padding: 0 18px 58px;
  }

  .about-experience {
    padding: 58px 18px 64px;
  }

  .about-section-heading {
    display: block;
  }

  .about-experience-grid {
    grid-template-columns: 1fr;
  }

  .about-experience-grid img {
    height: 230px;
  }

  .about-product-band {
    display: block;
    padding: 58px 18px 64px;
  }

  .about-product-band figure {
    margin-top: 32px;
  }

  .about-product-band img {
    height: 250px;
  }

  .takeaway-hero {
    display: block;
    min-height: 0;
    padding: 112px 18px 54px;
  }

  .takeaway-hero-copy h1 {
    font-size: 42px;
  }

  .takeaway-hero-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .takeaway-hero-visual {
    min-height: 410px;
    margin-top: 34px;
  }

  .takeaway-hero-visual::before {
    top: 42px;
    right: 50%;
    width: 292px;
    height: 292px;
    transform: translateX(50%);
  }

  .takeaway-hero-main {
    width: 100%;
    height: 295px;
    border-width: 8px;
  }

  .takeaway-price-card {
    right: 0;
    bottom: 0;
    width: min(250px, 86%);
    padding: 19px;
  }

  .takeaway-price-card strong {
    font-size: 48px;
  }

  .takeaway-included,
  .takeaway-steps,
  .takeaway-places {
    padding: 58px 18px;
  }

  .takeaway-section-heading h2,
  .takeaway-cta h2 {
    font-size: 38px;
  }

  .takeaway-included-layout {
    display: block;
  }

  .takeaway-included-layout > img {
    display: block;
    width: min(330px, 100%);
    margin: 0 auto 30px;
  }

  .takeaway-included-grid,
  .takeaway-step-grid,
  .takeaway-place-grid {
    grid-template-columns: 1fr;
  }

  .takeaway-place-grid img {
    height: 230px;
  }

  .takeaway-cta {
    display: block;
    padding: 58px 18px;
  }

  .takeaway-cta .hero-btn {
    margin-top: 26px;
  }

  .showcase-assurance {
    justify-content: space-between;
    gap: 0;
    padding: 0 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  .showcase-assurance span {
    gap: 5px;
  }

  .showcase-assurance a {
    display: none;
  }

  .client-story,
  .client-locations,
  .online-strip {
    display: block;
    padding-right: 18px;
    padding-left: 18px;
  }

  .client-story {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .client-story h2,
  .location-heading h2,
  .online-strip h2 {
    font-size: 38px;
  }

  .client-story p {
    font-size: 16px;
  }

  .client-story-visual {
    min-height: 320px;
    margin-top: 34px;
  }

  .client-locations,
  .online-strip {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .location-heading {
    position: static;
  }

  .location-heading p:not(.hero-kicker) {
    font-size: 16px;
  }

  .location-cards {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .location-cards figure {
    height: 245px;
  }

  .location-card-content {
    padding: 21px;
  }

  .location-card-content h3 {
    font-size: 27px;
  }

  .online-items {
    display: grid;
    margin-top: 28px;
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .online-items article {
    min-height: 0;
  }

  .online-items figure {
    height: 220px;
  }

  .online-card-body {
    padding: 21px;
  }

  .proposal-footer {
    display: block;
    padding: 48px 18px 24px;
  }

  .proposal-footer .concept-brand {
    justify-content: flex-start;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-nav,
  .footer-locations,
  .footer-shop {
    margin-top: 30px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    margin-top: 34px;
  }

  .session-slide::after {
    background:
      linear-gradient(0deg, rgba(29, 7, 13, 0.94) 0%, rgba(29, 7, 13, 0.76) 60%, rgba(29, 7, 13, 0.38) 100%),
      linear-gradient(90deg, rgba(29, 7, 13, 0.34), rgba(29, 7, 13, 0.34));
  }

  .session-photo-wine {
    object-position: 61% center;
  }

  .session-photo-beer,
  .session-photo-away {
    object-position: center 42%;
  }

  .session-layout {
    display: flex;
    width: calc(100% - 36px);
    height: 92svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 15px;
    padding: 103px 0 78px;
  }

  .session-copy .hero-kicker {
    margin-bottom: 12px;
  }

  .session-copy h1,
  .session-copy .slide-title {
    font-size: 43px;
  }

  .session-copy .hero-copy {
    margin-top: 14px;
    font-size: 15px;
  }

  .session-chips {
    display: none;
  }

  .session-copy .hero-actions {
    margin-top: 19px;
  }

  .session-copy .hero-btn {
    min-height: 45px;
    font-size: 12px;
  }

  .session-copy .hero-btn-secondary {
    display: none;
  }

  .session-card {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    margin-bottom: 0;
    padding: 13px 13px 13px 16px;
  }

  .session-sticker,
  .session-card small,
  .session-card p {
    display: none;
  }

  .session-card strong {
    font-size: 19px;
  }

  .session-card a {
    min-height: 43px;
    padding: 0 13px;
    font-size: 10px;
  }

  .session-nav {
    right: 18px;
    bottom: 13px;
    left: 18px;
    gap: 0;
  }

  .session-nav .slide-arrow {
    display: none;
  }

  .session-tracks {
    width: 100%;
  }

  .session-track {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 48px;
    padding: 0 9px;
  }

  .session-track b {
    font-size: 14px;
  }

  .session-track span {
    font-size: 9px;
  }

  .session-band {
    justify-content: space-between;
    gap: 0;
    padding: 0 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  .session-band span,
  .session-band a {
    gap: 5px;
  }

  .session-band a {
    display: none;
  }

  .storefront-layout {
    display: flex;
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: stretch;
    gap: 23px;
    padding-top: 116px;
    padding-bottom: 78px;
  }

  .storefront-intro h1,
  .storefront-intro .slide-title {
    font-size: 44px;
  }

  .storefront-intro .hero-copy {
    margin-top: 15px;
  }

  .storefront-link {
    margin-top: 20px;
  }

  .product-grid {
    height: 387px;
    gap: 9px;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .store-card {
    padding: 13px;
  }

  .store-card strong {
    font-size: 17px;
  }

  .store-card span,
  .store-card small {
    font-size: 10px;
  }

  .product-grid .card-featured img {
    transform: scale(1.55);
    transform-origin: center bottom;
  }

  .product-grid > .store-card:not(.card-featured) img {
    top: 56px;
    right: 4px;
    bottom: auto;
    width: calc(100% - 8px);
    height: calc(100% - 61px);
    object-position: right bottom;
    transform: none;
  }

  .photo-card strong {
    left: 12px;
    bottom: 10px;
  }

  .journal-slide::after {
    background:
      linear-gradient(0deg, rgba(26, 8, 13, 0.93) 0%, rgba(26, 8, 13, 0.48) 76%, rgba(26, 8, 13, 0.24) 100%);
  }

  .journal-slide .slide-photo,
  .journal-slide .journal-photo-portrait {
    object-position: center 44%;
  }

  .journal-heading {
    left: 18px;
    bottom: 344px;
    max-width: calc(100% - 36px);
  }

  .journal-heading h1,
  .journal-heading .slide-title {
    font-size: 43px;
  }

  .journal-order {
    right: 18px;
    bottom: 76px;
    left: 18px;
    display: block;
    min-width: 0;
    padding: 19px 18px;
  }

  .journal-details strong {
    font-size: 20px;
  }

  .journal-details p {
    margin-bottom: 16px;
  }

  .journal-order .hero-btn {
    width: 100%;
  }

  .journal-rail {
    top: auto;
    right: 18px;
    bottom: 21px;
    left: 18px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .journal-dots {
    flex-direction: row;
    gap: 4px;
  }

  .journal-dot {
    width: 35px;
  }

  .journal-band {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .journal-band a {
    min-width: auto;
    padding: 0 22px;
  }
}
