:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --panel-2: #171717;
  --ink: #f7f2ea;
  --muted: #b9afa5;
  --line: rgba(255, 255, 255, 0.12);
  --red: #b01420;
  --red-2: #e12633;
  --gold: #d4b26a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.greenacres-graffiti {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(225, 38, 51, 0.32), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(32, 190, 181, 0.2), transparent 22rem),
    linear-gradient(140deg, #050505 0%, #0a0a0a 45%, #130609 100%);
}

body.greenacres-graffiti::before,
body.greenacres-graffiti::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body.greenacres-graffiti::before {
  opacity: 0.92;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 54px 54px,
    repeating-linear-gradient(112deg, transparent 0 64px, rgba(225, 38, 51, 0.13) 64px 70px, transparent 70px 132px),
    radial-gradient(circle at 78% 12%, rgba(225, 38, 51, 0.78) 0 3.6rem, transparent 3.7rem),
    radial-gradient(circle at 78% 12%, rgba(247, 242, 234, 0.82) 0 1.25rem, transparent 1.32rem),
    radial-gradient(circle at 13% 76%, rgba(32, 190, 181, 0.16), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%, rgba(0, 0, 0, 0.42));
}

body.greenacres-graffiti::after {
  z-index: -1;
  opacity: 0.5;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px) 0 0 / 22px 22px,
    radial-gradient(circle at 65% 72%, rgba(225, 38, 51, 0.28) 0 1px, transparent 2px) 0 0 / 18px 18px;
}

.greenacres-graffiti main {
  position: relative;
  isolation: isolate;
}

.greenacres-graffiti main::before,
.greenacres-graffiti main::after {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  color: rgba(247, 242, 234, 0.13);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(225, 38, 51, 0.36),
    -2px -1px 0 rgba(32, 190, 181, 0.22);
}

.greenacres-graffiti main::before {
  content: "禅\A 東京\A ZAZEN";
  top: 118px;
  right: max(20px, calc((100vw - 1180px) / 2 - 74px));
  max-width: 340px;
  white-space: pre;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  transform: rotate(-8deg);
}

.greenacres-graffiti main::after {
  content: "座禅 / 赤 / 花";
  bottom: 36px;
  left: max(18px, calc((100vw - 1180px) / 2 - 54px));
  max-width: 420px;
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  transform: rotate(7deg);
}

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

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
  text-align: center;
}

.age-panel img {
  width: 140px;
  margin: 0 auto 18px;
  border-radius: 8px;
}

.age-panel p {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 800;
}

.age-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

button,
.button,
.nav-cta {
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary,
#ageYes {
  background: var(--ink);
  color: var(--bg);
}

.secondary,
#ageNo {
  background: #242424;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(10px);
}

.greenacres-graffiti .site-header {
  background:
    linear-gradient(90deg, rgba(176, 20, 32, 0.2), transparent 38%, rgba(32, 190, 181, 0.12)),
    rgba(7, 7, 7, 0.88);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #151515;
  color: var(--ink);
  font-weight: 900;
}

.greenacres-graffiti .cart-tab {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(176, 20, 32, 0.34);
}

.cart-tab span {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--gold);
  text-align: center;
  font-size: 0.78rem;
}

.greenacres-graffiti .cart-tab span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

.hero {
  min-height: 58vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 20px 52px;
}

.greenacres-graffiti .hero {
  min-height: 64vh;
}

.greenacres-graffiti .hero-copy {
  position: relative;
  max-width: 1140px;
}

.greenacres-graffiti .hero-copy::before {
  content: "路地裏メニュー";
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 10px 6px;
  border: 1px solid rgba(247, 242, 234, 0.18);
  border-left: 5px solid var(--red-2);
  background: rgba(9, 9, 9, 0.72);
  color: rgba(247, 242, 234, 0.82);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  transform: rotate(-1.5deg);
}

