:root {
  --cream: #f9f5f1;
  --cream-alt: #f3ede6;
  --burgundy: #722f37;
  --burgundy-deep: #4a1620;
  --burgundy-hover: #8b2035;
  --ink: #1c1917;
  --ink-muted: #57534e;
  --border: #e7ddd4;
  --border-strong: #d6c9bc;
  --nav-height: 88px;
  --font: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Layout ──────────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container-wide {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.steps,
.cellar,
.pricing,
.download,
.about-strip,
.contact-strip,
#top,
#pricing,
#download,
#about,
#contact {
  scroll-margin-top: var(--nav-height);
}

/* ── Nav ─────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 245, 241, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  justify-self: start;
}

.nav-logo img {
  display: block;
  width: min(46vw, 174px);
  height: auto;
}

.nav-center {
  justify-self: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-link-muted {
  opacity: 0.45;
  pointer-events: none;
}

.btn-nav-cta {
  justify-self: end;
  background: var(--burgundy-deep);
  color: #fff;
  padding: 0.625rem 1.375rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--burgundy-hover);
}

/* ── Hero (aligned with the coming-soon placeholder) ─────── */

.hero {
  position: relative;
  overflow: hidden;
  background: #faf6ee;
  isolation: isolate;
  min-height: clamp(560px, 76vh, 840px);
  display: flex;
  flex-direction: column;
}

/* Tuscan landscape with baked-in burgundy ribbon, anchored to the bottom
   so the brand copy reads on the clean cream upper area (matches index.html). */
.hero-bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero-copy {
  align-self: start;
  max-width: 560px;
  margin-top: clamp(0.5rem, 2.5vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(249, 245, 241, 0.40);
  backdrop-filter: blur(12px) saturate(115%);
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow: 0 18px 50px -22px rgba(28, 10, 16, 0.3);
}

.hero-headline {
  margin: 0 0 1.25rem;
  font-family: var(--font);
  font-size: clamp(2.4rem, 5.4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--burgundy-deep);
  text-wrap: balance;
}

.hero-body {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink-muted);
  font-weight: bold;
  max-width: 480px;
}

.hero-ctas {
  margin-bottom: 1rem;
}

.hero-note {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: bold;
  color: var(--cream);
}

.hero-visual {
  align-self: end;
  display: flex;
  justify-content: center;
}

/* ── App screenshot ──────────────────────────────────────── */

.hero-phone-img {
  width: clamp(280px, 30vw, 348px);
  height: auto;
  transform: rotate(-2deg);
  filter: drop-shadow(0 30px 60px rgba(31, 12, 18, 0.4));
  transition: transform 600ms var(--ease, ease);
}

.hero-phone-img:hover {
  transform: rotate(-0.5deg) translateY(-4px);
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn-store {
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  line-height: 1.2;
}

.btn-label-small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.btn-apple,
.btn-google {
  background: var(--ink);
  color: #fff;
}

.btn-apple:hover,
.btn-google:hover {
  opacity: 0.88;
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--border-strong);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-outline:hover {
  border-color: var(--burgundy);
  background: rgba(114, 47, 55, 0.04);
}

.btn-featured {
  background: var(--cream);
  color: var(--burgundy);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-featured:hover {
  opacity: 0.9;
}

.btn-light {
  background: #fff;
  color: var(--burgundy-deep);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
}

/* ── Section shared ──────────────────────────────────────── */

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--burgundy-deep);
  line-height: 1.2;
}

.section-title--inverse {
  color: #fff;
  text-align: left;
  font-size: 2.3em;
}

.section-sub {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-muted);
}

.section-sub--inverse {
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

/* ── Three steps ─────────────────────────────────────────── */

.steps {
  padding: clamp(4rem, 9vh, 6.5rem) 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--burgundy-deep);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  margin: 0;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.step-body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 280px;
}

.step-visual {
  margin-top: 1rem;
  width: 100%;
  max-width: 230px;
  perspective: 900px;
}

.step-visual img {
  width: 100%;
  filter: drop-shadow(0 22px 38px rgba(28, 10, 16, 0.22));
  transition: transform 600ms var(--ease);
}

/* Angled effect — phones lean for a dynamic, fanned look */
.steps-grid .step-card:nth-child(1) .step-visual img { transform: rotate(-5deg); }
.steps-grid .step-card:nth-child(2) .step-visual img { transform: rotate(4deg); }
.steps-grid .step-card:nth-child(3) .step-visual img { transform: rotate(-4deg); }

.steps-grid .step-card:hover .step-visual img {
  transform: rotate(-0.5deg) translateY(-6px);
}

/* ── Personal cellar ─────────────────────────────────────── */

.cellar {
  padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(4rem, 9vh, 6.5rem);
  background: var(--cream-alt);
}

