@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Pacifico&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cream: #fde9ac;
  --red: #e5351e;
  --orange: #f27628;
  --green: #689e3e;
  --blue: #1f756a;
  --ink: #2b140c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
}

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

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

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 22px 8vw;
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 53, 30, 0.12);
  gap: 24px;
  position: relative;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--red);
  justify-content: flex-end;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.site-nav a:hover {
  border-bottom-color: var(--red);
}

.menu-btn {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(229, 53, 30, 0.2);
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-footer a,
.legal a {
  color: var(--red);
}

.site-footer a:hover,
.legal a:hover {
  color: var(--orange);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 6vw 24px;
  display: grid;
  gap: 90px;
}

.locations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 6vw 90px;
  display: grid;
  gap: 32px;
}

.shop {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 6vw 90px;
  display: grid;
  gap: 28px;
}

.shop-hero {
  background: linear-gradient(120deg, rgba(229, 53, 30, 0.12) 0%, rgba(242, 118, 40, 0.15) 45%, rgba(104, 158, 62, 0.12) 100%);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(43, 20, 12, 0.1);
}

.shop-hero h1 {
  margin-bottom: 6px;
}

.shop-stock {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--red);
}

.stock-pill {
  background: var(--red);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: start;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(43, 20, 12, 0.12);
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(43, 20, 12, 0.08);
}

.product-card h2 {
  font-size: 1.2rem;
  color: var(--ink);
}

.product-visual {
  background: #fff6d6;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.merch-placeholder {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

.tax {
  font-size: 0.85rem;
  color: rgba(43, 20, 12, 0.6);
}

.cart-summary {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1.5px solid rgba(43, 20, 12, 0.12);
  box-shadow: 0 12px 24px rgba(43, 20, 12, 0.08);
  display: grid;
  gap: 14px;
  position: sticky;
  top: 24px;
}

.cart-summary h3 {
  font-size: 1.3rem;
  color: var(--red);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cart-row.total {
  font-size: 1.1rem;
}

.cart-divider {
  height: 1px;
  background: rgba(43, 20, 12, 0.12);
}

.stock-note {
  font-size: 0.95rem;
  color: rgba(43, 20, 12, 0.75);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn[disabled]:hover {
  transform: none;
}

.stock-modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 20, 12, 0.45);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 10001;
}

.stock-modal.is-visible {
  display: grid;
}

.stock-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 28px;
  max-width: 420px;
  width: min(90vw, 420px);
  text-align: center;
  border: 2px solid rgba(229, 53, 30, 0.2);
  box-shadow: 0 18px 40px rgba(43, 20, 12, 0.2);
  display: grid;
  gap: 10px;
}

