:root {
  --cream: #fff7e8;
  --cream-2: #f6e7ca;
  --paper: rgba(255, 249, 236, 0.86);
  --paper-strong: rgba(255, 249, 236, 0.96);
  --espresso: #3a2412;
  --espresso-2: #5b3618;
  --green: #244d2b;
  --green-2: #386a3a;
  --gold: #c88428;
  --orange: #e87719;
  --shadow: 0 22px 65px rgba(61, 38, 18, 0.18);
  --soft-shadow: 0 14px 35px rgba(61, 38, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 38px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--espresso);
  background:
    radial-gradient(circle at 14% 12%, rgba(232, 119, 25, 0.16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(36, 77, 43, 0.12), transparent 32%),
    linear-gradient(135deg, #fff8ea 0%, #f6e4c0 52%, #fff7e8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(45deg, rgba(88, 49, 20, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(88, 49, 20, 0.08) 25%, transparent 25%);
  background-size: 42px 42px;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  z-index: 999;
  transform: translateY(-160%);
}

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

#bean-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bean-particle {
  position: absolute;
  width: var(--bean-size, 90px);
  opacity: var(--bean-opacity, 0.35);
  filter: blur(var(--bean-blur, 0px)) drop-shadow(0 18px 22px rgba(47, 29, 12, 0.24));
  transform: translate3d(0, 0, 0) rotate(var(--bean-rotate, 0deg));
  will-change: transform;
}

.form-status {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.form-status[hidden] {
  display: none !important;
}

.form-status.is-sending {
  color: #5e3d22;
  background: rgba(255, 248, 232, 0.9);
  border: 1px solid rgba(91, 54, 24, 0.16);
}

.form-status.is-success {
  color: #fdf8ed;
  background: linear-gradient(135deg, #244d2b, #2f6435);
  box-shadow: 0 12px 26px rgba(36, 77, 43, 0.22);
}

.form-status.is-error {
  color: #fff8ec;
  background: #8c2f1d;
  box-shadow: 0 12px 26px rgba(140, 47, 29, 0.18);
}

.contact-form .btn[type="submit"] {
  line-height: 1.35;
  min-height: 58px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.contact-form .btn[type="submit"].is-sending {
  opacity: 0.92;
}

.contact-form .btn[type="submit"].is-success-message {
  white-space: normal;
  padding-top: 14px;
  padding-bottom: 14px;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  z-index: 9999;
  pointer-events: auto;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(91, 54, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 249, 236, 0.78);
  box-shadow: 0 12px 45px rgba(58, 36, 18, 0.14);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 236, 0.94);
  box-shadow: 0 16px 50px rgba(58, 36, 18, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--espresso-2);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
  background: rgba(36, 77, 43, 0.05);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.header-cta,
.btn-primary {
  color: #fffaf0;
  background: linear-gradient(135deg, var(--green), #315f32);
  box-shadow: 0 12px 24px rgba(36, 77, 43, 0.25);
}

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

.btn-secondary {
  color: var(--espresso);
  background: #fff6e3;
  border: 1px solid rgba(91, 54, 24, 0.18);
  box-shadow: 0 12px 24px rgba(91, 54, 24, 0.12);
}

.btn-secondary.light {
  color: var(--espresso);
  background: #fff8e8;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 77, 43, 0.09);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px max(22px, calc((100vw - 1180px) / 2)) 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero-mobile-cafe.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.96) 0%, rgba(255, 248, 232, 0.84) 34%, rgba(255, 248, 232, 0.24) 63%, rgba(58, 36, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 247, 232, 0.95), transparent 22%, transparent 65%, rgba(255, 247, 232, 0.28));
}

.hero::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -1px;
  height: 95px;
  z-index: -1;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.hero-content {
  width: min(650px, 100%);
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.77rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--espresso);
  text-wrap: balance;
}

h1 {
  max-width: 770px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.036em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  color: #53351c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(91, 54, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 249, 236, 0.72);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
  font-size: 0.92rem;
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 78px;
  width: min(370px, calc(100% - 42px));
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 248, 232, 0.58);
  border-radius: 24px;
  color: #fff8e8;
  background: rgba(58, 36, 18, 0.68);
  box-shadow: 0 24px 50px rgba(42, 25, 10, 0.26);
  backdrop-filter: blur(18px);
}

.hero-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.hero-card strong {
  display: block;
  font-size: 1.03rem;
}

.hero-card p {
  margin: 7px 0 0;
  line-height: 1.45;
  color: rgba(255, 248, 232, 0.86);
}

.section {
  padding: 92px 0;
}

.intro-strip {
  padding-top: 36px;
  background: linear-gradient(180deg, var(--cream), rgba(255, 247, 232, 0.55));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strip-item,
.taste-card,
.contact-form,
.route-card,
.poster-copy,
.trailer-copy,
.trailer-video-card,
.drink-card,
.event-banner,
.story-copy {
  border: 1px solid rgba(91, 54, 24, 0.14);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.strip-item {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.strip-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: 0;
  font-size: 1.35rem;
}

.strip-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--green);
}

.strip-item p {
  margin: 8px 0 0;
  color: #674328;
  line-height: 1.5;
}


.trailer-section {
  padding-top: 72px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 85% 18%, rgba(232, 119, 25, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(255, 247, 232, 0.45), rgba(247, 225, 188, 0.28));
}

.trailer-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: center;
}

.trailer-copy {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
}

.trailer-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #614026;
  line-height: 1.65;
}

.trailer-copy .btn {
  margin-top: 26px;
}

.trailer-video-card {
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 1.6vw, 16px);
  border-radius: var(--radius-xl);
}