.cellar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: end;
}

.cellar-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  box-shadow: 0 12px 32px rgba(28, 10, 16, 0.1);
}

.cellar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cellar-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 0.75rem 0.875rem;
  background: linear-gradient(transparent, rgba(28, 10, 16, 0.72));
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── Tasting Corner ──────────────────────────────────────── */

.tasting-corner {
  padding: clamp(4rem, 9vh, 6rem) 0;
  background: var(--burgundy-deep);
}

.tasting-corner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.tasting-corner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 440px;
}

.tc-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e7c79a;
}

.tc-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.tc-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.tc-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e7c79a;
}

.tasting-corner-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.tc-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

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

.tc-photo--main {
  grid-row: 1 / span 2;
}

.tc-photo--flight {
  aspect-ratio: 4 / 3;
}

.tc-photo--notes {
  aspect-ratio: 3 / 4;
}

/* ── Sommelier bio card ───────────────────────────────────── */
.sommelier-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1.125rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sommelier-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sommelier-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(231, 199, 154, 0.55);
  flex: 0 0 auto;
}

.sommelier-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sommelier-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sommelier-qual {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e7c79a;
  text-decoration: none;
}

.sommelier-creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sommelier-creds li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.sommelier-creds li img {
  flex: 0 0 auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.sommelier-quote {
  margin: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid #e7c79a;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.tc-more {
  margin: 0.75rem 0 0;
}

.tc-more a {
  color: #e7c79a;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.tc-more a:hover {
  text-decoration: underline;
}

/* ── Pricing ─────────────────────────────────────────────── */

.pricing {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  position: relative;
}

.pricing-card--featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
  padding-top: 2.5rem;
}

.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #c49a3a;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

/* "Coming soon" tier — neutral badge + non-interactive CTA */
.tier-badge--soon {
  background: var(--ink-muted);
}

.pricing-card--soon {
  padding-top: 2.5rem;
}

.btn-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.tier-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.pricing-card--featured .tier-name {
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.85);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-family: var(--font);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--burgundy);
}

.pricing-card--featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.pricing-card--featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.tier-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.tier-features li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-muted);
  padding-left: 1.25rem;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
}

.pricing-card--featured .tier-features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card--featured .tier-features li::before {
  background: rgba(255, 255, 255, 0.5);
}

/* ── Download CTA ────────────────────────────────────────── */

.download {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
}

.download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.download-copy .section-title,
.download-copy .section-sub {
  text-align: left;
}

.download-copy .section-sub {
  margin-bottom: 1.75rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.download-qr img {
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.download-qr-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-weblink {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.download-weblink a {
  color: var(--burgundy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-phones {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-phone {
  position: absolute;
  border-radius: 24px;
  filter: drop-shadow(0 20px 48px rgba(28, 10, 16, 0.2));
}

.download-phone--back {
  width: 52%;
  transform: rotate(-8deg) translate(-18%, 6%);
  opacity: 0.7;
  z-index: 1;
}

.download-phone--front {
  width: 58%;
  transform: rotate(6deg) translate(14%, -4%);
  z-index: 2;
}

/* ── About & Contact strips ──────────────────────────────── */

.about-strip,
.contact-strip {
  padding: clamp(3rem, 7vh, 4.5rem) 0;
  border-top: 1px solid var(--border);
}

.about-strip {
  background: var(--cream);
}

.contact-strip {
  background: var(--cream-alt);
}

.about-strip-inner,
.contact-strip-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.contact-email {
  margin: 1rem 0 0;
  font-size: 1.125rem;
}

.contact-email a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: var(--burgundy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3rem, 7vh, 4rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 2rem 1.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: block;
  width: min(36vw, 140px);
  height: auto;
  xfilter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-heading {
  margin: 0 0 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.15s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.5;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    margin-inline: auto;
  }

  .hero-body {
    margin-inline: auto;
  }

  .hero-ctas,
  .store-btns {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 0.5rem;
  }

  .cellar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cellar-card:nth-child(4),
  .cellar-card:nth-child(5) {
    grid-column: span 1;
  }

  .tasting-corner-inner,
  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tasting-corner-copy {
    align-items: center;
    max-width: none;
  }

  .tc-points {
    text-align: left;
    width: fit-content;
    margin-inline: auto;
  }

  .section-title--inverse,
  .section-sub--inverse {
    text-align: center;
  }

  .download-copy .section-title,
  .download-copy .section-sub {
    text-align: center;
  }

  .download-actions {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .cellar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .tasting-corner-gallery {
    grid-template-columns: 1fr;
  }

  .tc-photo--main {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

  .store-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-store {
    justify-content: center;
  }

  .download-actions {
    flex-direction: column;
    align-items: center;
  }
}