.locations-hero {
  background: linear-gradient(120deg, var(--red) 0%, #e84222 68%, var(--orange) 100%);
  border-radius: 24px;
  padding: 22px 28px;
  box-shadow: 0 18px 40px rgba(43, 20, 12, 0.12);
  color: #ffffff;
}

.locations-hero,
.partner-hero,
.story-hero,
.legal-hero {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.locations-hero h1 {
  margin-bottom: 10px;
  color: #FDE9AC;
}

.locations-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  border: 1.5px solid rgba(229, 53, 30, 0.2);
  background: #ffffff;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(43, 20, 12, 0.08);
}

.toggle-btn {
  border: 0;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.toggle-btn.is-active {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(229, 53, 30, 0.28);
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.locations-panel {
  display: none;
  gap: 24px;
}

.locations-panel.is-active {
  display: grid;
  gap: 24px;
}

.locations-map {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(229, 53, 30, 0.15);
  min-height: 420px;
  background: #ffffff;
}

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

.locations-leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.locations-leaflet-map .leaflet-control-zoom {
  border: none;
  box-shadow: 0 10px 24px rgba(35, 31, 28, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.locations-leaflet-map .leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.96);
  color: #2b140c;
  border: none;
}

.locations-leaflet-map .leaflet-control-zoom a:hover {
  background: #ffffff;
}

.locations-leaflet-map .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(35, 31, 28, 0.22);
  border: 1px solid rgba(229, 53, 30, 0.2);
}

.locations-leaflet-map .leaflet-popup-content {
  margin: 10px 12px;
  font-weight: 600;
  color: #2b140c;
}

.custom-map-pin-wrap {
  background: transparent;
  border: none;
}

.custom-map-pin {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5351e;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 14px rgba(35, 31, 28, 0.4);
}

.map-pin-label {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #2b140c;
  font-size: 10px;
  font-weight: 600;
  padding: 0;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.map-pin-label:before {
  display: none;
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.partner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 6vw 90px;
  display: grid;
  gap: 24px;
}

.partner-hero {
  background: linear-gradient(120deg, var(--red) 0%, #e84222 68%, var(--orange) 100%);
  border-radius: 20px;
  padding: 20px 26px;
  border: none;
  color: #ffffff;
}

.partner-hero h1 {
  margin-bottom: 8px;
  color: var(--cream);
}

.partner-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(229, 53, 30, 0.12);
  box-shadow: 0 14px 30px rgba(43, 20, 12, 0.08);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-form form {
  display: grid;
  gap: 16px;
}

.partner-fields {
  display: none;
  gap: 16px;
}

.partner-fields.is-visible {
  display: grid;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.captcha input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.form-note {
  margin-top: 12px;
  font-weight: 600;
  color: var(--red);
  min-height: 1.2em;
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field textarea {
  border-radius: 14px;
  border: 1.5px solid rgba(43, 20, 12, 0.2);
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.field select {
  border-radius: 14px;
  border: 1.5px solid rgba(43, 20, 12, 0.2);
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  width: 100%;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(90px, 120px) 1fr;
  gap: 10px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(229, 53, 30, 0.6);
  box-shadow: 0 0 0 3px rgba(229, 53, 30, 0.15);
}

.partner-form .btn {
  justify-self: start;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.mail-popup[hidden] {
  display: none;
}

.mail-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 14, 10, 0.42);
  z-index: 10001;
  isolation: isolate;
  pointer-events: auto;
}

.mail-popup-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(43, 20, 12, 0.2);
  display: grid;
  gap: 14px;
  pointer-events: auto;
}

.mail-popup-card h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--red);
}

.mail-popup-card p {
  margin: 0;
}

.mail-popup-address {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.mail-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.mail-popup-close {
  background: #f6ead2;
  color: #5a311a;
}

body.modal-open {
  overflow: hidden;
}

.location-card {
  display: grid;
  place-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  border: 2px solid rgba(229, 53, 30, 0.2);
  color: var(--red);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-card:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(229, 53, 30, 0.5);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 36px;
  padding: 48px 60px;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(241, 66, 67, 0.18) 0%, rgba(241, 66, 67, 0.08) 34%, rgba(241, 66, 67, 0) 58%),
    url("images/lemon_wide.png") center center / cover no-repeat;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(43, 20, 12, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 56, 64, 0.14) 0%, rgba(255, 56, 64, 0.08) 34%, rgba(255, 56, 64, 0) 58%),
    radial-gradient(circle at 78% 22%, rgba(255, 86, 88, 0.14) 0%, rgba(255, 86, 88, 0) 28%),
    radial-gradient(circle at 64% 88%, rgba(255, 194, 78, 0.16) 0%, rgba(255, 194, 78, 0) 24%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 18px;
  max-width: 440px;
  padding-top: 12px;
}

h1 {
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  color: #d9ea58;
  margin-bottom: 30px;
}

.hero-copy h1 {
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  text-shadow: 0 6px 16px rgba(35, 20, 13, 0.14);
}

.tagline {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3c94b;
  margin: 0 0 24px;
}

.body {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 32ch;
  color: #ffffff;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding-top: 32px;
}

.hero-actions {
  gap: 16px;
}

.hero-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 244, 196, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 40, 32, 0.22);
}

.hero-icon-link img {
  width: 28px;
  height: 28px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.btn-ghost {
  background: rgba(255, 244, 196, 0.14);
  border: none;
  color: #fff1a8;
}

.hero .btn-primary {
  background: rgba(255, 244, 196, 0.14);
  border: none;
  color: #fff1a8;
}

.hero .btn:hover {
  box-shadow: 0 12px 30px rgba(25, 40, 32, 0.22);
}

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

.hero-visual {
  display: none;
}

.can {
  display: block;
  width: 100%;
  height: calc(100% + 96px);
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.12);
  transform: translateY(-72px);
}

.buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 53, 30, 0.2);
  border-bottom: 1px solid rgba(229, 53, 30, 0.2);
}