.trailer-video-card::before {
  content: "";
  position: absolute;
  inset: -26%;
  z-index: -1;
  background: radial-gradient(circle, rgba(232, 119, 25, 0.26), transparent 58%);
}

.trailer-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: rgba(58, 36, 18, 0.18);
  box-shadow: var(--shadow);
}

.trailer-video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-play-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 24px;
  color: #fff7e8;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(35, 25, 14, 0.38), rgba(35, 25, 14, 0.12)),
    url("assets/hero-mobile-cafe.webp") center/cover;
  transition: opacity 0.12s ease, transform 0.2s ease;
}

.trailer-play-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(255, 213, 142, 0.22), transparent 45%);
  pointer-events: none;
}

.trailer-play-cover:hover,
.trailer-play-cover:focus-visible {
  transform: scale(1.015);
}

.trailer-play-icon,
.trailer-play-title,
.trailer-play-subtitle {
  position: relative;
  z-index: 1;
}

.trailer-play-icon {
  display: grid;
  place-items: center;
  width: clamp(58px, 8vw, 78px);
  height: clamp(58px, 8vw, 78px);
  border-radius: 999px;
  padding-left: 5px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  background: rgba(37, 87, 45, 0.92);
  box-shadow: 0 18px 34px rgba(25, 22, 16, 0.32);
}

.trailer-play-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.trailer-play-subtitle {
  max-width: 330px;
  color: rgba(255, 247, 232, 0.9);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.trailer-video-frame.is-playing .trailer-play-cover {
  opacity: 0;
  pointer-events: none;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 620px;
  color: #674328;
  line-height: 1.65;
  font-size: 1rem;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.drink-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.drink-card img {
  width: 100%;
  aspect-ratio: 1.03 / 1;
  object-fit: cover;
}

.drink-card div {
  padding: 16px;
}

.drink-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--green);
}

.drink-card p {
  margin: 9px 0 0;
  color: #604026;
  font-size: 0.93rem;
  line-height: 1.45;
}

.menu-poster {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 36px;
}

.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
}

.poster-copy p:not(.eyebrow) {
  margin: 16px 0 26px;
  color: #614026;
  line-height: 1.65;
}

.poster-frame {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transform: rotate(0.75deg);
  transition: transform 220ms ease;
}