.daily-deals-banner {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  padding: clamp(16px, 2.4vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 139, 148, 0.24) 0 3.2rem, transparent 3.4rem),
    radial-gradient(circle at 78% 18%, rgba(225, 38, 51, 0.34) 0 5.4rem, transparent 5.8rem),
    radial-gradient(circle at 52% 84%, rgba(255, 197, 202, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.96) 42%, rgba(57, 8, 13, 0.94) 100%),
    repeating-linear-gradient(-8deg, rgba(255, 152, 160, 0.12) 0 2px, transparent 2px 16px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 16px 36px rgba(225, 38, 51, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.daily-deals-banner::before,
.daily-deals-banner::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.daily-deals-banner::before {
  inset: 0;
  opacity: 0.24;
  background:
    radial-gradient(circle, rgba(255, 187, 192, 0.38) 0 2px, transparent 2.8px) 0 0 / 44px 44px,
    radial-gradient(circle, rgba(225, 38, 51, 0.2) 0 13px, transparent 13.8px) 12px 14px / 74px 68px;
}

.daily-deals-banner::after {
  top: -22px;
  right: 18px;
  content: "日替";
  color: rgba(255, 151, 159, 0.14);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 1000;
  line-height: 1;
}

.daily-deals-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.daily-deals-title span {
  display: inline-flex;
  margin-bottom: 6px;
  color: #ffc9ce;
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.daily-deals-title strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2.6rem, 7.4vw, 6.6rem);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 #4c080e,
    0 9px 0 rgba(255, 157, 165, 0.62),
    0 16px 26px rgba(0, 0, 0, 0.48);
  -webkit-text-stroke: 1px rgba(35, 0, 4, 0.82);
}

.daily-deals-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.daily-deal-card {
  position: relative;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 170, 176, 0.54);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 237, 239, 0.94), rgba(255, 176, 183, 0.68) 54%, rgba(166, 34, 46, 0.6)),
    rgba(255, 158, 166, 0.68);
  color: #160609;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 28px rgba(0, 0, 0, 0.22);
}

.daily-deal-card::after {
  position: absolute;
  inset: auto 8px 8px;
  height: 42%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(10px);
  content: "";
}

.daily-deal-card b {
  display: block;
  color: #160609;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.daily-deal-card p {
  min-height: 48px;
  margin: 0;
  color: #160609;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: left;
}

.daily-deal-card img {
  width: 100%;
  height: 104px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.04);
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.26);
}

.daily-deal-card:nth-child(odd) img {
  transform: rotate(-2deg);
}

.daily-deal-card:nth-child(even) img {
  transform: rotate(2deg);
}

.daily-deals-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.daily-deals-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.daily-deals-dots .active {
  background: #e12633;
  box-shadow: 0 0 0 3px rgba(225, 38, 51, 0.2);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.visit p,
footer p,
.merch p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-locations,
.section,
.brand-strip,
.visit,
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px;
}

.quick-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-locations a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.greenacres-graffiti .quick-locations a,
.greenacres-graffiti .deal-grid article,
.greenacres-graffiti .feeling-grid a,
.greenacres-graffiti .visit {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.quick-locations span {
  color: var(--muted);
}

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

.category-grid,
.deal-grid,
.feeling-grid,
.merch-grid {
  display: grid;
  gap: 14px;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 155px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
  font-size: 1.05rem;
  font-weight: 900;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 18% 18%, rgba(225, 38, 51, 0.38), transparent 28%);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 180ms ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card span {
  position: relative;
  z-index: 1;
}

.deals {
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #0c0c0c;
}

.greenacres-graffiti .deals {
  position: relative;
  background:
    linear-gradient(90deg, rgba(176, 20, 32, 0.18), rgba(5, 5, 5, 0.78) 24%, rgba(5, 5, 5, 0.88)),
    rgba(12, 12, 12, 0.8);
}

.greenacres-graffiti .deals::before {
  position: absolute;
  top: 28px;
  right: max(20px, calc((100vw - 1180px) / 2));
  content: "特価";
  color: rgba(225, 38, 51, 0.18);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 1000;
  line-height: 0.8;
}

.deal-grid {
  grid-template-columns: repeat(4, 1fr);
}

.deal-grid article,
.merch-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.deal-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red-2);
  font-weight: 900;
}