.buy h3 {
  font-size: 1.6rem;
  color: var(--red);
}

.social {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.partners h3 {
  font-size: 1.6rem;
  color: var(--red);
}

.social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 0;
}

.social-icon {
  display: grid;
  place-items: center;
  padding: 2px;
  background: transparent;
  transition: transform 0.2s ease;
}

.social-icon img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1000%);
}

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

.social-youtube {
  color: var(--green);
}

.social-x {
  color: var(--ink);
}

.partners {
  display: grid;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(229, 53, 30, 0.2);
}

.pillars {
  display: grid;
  gap: 20px;
  padding: 10px 0 4px;
}

.pillars-head {
  display: grid;
  gap: 6px;
}

.pillars-head h2 {
  color: var(--red);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.pillars-head p {
  line-height: 1.55;
}

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

.pillar-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(229, 53, 30, 0.18);
  box-shadow: 0 10px 24px rgba(43, 20, 12, 0.08);
}

.pillar-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.pillar-card h3 {
  color: var(--red);
  font-size: 1.05rem;
}

.pillar-card p {
  line-height: 1.55;
}

.partners-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.partner-logo {
  padding: 6px;
  min-height: 70px;
  display: grid;
  place-items: center;
}

.partner-logo img {
  max-height: 52px;
  width: 100%;
  object-fit: contain;
}

.site-footer {
  padding: 22px 8vw 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  background: #ffffff;
  border-top: 1px solid rgba(229, 53, 30, 0.12);
}

.story-intro {
  display: grid;
  gap: 14px;
}

.story-hero {
  padding: 22px 28px;
  background: linear-gradient(120deg, var(--red) 0%, #e84222 68%, var(--orange) 100%);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(43, 20, 12, 0.12);
}

.story-hero h1 {
  color: #FDE9AC;
  margin: 0;
}

.story-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-top: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 940px;
}

.story-grid h2 {
  color: var(--red);
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.story-item {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 16px 34px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 20px 42px rgba(43, 20, 12, 0.2);
}

.story-copy {
  grid-column: 1;
  display: grid;
  gap: 10px;
}

.story-copy p {
  line-height: 1.6;
}

.story-media {
  grid-column: 2;
  width: 210px;
  margin: 0;
  justify-self: start;
  align-self: center;
  padding: 6px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(43, 20, 12, 0.1);
}

.story-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(43, 20, 12, 0.16);
}

.story-media figcaption {
  display: none;
}

.story-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(229, 53, 30, 0.2);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 118, 40, 0.9), rgba(229, 53, 30, 0.95));
  display: grid;
  place-items: center;
  z-index: 10000;
  padding: 24px;
}

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

.age-card {
  width: min(520px, 92vw);
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(43, 20, 12, 0.25);
  border: 3px solid #ffe21a;
}

.age-card h2 {
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0 12px;
}

.age-gate .btn-ghost {
  background: #fff3cf;
  color: #7a2f12;
  box-shadow: none;
}

.legal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 8vw 70px;
  display: grid;
  gap: 28px;
}

.legal-hero {
  background: linear-gradient(120deg, var(--red) 0%, #e84222 68%, var(--orange) 100%);
  border: none;
  border-radius: 20px;
  padding: 22px 26px;
  color: #ffffff;
}

.legal-hero h1 {
  color: #FDE9AC;
}

.locations-hero h1,
.partner-hero h1,
.story-hero h1,
.legal-hero h1 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: none;
}

.site-nav a,
body:not(.home-page) .locations-hero h1,
body:not(.home-page) .partner-hero h1,
body:not(.home-page) .story-hero h1,
body:not(.home-page) .legal-hero h1 {
  font-family: "Lilita One", "Space Grotesk", "Trebuchet MS", sans-serif;
}