.poster-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.3), rgba(247, 225, 188, 0.34)),
    radial-gradient(circle at 0 50%, rgba(36, 77, 43, 0.13), transparent 36%);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: center;
}

.story-copy {
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-xl);
}

/* Smaller story title so it does not dominate the section */
.story-copy h2 {
  max-width: 620px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.story-copy p:not(.eyebrow) {
  color: #614026;
  line-height: 1.7;
  font-size: 1.02rem;
}

.story-pages {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.story-pages p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 239, 0.92), rgba(245, 230, 201, 0.62));
  border: 1px solid rgba(91, 54, 24, 0.1);
}

.story-pages span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(210, 134, 36, 0.16);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 1000;
  border-bottom: 2px solid rgba(36, 77, 43, 0.28);
}

.story-collage {
  position: relative;
  min-height: 560px;
}

.collage-main,
.collage-small {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 9px solid rgba(255, 248, 232, 0.88);
}

.collage-main {
  inset: 0 8% 10% 0;
  width: 82%;
  height: 84%;
  border-radius: 34px;
}

.collage-small {
  border-radius: 25px;
}

.collage-one {
  right: 0;
  bottom: 0;
  width: 34%;
  aspect-ratio: 1;
  transform: rotate(7deg);
}

.collage-two {
  right: 3%;
  top: 6%;
  width: 30%;
  aspect-ratio: 1.18 / 1;
  transform: rotate(-5deg);
}

.taste-section {
  padding-top: 40px;
}

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

.taste-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.taste-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(200, 132, 40, 0.18);
  font-size: 1.65rem;
}

.taste-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0;
  color: var(--green);
}

.taste-card p {
  margin: 11px 0 0;
  line-height: 1.55;
  color: #674328;
}

.event-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(36, 77, 43, 0.95), rgba(58, 36, 18, 0.95));
  color: #fff7e6;
}

.event-copy {
  padding: clamp(30px, 5vw, 56px);
  align-self: center;
}

.event-copy .eyebrow,
.event-copy h2 {
  color: #fff7e6;
}

.event-copy p:not(.eyebrow) {
  color: rgba(255, 247, 230, 0.83);
  line-height: 1.7;
  margin: 18px 0 28px;
}

.event-banner img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.locations-section {
  padding-top: 60px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  align-items: center;
}

.locations-copy p:not(.eyebrow) {
  color: #614026;
  line-height: 1.65;
  margin: 17px 0 26px;
}

.route-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 249, 236, 0.7), rgba(239, 216, 177, 0.72)),
    repeating-linear-gradient(35deg, rgba(91, 54, 24, 0.08) 0 2px, transparent 2px 32px),
    repeating-linear-gradient(126deg, rgba(36, 77, 43, 0.08) 0 2px, transparent 2px 42px);
}

.route-card::before {
  content: "VANCOUVER";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 1000;
  color: rgba(58, 36, 18, 0.075);
  letter-spacing: 0.08em;
}

.route-line {
  position: absolute;
  left: 16%;
  right: 15%;
  top: 51%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  transform: rotate(-5deg);
  opacity: 0.55;
}

.pin {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.92);
  box-shadow: var(--soft-shadow);
  font-weight: 1000;
  color: var(--green);
}

.pin::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232, 119, 25, 0.15);
}

.pin-one { left: 12%; top: 22%; }
.pin-two { left: 7%; bottom: 20%; }
.pin-three { right: 18%; top: 26%; }
.pin-four { right: 9%; bottom: 18%; }










.gallery-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  align-items: stretch;
}

.gallery-grid-expanded img {
  height: 100%;
  min-height: 0;
  transform: none !important;
}

.gallery-grid-expanded img:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.gallery-grid-expanded img:nth-child(2),
.gallery-grid-expanded img:nth-child(3) {
  grid-column: 3;
}

.gallery-grid-expanded img:nth-child(6) {
  object-position: center center;
}

.gallery-section {
  padding-top: 44px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(91, 54, 24, 0.13);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  transform: translateY(30px);
}