.feeling-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feeling-grid a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  text-align: center;
  font-weight: 900;
}

.brand-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.greenacres-graffiti .brand-strip {
  position: relative;
}

.greenacres-graffiti .brand-strip::before {
  position: absolute;
  top: 22px;
  left: 20px;
  right: 20px;
  z-index: -1;
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(-8deg, rgba(225, 38, 51, 0.18) 0 12px, transparent 12px 34px),
    rgba(8, 8, 8, 0.5);
  content: "";
  transform: skewY(-1deg);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-row a {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
  font-weight: 900;
}

.product-row a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(225, 38, 51, 0.42), transparent 30%);
}

.product-row img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-row a:hover img {
  transform: scale(1.06);
}

.product-row span {
  position: relative;
  z-index: 1;
}

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

.merch-grid img {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 8px;
}

.merch-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 20px 34px;
}

.merch-hero h1 {
  max-width: 820px;
}

.merch-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

.merch-store {
  padding-top: 20px;
}

.merch-shop-grid article {
  display: grid;
  gap: 16px;
  scroll-margin-top: 112px;
}

.merch-shop-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #ffffff;
}

.merch-shop-media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.merch-shop-media-tee img {
  object-position: center bottom;
  transform: scale(1.8);
  transform-origin: center bottom;
}

.merch-shop-media-cap img {
  object-fit: contain;
  padding: clamp(12px, 4vw, 28px);
}

.merch-shop-media:hover img,
.merch-shop-media:focus-visible img {
  filter: contrast(1.04) saturate(1.05);
  transform: scale(1.02);
}

.merch-shop-media-tee:hover img,
.merch-shop-media-tee:focus-visible img {
  transform: scale(1.84);
}

.merch-shop-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-shop-copy strong {
  display: inline-flex;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.merch-order {
  display: grid;
  grid-template-columns: 1fr 100px auto;
  gap: 10px;
  align-items: end;
}

.merch-order label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.merch-order select,
.merch-order input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d0d0d;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.merch-order button {
  min-height: 44px;
  background: var(--red-2);
  color: white;
  white-space: nowrap;
}

.visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(176, 20, 32, 0.2), rgba(255, 255, 255, 0.04));
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

footer img {
  width: 64px;
  border-radius: 8px;
}

footer p {
  max-width: 620px;
  margin: 0;
}

footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .quick-locations,
  .deal-grid,
  .feeling-grid,
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .hero {
    padding-top: 46px;
  }

  .greenacres-graffiti h1 {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: clamp(2rem, 9.6vw, 2.45rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .greenacres-graffiti .hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .greenacres-graffiti .hero-copy {
    width: min(100%, calc(100vw - 40px));
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .daily-deals-banner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 14px;
  }

  .daily-deals-title strong {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.4vw, 2.25rem);
    line-height: 0.84;
    overflow-wrap: break-word;
    white-space: nowrap;
  }

  .daily-deals-track {
    display: flex;
    gap: 8px;
    margin-inline: -14px;
    padding: 0 14px 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .daily-deals-track::-webkit-scrollbar {
    display: none;
  }

  .daily-deal-card {
    min-width: 108px;
    min-height: 188px;
    gap: 7px;
    padding: 9px 7px 8px;
    scroll-snap-align: start;
  }

  .daily-deal-card b {
    font-size: 0.95rem;
  }

  .daily-deal-card p {
    min-height: 42px;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .daily-deal-card img {
    height: 74px;
  }

  .greenacres-graffiti main::before {
    top: 170px;
    right: -108px;
    font-size: clamp(4rem, 18vw, 5.4rem);
    opacity: 0.66;
  }

  .greenacres-graffiti main::after {
    left: -78px;
    font-size: clamp(3rem, 16vw, 4.6rem);
    opacity: 0.5;
  }

  .quick-locations,
  .category-grid,
  .deal-grid,
  .feeling-grid,
  .product-row,
  .merch-grid,
  .merch-order {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .visit,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
