:root {
  --ink: #18302a;
  --muted: #5e6f68;
  --cream: #fffaf1;
  --paper: #ffffff;
  --teal: #08786b;
  --teal-dark: #075d54;
  --coral: #cf432b;
  --coral-dark: #a93222;
  --sun: #f6b73c;
  --sea: #dff4ed;
  --line: #dce5df;
  --shadow: 0 18px 50px rgba(24, 48, 42, 0.13);
  --radius-sm: 0.8rem;
  --radius: 1.35rem;
  --radius-lg: 2rem;
  --content: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

.anchor-alias {
  display: block;
  height: 0;
  scroll-margin-top: 7rem;
  pointer-events: none;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.announcement {
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  text-align: center;
}

.announcement .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding-block: 0.55rem;
}

.announcement a {
  color: #fff;
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 48, 42, 0.08);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(24, 48, 42, 0.13);
  object-fit: cover;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.desktop-nav > a {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 760;
  text-decoration: none;
}

.desktop-nav > a:hover {
  color: var(--teal);
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-nav > a:not(.button) {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

.page-nav > a:not(.button):hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(24, 48, 42, 0.1);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  margin-block: 0.25rem;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(207, 67, 43, 0.25);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 120, 107, 0.2);
}

.button-secondary:hover {
  background: var(--teal-dark);
}

.button-ghost {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 7vw, 7rem) 0 4.25rem;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hero::before {
  top: -10rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: rgba(246, 183, 60, 0.22);
}

.hero::after {
  right: -10rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  background: rgba(8, 120, 107, 0.13);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.offer-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}

.hero h1 em {
  color: var(--coral);
  font-weight: inherit;
}

.hero-lead {
  max-width: 36rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.65rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-social > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  overflow: hidden;
  aspect-ratio: 1.05 / 1;
  border: 0.65rem solid #fff;
  border-radius: 47% 53% 42% 58% / 45% 42% 58% 55%;
  background: var(--sea);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  width: 9.25rem;
  height: 9.25rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 0.4rem solid var(--cream);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-7deg);
  box-shadow: 0 14px 30px rgba(24, 48, 42, 0.18);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(246, 183, 60, 0.28), transparent 25rem),
    linear-gradient(145deg, var(--cream), #f4eee2);
}

.page-hero-copy {
  max-width: 62rem;
}

.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 780;
}