.contact-section {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: #614026;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 236, 0.86);
  color: var(--green);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--green);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(91, 54, 24, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--espresso);
  padding: 14px 15px;
  outline: 0;
  transition: border 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(36, 77, 43, 0.7);
  box-shadow: 0 0 0 4px rgba(36, 77, 43, 0.13);
  background: #fffdf5;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #765239;
  line-height: 1.45;
  font-size: 0.9rem;
}

.form-status {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.form-status[hidden] {
  display: none !important;
}

.form-status.is-sending {
  color: #5e3d22;
  background: rgba(255, 248, 232, 0.9);
  border: 1px solid rgba(91, 54, 24, 0.16);
}

.form-status.is-success {
  color: #fdf8ed;
  background: linear-gradient(135deg, #244d2b, #2f6435);
  box-shadow: 0 12px 26px rgba(36, 77, 43, 0.22);
}

.form-status.is-error {
  color: #fff8ec;
  background: #8c2f1d;
  box-shadow: 0 12px 26px rgba(140, 47, 29, 0.18);
}

.contact-form .btn[type="submit"] {
  line-height: 1.35;
  min-height: 58px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.contact-form .btn[type="submit"].is-sending {
  opacity: 0.92;
}

.contact-form .btn[type="submit"].is-success-message {
  white-space: normal;
  padding-top: 14px;
  padding-bottom: 14px;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.site-footer {
  padding: 46px 0 28px;
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(58, 36, 18, 0.96), rgba(27, 46, 24, 0.96)),
    url("assets/beans-texture.webp") center/cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.site-footer img {
  width: 230px;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  margin: 0;
  color: rgba(255, 247, 232, 0.76);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav a {
  color: rgba(255, 247, 232, 0.82);
  font-weight: 800;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
}

.copyright {
  width: var(--container);
  margin: 26px auto 0 !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 247, 232, 0.16);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 48px;
  border: 1px solid rgba(91, 54, 24, 0.14);
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card img {
  width: 240px;
  margin: 0 auto 20px;
}

.thanks-card p {
  color: #614026;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .drink-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .hero {
    align-content: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 248, 232, 0.97) 0%, rgba(255, 248, 232, 0.86) 48%, rgba(255, 248, 232, 0.36) 100%),
      linear-gradient(0deg, rgba(255, 247, 232, 0.95), transparent 25%, transparent 65%, rgba(255, 247, 232, 0.28));
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 26px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .site-nav {
    position: absolute;
    z-index: 10000;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(91, 54, 24, 0.16);
    border-radius: 24px;
    background: rgba(255, 249, 236, 0.96);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.86) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 70px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .strip-grid,
  .trailer-grid,
  .taste-grid,
  .story-grid,
  .event-banner,
  .locations-grid,
  .contact-grid,
  .footer-grid,
  .menu-poster {
    grid-template-columns: 1fr;
  }

  .story-collage {
    min-height: 470px;
  }

  .event-banner img {
    min-height: 320px;
  }

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

  .gallery-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-grid-expanded img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-grid-expanded img:nth-child(2),
  .gallery-grid-expanded img:nth-child(3) {
    grid-column: auto;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3) {
    height: 260px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
  }

  .story-copy h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    grid-template-columns: 86px 1fr;
    width: 100%;
  }

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

  .poster-frame {
    min-height: 430px;
  }

  .story-collage {
    min-height: 400px;
  }

  .collage-main {
    width: 92%;
    height: 78%;
  }

  .collage-one {
    width: 42%;
  }

  .collage-two {
    width: 38%;
  }

  .route-card {
    min-height: 430px;
  }

  .pin-one { left: 7%; top: 18%; }
  .pin-two { left: 7%; bottom: 24%; }
  .pin-three { right: 6%; top: 36%; }
  .pin-four { right: 6%; bottom: 13%; }

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

  .gallery-grid-expanded {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid-expanded img,
  .gallery-grid-expanded img:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .gallery-grid img {
    height: 300px;
  }

  .contact-details a,
  .contact-details span {
    width: 100%;
  }

  .thanks-card {
    padding: 32px 22px;
  }
}

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

  #bean-scene {
    display: none;
  }
}


.route-map-card {
  padding: 0;
  background: rgba(255, 248, 232, 0.9);
  border: 1px solid rgba(133, 101, 64, 0.16);
  box-shadow: var(--soft-shadow);
}

.route-map-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.route-map-card figcaption {
  padding: 14px 18px 18px;
  color: #6b4c2f;
  font-size: 0.95rem;
  line-height: 1.45;
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.96), rgba(247, 236, 216, 0.96));
  border-top: 1px solid rgba(133, 101, 64, 0.12);
}