.legal-lede {
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-section h2 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.legal-section p,
.legal-section li {
  line-height: 1.6;
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-note {
  font-size: 0.9rem;
  color: rgba(43, 20, 12, 0.7);
}

.legal-lede,
.legal-section,
.legal-note {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 12px;
  }

  .logo-wrap {
    justify-content: flex-start;
    width: 30%;
  }

  .logo {
    width: 68px;
    height: 68px;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: 120px 10vw 40px;
    border: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9998;
  }

  .menu-btn {
    justify-self: end;
    display: flex;
    z-index: 9999;
  }

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

  .site-nav a {
    font-size: 1.05rem;
  }

  main {
    padding: 24px 6vw 24px;
    gap: 60px;
  }

  .shop {
    padding: 24px 6vw 64px;
  }

  .shop-hero {
    padding: 22px;
    text-align: center;
  }

  .shop-stock {
    justify-items: center;
  }

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

  .cart-summary {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 720px;
    align-items: start;
    align-content: start;
    padding: 22px 22px 28px;
    gap: 4px;
    background:
      linear-gradient(180deg, rgba(232, 55, 62, 0.1) 0%, rgba(232, 55, 62, 0.04) 40%, rgba(232, 55, 62, 0) 62%),
      url("images/lemon_high.png") center 18% / cover no-repeat;
    text-align: center;
    grid-template-areas:
      "title"
      "buttons";
  }

  body.home-page .hero {
    min-height: 560px;
    grid-template-rows: auto 1fr auto;
    background:
      linear-gradient(180deg, rgba(232, 55, 62, 0.1) 0%, rgba(232, 55, 62, 0.04) 38%, rgba(232, 55, 62, 0) 58%),
      url("images/lemon_high.png") 0% 78% / cover no-repeat;
  }

  .hero-copy {
    padding-left: 0;
    display: contents;
  }

  .hero-copy h1 {
    grid-area: title;
    font-size: clamp(4rem, 14vw, 5.6rem);
    margin-bottom: 8px;
    text-align: center;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(4.6rem, 17vw, 6.4rem);
    margin-bottom: 0;
  }

  .hero-visual {
    display: none;
  }

  .cta-row {
    grid-area: buttons;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 0;
    align-items: center;
  }

  body.home-page .cta-row {
    margin-top: 0;
    align-self: end;
    padding-bottom: 2px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  body.home-page .hero-actions {
    gap: 14px;
  }

  body.home-page .hero-icon-link {
    width: 54px;
    height: 54px;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    box-shadow: 0 8px 20px rgba(43, 20, 12, 0.22);
  }

  body.home-page .hero-icon-link img {
    width: 24px;
    height: 24px;
  }

  .hero .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .can {
    width: min(300px, 90%);
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: saturate(1.12);
    transform: none;
    margin: 0 auto;
  }

  .can {
    margin-top: 10px;
    margin-bottom: 1px;
  }

  .hero-copy .tagline,
  .hero-copy .body {
    display: none;
  }

  .locations {
    padding: 24px 6vw 64px;
  }

  .locations-hero {
    padding: 18px 20px;
    text-align: center;
  }

  .locations-toggle {
    width: 100%;
    justify-content: center;
  }

  .toggle-btn {
    flex: 1 1 140px;
    text-align: center;
  }

  .locations-map,
  .locations-map iframe,
  .locations-leaflet-map {
    min-height: 320px;
  }

  .partner {
    padding: 24px 6vw 64px;
  }

  .partner-form .btn {
    justify-self: stretch;
  }

  .partners-head {
    display: contents;
  }

  .partners h3 {
    order: 1;
  }

  .partners-grid {
    order: 2;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .partners .btn {
    order: 3;
    width: auto;
    justify-self: start;
  }

  .buy,
  .partners {
    padding-bottom: 28px;
  }

  .partners {
    gap: 24px;
  }

  .buy + .partners {
    margin-top: -20px;
  }

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

  .pillar-card img {
    height: 200px;
  }


  .partner-logo {
    min-height: 70px;
    padding: 14px;
    font-size: 0.75rem;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .cta-row .btn {
    flex: 1;
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .story-hero {
    padding: 28px 22px;
    text-align: center;
  }

  .story-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 14px;
  }

  .story-media {
    grid-column: 1;
    order: 2;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 5px;
    margin-top: 10px;
  }

  .story-copy {
    order: 1;
  }

  .story-cta {
    justify-content: center;
    text-align: center;
  }

  .legal {
    padding: 24px 6vw 64px;
  }
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