.breadcrumbs a {
  text-underline-offset: 0.2em;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.page-hero-products {
  background:
    radial-gradient(circle at 90% 15%, rgba(223, 244, 237, 0.95), transparent 28rem),
    linear-gradient(145deg, var(--cream), #fff3df);
}

.product-path-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border: 0.5rem solid #fff;
  border-radius: var(--radius-lg);
  background: var(--teal-dark);
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.product-path-card h2 {
  margin: 1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.product-path-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.product-path-badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.external-disclosure {
  max-width: 52rem !important;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.quick-actions {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(24, 48, 42, 0.08);
}

.quick-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 4.25rem;
  padding: 0.85rem;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.quick-grid a + a {
  border-left: 1px solid var(--line);
}

.quick-grid a:hover {
  background: var(--sea);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-paper {
  background: var(--paper);
}

.section-sea {
  background: var(--sea);
}

.section-ink {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 2.2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.offer-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.section-heading > p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-ink .section-heading > p:not(.eyebrow),
.section-ink .eyebrow {
  color: #bfe9dc;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.category-card:nth-child(2) {
  background: #fff0ec;
}

.category-card:nth-child(3) {
  background: #fff5d7;
}

.category-card:nth-child(4) {
  background: var(--sea);
}

.category-number {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 800;
}

.category-card h3 {
  margin: 1.7rem 0 0.55rem;
  font-size: 1.3rem;
  line-height: 1.15;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.release-frame {
  position: relative;
  max-width: 29rem;
  margin-inline: auto;
  padding: 0.65rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.release-frame img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.release-badge {
  position: absolute;
  top: 1.4rem;
  left: -1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.release-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.menu-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-panel:first-child {
  grid-row: span 2;
}

.menu-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.menu-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.menu-group {
  margin-top: 1.45rem;
}

.menu-group h4 {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flavor-list li {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: #f4f7f5;
  color: #304740;
  font-size: 0.8rem;
  line-height: 1.2;
}

.menu-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow);
}

.offer-copy .eyebrow {
  color: #fff;
}

.offer-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.offer-copy .button {
  margin-top: 1.5rem;
  background: var(--ink);
  color: #fff;
}

.offer-rules {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.08);
}

.offer-rules h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.offer-rules ul {
  margin: 0;
  padding-left: 1.15rem;
}

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

.more-than-drinks {
  background: linear-gradient(180deg, var(--cream), #fff3df);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.centered-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intent-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.intent-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.intent-card > p:not(.eyebrow) {
  flex: 1;
  color: var(--muted);
}

.intent-card .button {
  align-self: flex-start;
  margin-top: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8faf8;
}

.process-grid li > span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}

.process-grid h3 {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.2;
}

.process-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.savings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.savings-grid h2 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.savings-grid > div > p:not(.eyebrow) {
  max-width: 50rem;
  color: var(--muted);
}

.savings-note {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(8, 120, 107, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.savings-note h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.savings-note ul {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.pickup-shipping-split {
  background: #f4eee2;
}

.action-card {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: var(--teal);
  color: #fff;
}

.action-card:nth-child(2) {
  position: relative;
  background: var(--sun);
  color: var(--ink);
}

.action-card:nth-child(2)::before {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border: 2.6rem solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.action-card > * {
  position: relative;
  z-index: 1;
}

.action-card h3 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.action-card p {
  max-width: 34rem;
  margin: 1rem 0 0;
}

.action-card .button {
  align-self: flex-start;
  margin-top: 1.4rem;
}

.action-card .inline-actions .button {
  margin-top: 0;
}

.mega-kits {
  background: linear-gradient(145deg, var(--ink), var(--teal-dark));
  color: #fff;
}

.mega-kits .eyebrow {
  color: #bfe9dc;
}

.mega-kits-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.mega-kits-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.mega-kits-intro > div > p:not(.eyebrow) {
  max-width: 50rem;
  margin: 1.15rem 0 0;
  color: #d9eee8;
  font-size: 1.08rem;
}

.mega-kit-price {
  min-width: 9.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.mega-kit-price span,
.mega-kit-price strong {
  display: block;
}

.mega-kit-price span {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-kit-price strong {
  margin-top: 0.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.take-home-tea-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.take-home-tea-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.take-home-tea-card-mega {
  background: var(--sea);
}

.take-home-tea-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.take-home-tea-card .eyebrow {
  color: var(--teal-dark);
}

.take-home-tea-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.take-home-tea-card-heading > strong {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
}

.take-home-tea-card > p:not(.eyebrow) {
  color: var(--muted);
}

.take-home-tea-card .take-home-tea-detail {
  flex: 1;
  margin-top: 0;
  font-size: 0.9rem;
}

.take-home-tea-card .inline-actions {
  margin-top: 0.8rem;
}

.mega-kit-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem 1.5rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #effaf6;
}

.mega-kit-includes p {
  margin: 0;
}

.mega-kit-groups {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mega-kit-group {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.mega-kit-group summary {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.mega-kit-group summary::-webkit-details-marker {
  display: none;
}

.mega-kit-group summary:hover {
  background: #f4f7f5;
}

.mega-kit-group-title {
  font-size: 1.05rem;
  font-weight: 900;
}

.mega-kit-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.mega-kit-count::after {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
}

.mega-kit-group[open] .mega-kit-count::after {
  content: "−";
}

.mega-kit-group > p {
  margin: 0;
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.mega-kit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0 1.2rem 1.25rem;
  list-style: none;
}

.mega-kit-list li {
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: #f4f7f5;
  color: #304740;
  font-size: 0.86rem;
  line-height: 1.3;
}

.mega-kit-priced-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.mega-kit-priced-list strong {
  color: var(--teal-dark);
  white-space: nowrap;
}

.mega-kit-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin-top: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--sea);
  color: var(--ink);
}

.mega-kit-order h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.mega-kit-order p {
  max-width: 48rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.mega-kit-order .inline-actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

.local-story {
  background: #f4eee2;
}

.local-story-grid {
  display: grid;
  grid-template-columns: minmax(28rem, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.local-story-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0.55rem solid #fff;
  border-radius: var(--radius-lg);
  background: var(--sea);
  box-shadow: var(--shadow);
}

.owner-photo-grid {
  width: 100%;
  max-width: 44rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-inline: auto;
}

.owner-photo-grid .local-story-media:first-child {
  width: 100%;
}

.owner-photo-grid .local-story-media-secondary {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.local-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-story-copy h2 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.local-story-copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.stars {
  color: #c47b00;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.review-card cite {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.social-follow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.social-follow h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.social-profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.social-profile-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.social-profile-links svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-profile-links .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-profile-links-compact {
  justify-content: flex-start;
  gap: 0.4rem;
}

.social-profile-links-compact a {
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.social-profile-links a:hover {
  background: var(--teal-dark);
  color: #fff;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(21rem, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.updates-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 0.98;
}

.updates-grid p {
  color: #c7d7d1;
}

.updates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.updates-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.79rem;
}

.signup-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.updates-confirmation-card {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 7rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(240, 181, 55, 0.2), transparent 13rem),
    #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.updates-confirmation-card[hidden] {
  display: none;
}

.updates-confirmation-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8, 120, 107, 0.22);
}

.updates-confirmation-card h3 {
  max-width: 16ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.updates-confirmation-card h3:focus {
  outline: none;
}

.updates-confirmation-card p {
  max-width: 42rem;
  color: var(--muted);
}

.updates-confirmation-card .updates-confirmation-lead {
  margin: 1.2rem 0 0;
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.updates-confirmation-card .inline-actions {
  margin-top: 1.35rem;
}

.updates-confirmation-social {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.updates-confirmation-social > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.field-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field + .field,
.field-grid + .field,
.field + .consent-row,
.field-grid + .consent-row {
  margin-top: 0.85rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 850;
}

.field input {
  min-height: 3.1rem;
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b9c8c1;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--ink);
}

.field input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 120, 107, 0.15);
}

.consent-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.6rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.consent-row label,
.fine-print {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.signup-card .button {
  width: 100%;
  margin-top: 1rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0.7rem 0 0;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-fallback {
  margin-top: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.visit-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.visit-card h2,
.visit-card h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.visit-card h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1;
}

.visit-map {
  overflow: hidden;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(24, 48, 42, 0.08);
}

.visit-map-frame {
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--sea);
}

.visit-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.visit-map-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.visit-map-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.visit-map-copy p:not(.eyebrow) {
  max-width: 47rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.visit-map-copy .inline-actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

.address {
  margin-top: 1.3rem;
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 760;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  text-align: right;
}

.faq-list {
  max-width: 52rem;
  margin-inline: auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-weight: 850;
  cursor: pointer;
}

.faq-list details p {
  max-width: 45rem;
  margin: -0.35rem 0 1.15rem;
  color: var(--muted);
}

.site-footer {
  padding: 3.5rem 0 6rem;
  background: #11241f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
}

.footer-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-grid h3 {
  color: #bfe9dc;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aebfb9;
  font-size: 0.77rem;
}

.mobile-actions {
  display: none;
}

dialog {
  width: min(calc(100% - 1.5rem), 31rem);
  max-height: min(90vh, 48rem);
  overflow-y: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

dialog::backdrop {
  background: rgba(10, 25, 21, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-shell {
  position: relative;
  padding: clamp(1.35rem, 4vw, 2.2rem);
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f2f5f3;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.dialog-shell h2 {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 8vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dialog-shell > p {
  color: var(--muted);
}

.coupon-result {
  text-align: center;
}

.coupon-result img {
  width: min(100%, 25rem);
  height: auto;
  margin: 1rem auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
  object-fit: contain;
}

.coupon-result [data-coupon-result-title] {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2rem, 9vw, 2.5rem);
  line-height: 1.08;
}

.coupon-result [data-coupon-result-title]:focus {
  outline: none;
}

.coupon-state-notice {
  width: fit-content;
  max-width: 100%;
  margin: 0.85rem auto 0;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--teal-dark);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--teal) 12%, white);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.coupon-result[data-coupon-state="duplicate"] img,
.coupon-result[data-coupon-state="remembered"] img {
  opacity: 0.82;
}

.coupon-code {
  margin: 0.5rem 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.coupon-result-message {
  margin: 0.65rem auto 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.square-offer {
  margin-top: 1.15rem;
  padding: 1rem;
  border: 2px solid color-mix(in srgb, var(--teal) 34%, var(--line));
  border-radius: 1rem;
  background: color-mix(in srgb, var(--teal) 6%, white);
  text-align: left;
}

.square-offer[hidden],
.square-offer-pass[hidden],
.square-offer form[hidden] {
  display: none;
}

.square-offer .eyebrow {
  margin: 0;
}

.square-offer h3 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.square-offer > p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.square-offer-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.75rem;
  border: 1px solid #b9c8c1;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}

.square-offer-consent:focus-within {
  outline: 3px solid rgba(8, 120, 107, 0.2);
  outline-offset: 1px;
}

.square-offer-consent input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--teal);
}

.square-offer-challenge {
  min-height: 4.1rem;
  margin-top: 0.75rem;
}

.square-offer .button {
  width: 100%;
  min-height: 2.8rem;
}

.square-offer-status {
  margin-top: 0.65rem;
}

.square-offer-pass {
  margin-top: 0.75rem;
  text-align: center;
}

.coupon-discovery {
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #f8faf8;
  text-align: left;
}

.coupon-discovery fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.coupon-discovery legend {
  width: 100%;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.coupon-discovery #coupon-discovery-help {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.coupon-discovery-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.coupon-discovery-options label {
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #b9c8c1;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.coupon-discovery-options label:has(input:checked) {
  border-color: var(--teal);
  background: color-mix(in srgb, var(--teal) 10%, white);
}

.coupon-discovery-options label:focus-within {
  outline: 3px solid rgba(8, 120, 107, 0.2);
  outline-offset: 1px;
}

.coupon-discovery-options input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--teal);
}

.coupon-discovery-actions {
  margin-top: 0.85rem;
}

.coupon-discovery-actions .button {
  min-height: 2.75rem;
  padding-block: 0.7rem;
}

.coupon-discovery-status {
  margin-top: 0.65rem;
}

.coupon-discovery[data-complete="true"] #coupon-discovery-help,
.coupon-discovery[data-complete="true"] .coupon-discovery-options,
.coupon-discovery[data-complete="true"] .coupon-discovery-actions {
  display: none;
}

.coupon-next-actions {
  justify-content: center;
  margin-top: 1rem;
}

.coupon-updates-link {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  font-weight: 750;
}

.coupon-updates-link a {
  color: var(--teal-dark);
  text-underline-offset: 0.2em;
}

.legal-main {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.legal-copy {
  max-width: 48rem;
  margin-inline: auto;
}

.legal-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.legal-copy h2 {
  margin-top: 2.2rem;
  font-size: 1.3rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

@media (max-width: 960px) {
  .desktop-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .desktop-nav[data-open="true"] {
    display: grid;
  }

  .desktop-nav > a {
    padding: 0.75rem;
  }

  .desktop-nav .button {
    margin-top: 0.25rem;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
  }

  .hero-grid,
  .release-grid,
  .local-story-grid,
  .mega-kits-intro,
  .mega-kit-order,
  .updates-grid,
  .visit-grid,
  .visit-map-copy,
  .product-hero-grid,
  .savings-grid {
    grid-template-columns: 1fr;
  }

  .updates-grid[data-updates-confirmed="true"] .updates-confirmation-card {
    order: -1;
  }

  .take-home-tea-options {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-visual {
    max-width: 39rem;
    margin-inline: auto;
  }

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

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

  .social-follow {
    grid-template-columns: 1fr;
  }

  .social-profile-links {
    justify-content: flex-start;
  }

  .visit-map-copy .inline-actions {
    margin-top: 0;
  }

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

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

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

  .product-path-card {
    max-width: 40rem;
    transform: none;
  }

  .mega-kit-price {
    width: fit-content;
  }

  .mega-kit-order .inline-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 6rem;
  }

  body {
    padding-bottom: 4.25rem;
  }

  .announcement .container {
    justify-content: space-between;
  }

  .announcement span {
    display: none;
  }

  .nav-shell {
    min-height: 4.35rem;
  }

  .brand img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-grid {
    gap: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  .hero-actions .button,
  .inline-actions .button,
  .centered-actions .button {
    width: 100%;
  }

  .hero-sticker {
    right: -0.35rem;
    width: 7.5rem;
    height: 7.5rem;
    font-size: 0.95rem;
  }

  .hero-social {
    align-items: flex-start;
  }

  .hero-social > span {
    width: 100%;
  }

  .release-frame {
    transform: none;
  }

  .release-badge {
    top: 1.2rem;
    left: 0.8rem;
  }

  .quick-actions {
    margin-top: -0.8rem;
  }

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

  .quick-grid a {
    min-height: 3.75rem;
  }

  .quick-grid a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .category-grid,
  .menu-grid,
  .split-grid,
  .offer-card,
  .footer-grid,
  .field-grid,
  .intent-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .page-nav > a:not(.button) {
    display: none;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .menu-panel:first-child {
    grid-row: auto;
  }

  .offer-card {
    padding: 2rem 1.3rem;
  }

  .action-card {
    min-height: 21rem;
  }

  .mega-kit-includes {
    display: grid;
  }

  .mega-kit-group summary {
    align-items: flex-start;
  }

  .mega-kit-list {
    grid-template-columns: 1fr;
  }

  .mega-kit-order .inline-actions,
  .mega-kit-order .button,
  .take-home-tea-card .inline-actions,
  .take-home-tea-card .button,
  .visit-map-copy .inline-actions,
  .visit-map-copy .button {
    width: 100%;
  }

  .visit-map-frame {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    gap: 1.25rem;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.45rem max(0.55rem, env(safe-area-inset-right)) max(0.45rem, env(safe-area-inset-bottom)) max(0.55rem, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 30px rgba(24, 48, 42, 0.12);
  }

  .mobile-actions a,
  .mobile-actions button {
    min-height: 3.15rem;
    display: grid;
    place-items: center;
    padding: 0.45rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-actions .primary {
    border-radius: 0.75rem;
    background: var(--coral);
    color: #fff;
  }
}

@media (max-width: 520px) {
  .coupon-discovery-options {
    grid-template-columns: 1fr;
  }
}

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