.story-highlight {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid rgba(210, 134, 36, 0.6);
  background: rgba(255, 246, 231, 0.8);
  color: #5f3e23;
  font-weight: 700;
  border-radius: 12px;
}

.pastry-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.95), rgba(244, 230, 203, 0.95)),
    radial-gradient(circle at 0 0, rgba(210, 134, 36, 0.08), transparent 35%);
}

.pastry-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.pastry-copy {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(91, 54, 24, 0.14);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.pastry-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #65432a;
  line-height: 1.7;
}

.pastry-copy .btn {
  margin-top: 22px;
}

.pastry-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(91, 54, 24, 0.14);
  box-shadow: var(--shadow);
}

.pastry-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

  .pastry-visual img {
    min-height: 320px;
  }
}


/* Contact form honeypot helper */
.honeypot-field,
.netlify-hidden {
  display: none !important;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.optional {
  color: rgba(91, 54, 24, 0.62);
  font-size: 0.82em;
  font-weight: 700;
}

@media (max-width: 620px) {
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }
}


.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(210, 134, 36, 0.18), transparent 35%),
    linear-gradient(135deg, #fff8ec, #f1dfbe);
}

.thanks-wrap {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 64px);
  border-radius: 34px;
  text-align: center;
  background: rgba(255, 248, 232, 0.92);
  border: 1px solid rgba(91, 54, 24, 0.14);
  box-shadow: var(--shadow);
}

.thanks-wrap img {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
}

.thanks-wrap h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
}

.thanks-wrap p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 26px;
  color: #65432a;
  line-height: 1.7;
}



@media (max-width: 980px) {

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

  .gallery-grid-expanded img,
  .gallery-grid-expanded img:nth-child(1),
  .gallery-grid-expanded img:nth-child(2) {
    grid-column: auto;
    height: 320px;
    transform: none;
  }
}

@media (max-width: 680px) {
}


@media (max-width: 680px) {
  .story-pages p {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-pages span {
    width: 34px;
    height: 34px;
  }
}

/* Mobile typography + footer polish */
@media (max-width: 620px) {
  .hero-content,
  .section-heading,
  .pastry-copy,
  .story-copy,
  .event-copy,
  .locations-copy,
  .contact-copy,
  .poster-copy {
    text-wrap: pretty;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.13em;
  }

  h1,
  h2,
  h3,
  .poster-copy h3,
  .story-copy h2 {
    line-height: 1.14;
    letter-spacing: -0.028em;
    word-spacing: 0.02em;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    margin-bottom: 8px;
  }

  h2,
  .story-copy h2 {
    max-width: 14ch;
    margin-bottom: 8px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .poster-copy p:not(.eyebrow),
  .story-copy p:not(.eyebrow),
  .pastry-copy p:not(.eyebrow),
  .event-copy p:not(.eyebrow),
  .locations-copy p:not(.eyebrow),
  .contact-copy p:not(.eyebrow),
  .taste-card p,
  .strip-item p,
  .drink-card p {
    font-size: 0.99rem;
    line-height: 1.72;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 14px;
  }

  .story-copy,
  .pastry-copy,
  .poster-copy,
  .contact-form,
  .event-copy,
  .taste-card,
  .strip-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-pages {
    gap: 12px;
    margin-top: 18px;
  }

  .story-pages p {
    padding: 16px;
    line-height: 1.68;
  }

  .story-highlight {
    margin-top: 16px;
    line-height: 1.68;
  }

  .footer-grid {
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .footer-grid > div,
  .footer-grid > nav {
    width: 100%;
  }

  .footer-grid nav {
    justify-items: center;
  }

  .site-footer img {
    width: min(210px, 68vw);
    margin: 0 auto 14px;
  }

  .site-footer .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .copyright {
    text-align: center;
    line-height: 1.55;
  }
}

/* Enhanced parallax particles: coffee beans */
.bean-particle {
  transition: opacity 220ms ease;
  transform-origin: center center;
  backface-visibility: hidden;
}

.bean-particle.is-bean {
  filter: blur(var(--bean-blur, 0px)) drop-shadow(0 20px 26px rgba(47, 29, 12, 0.28));
}

@media (max-width: 820px) {
  .bean-particle {
    opacity: calc(var(--bean-opacity, 0.35) + 0.05);
  }

  .bean-particle.is-bean {
    filter: blur(var(--bean-blur, 0px)) drop-shadow(0 16px 22px rgba(47, 29, 12, 0.3));
  }
}

/* Center the small label and CTA in the menu poster card */
.poster-copy .eyebrow,
.poster-copy .btn {
  align-self: center;
}

.poster-copy p:not(.eyebrow) {
  text-align: center;
}


/* Live cart location card */
.today-location-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(91, 54, 24, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 119, 25, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 249, 236, 0.95), rgba(246, 231, 202, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.today-location-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(36, 77, 43, 0.07);
  pointer-events: none;
}

.today-location-topline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.live-pill,
.updated-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-pill {
  color: #fff8e8;
  background: linear-gradient(135deg, #244d2b, #39703c);
  box-shadow: 0 10px 20px rgba(36, 77, 43, 0.2);
}

.live-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff9a2d;
  box-shadow: 0 0 0 5px rgba(232, 119, 25, 0.18);
}

.live-pill.is-closed {
  background: linear-gradient(135deg, #6b4c2f, #8b6a4b);
}

.updated-pill {
  color: var(--green);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(91, 54, 24, 0.12);
}

.today-location-card .eyebrow,
.today-location-card h3,
.today-location-card p,
.today-location-card .today-location-actions {
  position: relative;
  z-index: 1;
}

.today-location-card h3 {
  max-width: 620px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.today-location-address {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 1000;
  line-height: 1.4;
}

.today-location-time {
  margin: 8px 0 0;
  color: var(--espresso);
  font-weight: 900;
}

.today-location-note {
  margin: 15px 0 0;
  max-width: 640px;
  color: #614026;
  line-height: 1.68;
}

.today-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}


@media (max-width: 880px) {
  .today-location-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .today-location-card h3 {
    line-height: 1.12;
    letter-spacing: -0.028em;
  }
}


/* Cleaner centered live cart location card */
.today-location-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.today-location-topline,
.today-location-actions {
  justify-content: center;
}

.today-location-card h3,
.today-location-address,
.today-location-time {
  margin-left: auto;
  margin-right: auto;
}

.today-location-card .eyebrow {
  text-align: center;
}

.today-location-address,
.today-location-time {
  text-align: center;
}

.today-location-note,
[data-cart-note] {
  display: none !important;
}

.today-location-actions {
  width: 100%;
  margin-top: 26px;
}

@media (max-width: 620px) {
  .today-location-actions .btn {
    width: 100%;
    max-width: 260px;
  }
}


/* Restore Find Us layout under Today's Cart */
.locations-today-section {
  padding-bottom: 18px;
}

.find-us-section {
  padding-top: 8px;
}

.locations-grid-restored {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 42px;
  align-items: center;
}

.locations-grid-restored .locations-copy {
  width: 100%;
  max-width: 500px;
  justify-self: center;
}

.locations-grid-restored .route-map-card {
  width: 100%;
  max-width: 760px;
  justify-self: center;
}

@media (max-width: 1216px) {
  .locations-grid-restored {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .locations-grid-restored .locations-copy {
    max-width: 680px;
    text-align: center;
  }

  .locations-grid-restored .locations-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .locations-grid-restored .route-map-card {
    max-width: 860px;
  }
}

/* Extra mobile text centering polish */
@media (max-width: 680px) {
  .hero-content,
  .section-heading,
  .strip-item,
  .poster-copy,
  .pastry-copy,
  .story-copy,
  .taste-card,
  .event-copy,
  .locations-copy,
  .contact-copy,
  .drink-card div,
  .route-map-card figcaption {
    text-align: center;
  }

  .hero-content,
  .section-heading,
  .poster-copy,
  .pastry-copy,
  .story-copy,
  .event-copy,
  .locations-copy,
  .contact-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .poster-copy p:not(.eyebrow),
  .story-copy p:not(.eyebrow),
  .story-highlight,
  .pastry-copy p:not(.eyebrow),
  .event-copy p:not(.eyebrow),
  .locations-copy p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-points,
  .today-location-actions,
  .contact-details {
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn,
  .poster-copy .btn,
  .pastry-copy .btn,
  .event-copy .btn,
  .locations-copy .btn,
  .contact-copy .btn,
  .today-location-actions .btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points span {
    width: 100%;
    text-align: center;
  }

  .drink-card div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .drink-card h3,
  .drink-card p,
  .taste-card h3,
  .taste-card p,
  .strip-item strong,
  .strip-item p,
  .story-pages p,
  .route-map-card figcaption {
    text-align: center;
  }

  .story-pages p {
    justify-items: center;
  }

  .story-pages span {
    margin: 0 auto;
  }

  .text-link {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-details {
    justify-items: center;
  }

  .contact-details a,
  .contact-details span {
    width: min(100%, 320px);
    justify-content: center;
    text-align: center;
  }

  .footer-grid,
  .copyright {
    text-align: center;
  }
}


/* FORCE mobile centering fix — titles were centered as text but their blocks were still left-aligned */
@media (max-width: 680px) {
  .hero-content,
  .section-heading,
  .poster-copy,
  .pastry-copy,
  .story-copy,
  .event-copy,
  .locations-copy,
  .contact-copy,
  .today-location-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-content h1,
  .section-heading h2,
  .poster-copy h3,
  .pastry-copy h2,
  .story-copy h2,
  .event-copy h2,
  .locations-copy h2,
  .contact-copy h2,
  .today-location-card h3,
  h1,
  h2,
  h3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-content h1 {
    max-width: 13ch !important;
  }

  .pastry-copy h2,
  .story-copy h2,
  .event-copy h2,
  .locations-copy h2,
  .contact-copy h2 {
    max-width: 15ch !important;
  }

  .section-heading h2 {
    max-width: 16ch !important;
  }

  .hero-copy,
  .section-heading p,
  .poster-copy p,
  .pastry-copy p,
  .story-copy p,
  .event-copy p,
  .locations-copy p,
  .contact-copy p,
  .today-location-card p,
  .drink-card p,
  .taste-card p,
  .strip-item p,
  .story-highlight {
    width: 100% !important;
    max-width: 32ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .story-pages p {
    max-width: 100% !important;
    justify-items: center !important;
  }

  .hero-actions,
  .hero-points,
  .today-location-actions,
  .contact-details {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-actions .btn,
  .poster-copy .btn,
  .pastry-copy .btn,
  .event-copy .btn,
  .locations-copy .btn,
  .contact-copy .btn,
  .today-location-actions .btn {
    width: 100% !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Mobile-only Vancouver map image support */
.route-map-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.route-map-card picture img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 680px) {
  .route-map-card {
    min-height: auto !important;
  }

  .route-map-card img {
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: top center !important;
  }

  .route-map-card figcaption {
    text-align: center !important;
  }
}
