:root {
  --green: #5b746e;
  --dark-green: #3d4b3f;
  --gold: #d1a15a;
  --cream: #f5efe6;
  --cream-2: #f9f3ea;
  --line: #ded2c3;
  --ink: #2b241c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::after {
  display: none;
}

body.tv-menu-page {
  overflow: hidden;
  background: #f8f2ea;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

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

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

button {
  font: inherit;
}

a:focus,
button:focus {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  display: grid;
  grid-template-columns: 252px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 0 20px 0 44px;
  background: linear-gradient(90deg, #fbf7f0, #f4eee5);
  border-bottom: 1px solid rgba(43, 36, 28, 0.08);
}

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

.brand strong {
  display: block;
  color: var(--dark-green);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 37px 0 31px;
}

.tv-menu-nav-link {
  display: inline-flex;
  align-items: center;
}

.nav-links .active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  position: absolute;
  left: 15px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-visual {
  display: none;
}

.order-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-link {
  justify-self: end;
  min-width: 124px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.store-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 88px;
  padding: 0 11px;
  border: 1px solid rgba(61, 75, 63, 0.2);
  border-radius: 999px;
  color: var(--dark-green);
  background: rgba(255, 250, 243, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-status::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.store-status.is-open::before {
  background: #5b746e;
}

.store-status.is-closed {
  color: #7a5142;
}

.store-status.is-closed::before {
  background: #b66b53;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 56.3vw, 760px);
  padding: clamp(28px, 4vw, 72px);
  background: #efe5d7;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  opacity: 0.42;
  pointer-events: none;
}

.hero::before {
  left: -12px;
  bottom: -4px;
  width: 180px;
  height: 220px;
  background:
    radial-gradient(circle at 16px 158px, #d8d0c3 0 34px, transparent 35px),
    linear-gradient(135deg, transparent 0 43%, rgba(61, 75, 63, 0.9) 44% 47%, transparent 48%),
    linear-gradient(45deg, transparent 0 55%, rgba(61, 75, 63, 0.9) 56% 59%, transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(520px, 42vw);
  min-width: 420px;
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 22px 52px rgba(34, 28, 20, 0.22);
  backdrop-filter: blur(8px);
}

.hero-copy::after {
  display: none;
}

.hero-mark {
  margin: 0 0 20px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0.065em;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-eyebrow {
  margin: 0 0 10px;
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coffee-line {
  display: flex;
  align-items: center;
  width: 268px;
  margin: 10px 0 22px 3px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  line-height: 1;
}

.coffee-line span {
  flex: 1;
  height: 2px;
  background: var(--gold);
}

.hero-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-green {
  min-width: 136px;
  color: #fff;
  background: var(--green);
}

.btn-outline {
  min-width: 142px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background: #efe5d7;
}

.hero-image picture {
  display: block;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.source-badge {
  position: absolute;
  right: 44px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 19px;
  min-width: 224px;
  min-height: 76px;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(249, 243, 234, 0.95);
}

.source-badge strong,
.source-badge small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-badge small {
  margin-top: 7px;
  color: var(--ink);
}

.features {
  min-height: 244px;
  padding: 18px 68px 30px;
  text-align: center;
  background: linear-gradient(#fbf8f2, #f6f0e7);
}

.local-content,
.review-section,
.faq-section,
.seo-page-hero,
.seo-content-section {
  padding: 72px 90px;
  padding: clamp(48px, 7vw, 86px) clamp(24px, 7vw, 90px);
  background: #fbf7f0;
}

.local-content {
  text-align: center;
}

.local-content h2,
.review-section h2,
.faq-section h2,
.seo-page-hero h1,
.seo-content-section h2 {
  max-width: 860px;
  margin: 22px auto 28px;
  color: var(--dark-green);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.local-grid,
.review-grid,
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.local-grid article,
.review-grid article,
.seo-card,
.menu-text-card {
  padding: 22px;
  border: 1px solid rgba(43, 36, 28, 0.1);
  border-radius: 10px;
  background: #fffaf3;
}

.local-grid h3,
.seo-card h3,
.menu-text-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.local-grid p,
.review-grid p,
.seo-card p,
.menu-text-card p,
.seo-page-hero p,
.seo-content-section p,
.faq-section p {
  font-size: 15px;
  line-height: 1.6;
}

.local-grid a,
.seo-card a,
.seo-content-section a,
.review-cta,
.faq-section a {
  color: var(--green);
  font-weight: 900;
}

.review-section,
.faq-section {
  text-align: center;
  background: #f4ece1;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto 24px;
}

.review-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-cta {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.55;
}

.faq-section details {
  max-width: 860px;
  margin: 12px auto;
  padding: 18px 20px;
  border: 1px solid rgba(43, 36, 28, 0.1);
  border-radius: 10px;
  text-align: left;
  background: #fffaf3;
}

.faq-section summary {
  cursor: pointer;
  color: var(--dark-green);
  font-weight: 900;
}

.seo-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 90px;
  padding: 28px clamp(24px, 7vw, 90px);
  color: #fff;
  background: var(--ink);
}

.seo-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 14px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-footer .footer-social {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 16px;
  line-height: 1;
}

.seo-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 48px;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: var(--cream);
}

.seo-page-hero h1,
.seo-page-hero p {
  margin-left: 0;
}

.seo-page-hero p {
  max-width: 680px;
}

.seo-page-hero picture {
  display: block;
  width: 100%;
  min-width: 0;
}

.seo-page-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.tv-menu-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 2vh 2.6vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 5%, rgba(207, 198, 178, 0.62) 0 8.4vh, transparent 8.55vh),
    radial-gradient(circle at 96% 4%, rgba(181, 188, 166, 0.62) 0 9.2vh, transparent 9.35vh),
    radial-gradient(circle at 1% 96%, rgba(207, 198, 178, 0.5) 0 8.6vh, transparent 8.75vh),
    radial-gradient(circle at 99% 94%, rgba(181, 188, 166, 0.42) 0 8.4vh, transparent 8.55vh),
    linear-gradient(135deg, #f7efe5 0%, #fffaf4 48%, #f2e7da 100%);
  box-sizing: border-box;
}

.tv-menu-board-web {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0.4vh 0.2vw 0.2vh;
  box-sizing: border-box;
  color: #17271d;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tv-menu-decor {
  position: absolute;
  z-index: 0;
  width: 12vw;
  height: 18vh;
  opacity: 0.36;
  pointer-events: none;
}

.tv-menu-decor::before,
.tv-menu-decor::after {
  content: "";
  position: absolute;
  background: rgba(61, 75, 63, 0.66);
}

.tv-menu-decor::before {
  left: 48%;
  top: -4%;
  width: 0.16vw;
  height: 18vh;
  transform: rotate(25deg);
  border-radius: 999px;
}

.tv-menu-decor::after {
  left: 18%;
  top: 12%;
  width: 8vw;
  height: 13vh;
  background:
    radial-gradient(ellipse at 22% 18%, transparent 0 1.1vh, rgba(61, 75, 63, 0.66) 1.18vh 1.3vh, transparent 1.38vh),
    radial-gradient(ellipse at 74% 34%, transparent 0 1.1vh, rgba(61, 75, 63, 0.66) 1.18vh 1.3vh, transparent 1.38vh),
    radial-gradient(ellipse at 18% 58%, transparent 0 1.1vh, rgba(61, 75, 63, 0.66) 1.18vh 1.3vh, transparent 1.38vh),
    radial-gradient(ellipse at 80% 76%, transparent 0 1.1vh, rgba(61, 75, 63, 0.66) 1.18vh 1.3vh, transparent 1.38vh);
}

.tv-menu-decor-left {
  top: -1vh;
  left: -1.2vw;
}

.tv-menu-decor-right {
  right: -1.1vw;
  bottom: -1.3vh;
  transform: scaleX(-1);
}

.tv-menu-header,
.tv-menu-layout {
  position: relative;
  z-index: 1;
}

.tv-menu-header {
  flex: 0 0 12vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin: 0 auto 1.25vh;
  text-align: center;
  text-transform: uppercase;
}

.tv-menu-logo-mark {
  display: inline-grid;
  place-items: center;
  width: clamp(1rem, 2.35vh, 1.7rem);
  height: clamp(1rem, 2.35vh, 1.7rem);
  margin-bottom: 0.05vh;
  border: 0.18vh solid #26372b;
  border-radius: 999px;
  color: #26372b;
  font-size: clamp(0.66rem, 1.45vh, 1rem);
  line-height: 1;
  animation: tvLogoFloat 5s ease-in-out infinite;
}

.tv-menu-kicker,
.tv-menu-subtitle,
.tv-menu-slogan {
  margin: 0;
  color: #4e5f51;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.44rem, 0.95vh, 0.68rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: clamp(0.1em, 0.18vw, 0.18em);
}

.tv-menu-header h1 {
  margin: 0.15vh 0 0.15vh;
  color: #1d1b18;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.35vh, 2.45rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: clamp(0.08em, 0.26vw, 0.2em);
  animation: tvTitleReveal 1200ms ease-out both, tvTitleGlow 7s ease-in-out 1400ms infinite;
}

.tv-menu-kicker {
  margin-top: 0.25vh;
}

.tv-menu-slogan {
  display: block;
  min-height: 1.25vh;
  margin-top: 0.12vh;
  color: #9e6b27;
  font-size: clamp(0.5rem, 1.08vh, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 1;
  transition: opacity 420ms ease;
}

.tv-menu-slogan.is-changing {
  opacity: 0.28;
}

.tv-menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  gap: 2vw;
  overflow: hidden;
}

.tv-menu-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  gap: clamp(0.45rem, 1.15vh, 0.9rem);
}

.tv-menu-panel {
  min-width: 0;
  min-height: 0;
}

.tv-menu-panel h2 {
  margin: 0 0 clamp(0.22rem, 0.5vh, 0.46rem);
  padding-bottom: clamp(0.16rem, 0.38vh, 0.34rem);
  border-bottom: 0.22vh solid #26372b;
  color: #17271d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.65vh, 2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tv-menu-list {
  display: grid;
  gap: clamp(0.08rem, 0.25vh, 0.26rem);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.76rem, 1.62vh, 1.12rem);
  line-height: 1.13;
}

.tv-menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(0.35rem, 0.76vw, 0.72rem);
  align-items: start;
}

.tv-menu-list strong,
.tv-drink-row b,
.tv-espresso-shot strong {
  color: #21342a;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tv-menu-list small {
  display: inline;
  color: #574c41;
  font-size: 0.64em;
  font-weight: 700;
}

.tv-menu-note {
  margin: clamp(0.16rem, 0.38vh, 0.34rem) 0 clamp(0.38rem, 0.95vh, 0.7rem);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.5rem, 0.98vh, 0.72rem);
  line-height: 1.12;
  font-weight: 700;
}

.tv-menu-toasts {
  flex: 1 1 auto;
}

.tv-menu-tea {
  margin-top: 0;
  padding: clamp(0.35rem, 0.8vh, 0.68rem) clamp(0.5rem, 0.9vw, 0.9rem);
  border: 0.12vh solid rgba(38, 55, 43, 0.78);
  border-radius: 0.8rem;
  background: rgba(255, 250, 244, 0.58);
}

.tv-menu-tea h2 {
  font-size: clamp(1rem, 2.05vh, 1.5rem);
}

.tv-menu-list-descriptive {
  gap: clamp(0.14rem, 0.42vh, 0.42rem);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.tv-menu-list-descriptive em {
  display: block;
  font-size: clamp(0.82rem, 1.64vh, 1.12rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.04;
}

.tv-menu-list-descriptive small {
  display: block;
  margin-top: 0.14vh;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.44rem, 0.86vh, 0.62rem);
  font-weight: 700;
  line-height: 1.12;
}

.tv-smoothie-list {
  gap: clamp(0.16rem, 0.5vh, 0.48rem);
}

.tv-smoothie-list li span {
  display: grid;
  grid-template-columns: clamp(0.95rem, 1.85vh, 1.35rem) minmax(0, 1fr);
  column-gap: 0.55vw;
}

.tv-smoothie-list i {
  align-self: start;
  font-size: clamp(0.85rem, 1.8vh, 1.25rem);
  font-style: normal;
  line-height: 1;
}

.tv-smoothie-list em,
.tv-smoothie-list small {
  grid-column: 2;
}

.tv-drink-table {
  display: grid;
  gap: clamp(0.08rem, 0.28vh, 0.26rem);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.66rem, 1.38vh, 0.96rem);
  font-weight: 800;
  line-height: 1.12;
}

.tv-drink-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(2.35rem, 3.5vw) minmax(2.35rem, 3.5vw) minmax(2.35rem, 3.5vw);
  gap: clamp(0.18rem, 0.42vw, 0.5rem);
  align-items: baseline;
}

.tv-drink-head {
  padding-bottom: 0.2vh;
  border-bottom: 0.12vh solid rgba(38, 55, 43, 0.55);
  font-size: clamp(0.56rem, 1.08vh, 0.78rem);
}

.tv-tea-table .tv-drink-row {
  grid-template-columns: minmax(0, 1fr) minmax(2.6rem, 4vw) minmax(2.6rem, 4vw);
}

.tv-espresso-shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(0.3rem, 0.65vw, 0.65rem);
  margin: clamp(0.2rem, 0.5vh, 0.48rem) 0 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(0.58rem, 1.12vh, 0.82rem);
  font-weight: 900;
}

.tv-espresso-shot small {
  grid-column: 1 / -1;
  margin-top: -0.18vh;
  font-size: clamp(0.44rem, 0.86vh, 0.62rem);
  font-weight: 700;
}

@keyframes tvTitleReveal {
  from {
    opacity: 0;
    letter-spacing: 0.42em;
    transform: translateY(-0.7vh);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tvTitleGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(177, 123, 49, 0);
  }

  50% {
    text-shadow: 0 0 1.2vh rgba(177, 123, 49, 0.22);
  }
}

@keyframes tvLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.3vh);
  }
}

.tv-menu-controls {
  position: fixed;
  top: 5vh;
  right: 5vw;
  z-index: 10;
  display: flex;
  gap: clamp(0.45rem, 0.8vw, 0.8rem);
}

.tv-menu-controls a,
.tv-menu-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2rem, 4.5vh, 3rem);
  padding: 0 clamp(0.9rem, 1.4vw, 1.5rem);
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(61, 75, 63, 0.94);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  font-size: clamp(0.58rem, 1.25vh, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.tv-menu-page.is-presenting .tv-menu-controls,
.tv-menu-stage:fullscreen .tv-menu-controls {
  display: none;
}

.seo-content-section {
  background: #f4ece1;
}

.seo-content-section h2 {
  margin-left: 0;
}

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

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

.menu-text-card ul,
.seo-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

.section-kicker {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 18px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}

.features h2 {
  margin: 22px 0 22px;
  color: var(--dark-green);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.feature-grid article {
  min-height: 118px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-grid h3 {
  margin: 12px 0 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.menu-section {
  position: relative;
  display: grid;
  grid-template-columns: 29% 71%;
  min-height: 244px;
  padding: 28px 69px 21px 100px;
  background: #f2eadf;
}

.menu-section::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 70px;
  width: 140px;
  height: 174px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 17px 23px, #d8d0c3 0 31px, transparent 32px),
    radial-gradient(circle at 84px 146px, #d8d0c3 0 18px, transparent 19px);
  opacity: 0.55;
  pointer-events: none;
}

.menu-intro {
  align-self: center;
}

.mini-title {
  margin: 0 0 9px;
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-intro h2 {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-intro a {
  color: #c68d3e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(43, 36, 28, 0.12);
  border-radius: 10px;
  background: #fbf6ee;
}

.menu-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.menu-card-body {
  position: relative;
  min-height: 72px;
  padding: 10px 14px;
}

.menu-card-body p {
  margin: 0 0 3px;
  color: var(--dark-green);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card-body h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.menu-card-body strong {
  font-size: 11px;
}

.menu-card button {
  position: absolute;
  right: 11px;
  bottom: 14px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.moments {
  display: grid;
  grid-template-columns: 39% 61%;
  min-height: 260px;
  padding: 38px 69px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.54)),
    url("assets/cafe-clean-upscaled.webp") center / cover;
}

.moments-copy h2 {
  max-width: 270px;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.moments-copy h2 em {
  display: block;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: none;
}

.moments-copy p {
  margin: 22px 0 17px;
  font-size: 13px;
  line-height: 1.5;
}

.moments .btn-green {
  min-width: 167px;
  background: var(--green);
}

.moment-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.moment-list article {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 154px;
  padding: 13px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
}

.moment-list h3 {
  margin: 10px 0 5px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moment-list p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.bottom-section {
  position: relative;
  display: grid;
  grid-template-columns: 27% 25% 33% 15%;
  min-height: 210px;
  padding: 20px 68px;
  background: #f7f1e8;
}

.bottom-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 116px;
  height: 140px;
  border-radius: 0 100px 0 0;
  background: #d8d0c3;
  opacity: 0.55;
  pointer-events: none;
}

.bottom-section article {
  align-self: center;
  min-height: 132px;
  padding: 7px 25px;
  border-right: 1px solid var(--line);
}

.bottom-section article:last-child {
  border-right: 0;
}

.bottom-section h2 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bottom-section p {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.35;
}

.bottom-section address,
.contact-card a,
.hours-list {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.contact-card address {
  margin-bottom: 10px;
}

.contact-card a,
.suggest-hours {
  color: var(--green);
  font-weight: 900;
}

.hours-list {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
}

.hours-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--dark-green);
  font-weight: 900;
}

.suggest-hours {
  display: inline-flex;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rewards {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
}

.rewards .btn-green {
  min-width: 115px;
  min-height: 31px;
  padding: 0 16px;
  font-size: 10px;
}

.social-links {
  display: flex;
  gap: 16px;
  padding-top: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.cup-icon,
.sandwich-icon,
.wifi-icon,
.people-icon,
.leaf,
.takeaway-icon,
.sun-icon,
.heart-icon {
  display: inline-block;
  color: var(--dark-green);
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.cup-icon {
  width: 48px;
  height: 48px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 23h28v19a14 14 0 0 1-14 14 14 14 0 0 1-14-14z'/%3E%3Cpath d='M44 28h5a7 7 0 0 1 0 14h-5'/%3E%3Cpath d='m24 35 6 6 9-11'/%3E%3Cpath d='M22 8l3 7M34 7v8M46 8l-3 7'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 23h28v19a14 14 0 0 1-14 14 14 14 0 0 1-14-14z'/%3E%3Cpath d='M44 28h5a7 7 0 0 1 0 14h-5'/%3E%3Cpath d='m24 35 6 6 9-11'/%3E%3Cpath d='M22 8l3 7M34 7v8M46 8l-3 7'/%3E%3C/g%3E%3C/svg%3E");
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.tiny-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.hero-mark {
  width: 62px;
  height: 62px;
  color: var(--ink);
}

.feature-icon {
  width: 48px;
  height: 48px;
}

.moment-icon {
  width: 42px;
  height: 42px;
  color: #fff;
}

.sandwich-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 30c12-14 31-14 42 0v12c-12 7-29 7-42 0z'/%3E%3Cpath d='M13 31c12 6 27 6 39 0M14 42c12 5 25 5 37 0M23 24l3-3M34 22l4-4M45 25l3-3'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 30c12-14 31-14 42 0v12c-12 7-29 7-42 0z'/%3E%3Cpath d='M13 31c12 6 27 6 39 0M14 42c12 5 25 5 37 0M23 24l3-3M34 22l4-4M45 25l3-3'/%3E%3C/g%3E%3C/svg%3E");
}

.wifi-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M12 25c12-11 28-11 40 0M21 35c7-6 15-6 22 0M30 46h4'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M12 25c12-11 28-11 40 0M21 35c7-6 15-6 22 0M30 46h4'/%3E%3C/g%3E%3C/svg%3E");
}

.people-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='18' r='7'/%3E%3Ccircle cx='15' cy='25' r='6'/%3E%3Ccircle cx='49' cy='25' r='6'/%3E%3Cpath d='M21 52v-8a11 11 0 0 1 22 0v8M5 51v-6a10 10 0 0 1 14-9M59 51v-6a10 10 0 0 0-14-9'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='18' r='7'/%3E%3Ccircle cx='15' cy='25' r='6'/%3E%3Ccircle cx='49' cy='25' r='6'/%3E%3Cpath d='M21 52v-8a11 11 0 0 1 22 0v8M5 51v-6a10 10 0 0 1 14-9M59 51v-6a10 10 0 0 0-14-9'/%3E%3C/g%3E%3C/svg%3E");
}

.leaf {
  width: 36px;
  height: 36px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M33 55V24M33 45c-13-2-21-10-22-23 13 1 21 9 22 23zM36 39c13-2 20-10 21-23-13 1-20 9-21 23z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M33 55V24M33 45c-13-2-21-10-22-23 13 1 21 9 22 23zM36 39c13-2 20-10 21-23-13 1-20 9-21 23z'/%3E%3C/g%3E%3C/svg%3E");
}

.btn .leaf {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.big-leaf {
  width: 45px;
  height: 45px;
}

.takeaway-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 20h22l-3 36H24zM18 12h28M25 12V7h14v5M27 34l5 5 7-9'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 20h22l-3 36H24zM18 12h28M25 12V7h14v5M27 34l5 5 7-9'/%3E%3C/g%3E%3C/svg%3E");
}

.sun-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round'%3E%3Ccircle cx='32' cy='32' r='10'/%3E%3Cpath d='M32 5v9M32 50v9M5 32h9M50 32h9M13 13l7 7M44 44l7 7M51 13l-7 7M20 44l-7 7'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round'%3E%3Ccircle cx='32' cy='32' r='10'/%3E%3Cpath d='M32 5v9M32 50v9M5 32h9M50 32h9M13 13l7 7M44 44l7 7M51 13l-7 7M20 44l-7 7'/%3E%3C/g%3E%3C/svg%3E");
}

.heart-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M32 54S10 41 10 24c0-8 6-13 13-13 5 0 8 3 9 6 1-3 4-6 9-6 7 0 13 5 13 13 0 17-22 30-22 30z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M32 54S10 41 10 24c0-8 6-13 13-13 5 0 8 3 9 6 1-3 4-6 9-6 7 0 13 5 13 13 0 17-22 30-22 30z'/%3E%3C/svg%3E");
}

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

@media (min-width: 1600px) {
  body {
    background: #e8dfd3;
  }

  .site-header,
  main,
  .seo-footer {
    width: 100%;
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
  }

  .site-header {
    grid-template-columns: 310px 1fr auto;
    min-height: 104px;
    padding: 0 54px;
  }

  .brand {
    gap: 15px;
  }

  .logo-icon {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-links {
    gap: 28px;
    font-size: 12px;
  }

  .nav-links a {
    padding-top: 45px;
    padding-bottom: 39px;
  }

  .nav-links .active::after {
    bottom: 30px;
  }

  .order-link,
  .btn {
    min-height: 46px;
    padding: 0 26px;
    font-size: 12px;
  }

  .store-status {
    min-height: 38px;
    min-width: 104px;
    font-size: 11px;
  }

  .hero {
    min-height: min(760px, 56.3vw);
    padding: 64px 88px;
  }

  .hero-copy {
    width: min(560px, 40vw);
    padding: 46px 48px;
  }

  .hero-mark {
    width: 70px;
    height: 70px;
    margin-left: 0;
  }

  .hero h1 {
    max-width: 700px;
    font-size: 44px;
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero-copy p {
    max-width: 730px;
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-image img {
    height: 100%;
  }

  .source-badge {
    right: 52px;
    bottom: 42px;
    min-width: 252px;
    min-height: 84px;
  }

  .source-badge strong,
  .source-badge small {
    font-size: 13px;
  }

  .features {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .features h2 {
    font-size: 25px;
  }

  .feature-grid h3 {
    font-size: 13px;
  }

  .feature-grid p,
  .menu-intro a,
  .mini-title,
  .menu-card-body strong {
    font-size: 13px;
  }

  .menu-section {
    min-height: 286px;
    padding: 34px 88px 28px 120px;
  }

  .menu-card img {
    height: 146px;
  }

  .moments {
    min-height: 310px;
    padding: 44px 88px;
  }

  .bottom-section {
    min-height: 238px;
    padding: 26px 88px;
  }
}

@media (max-width: 920px) {
  .menu-visual {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1001;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 8px 22px rgba(43, 36, 28, 0.12);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .menu-visual.is-open {
    font-size: 34px;
    line-height: 0.8;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px 20px;
  }

  .brand {
    grid-column: 1 / -1;
    padding-right: 58px;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1002;
    justify-self: end;
    opacity: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid rgba(43, 36, 28, 0.1);
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .nav-links.is-open {
    max-height: none;
    padding: 12px;
    border-width: 1px;
    border-radius: 12px;
    background: rgba(255, 250, 243, 0.82);
    opacity: 1;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(245, 239, 230, 0.72);
  }

  .nav-links .tv-menu-nav-link {
    display: flex;
  }

  .nav-links .active::after {
    display: none;
  }

  .order-link {
    justify-self: start;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
  }

  .hero,
  .menu-section,
  .moments,
  .bottom-section,
  .seo-page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 0;
    flex-direction: column;
    background: var(--cream);
  }

  .hero-image {
    position: relative;
    order: 1;
    width: 100%;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    min-width: 0;
    margin: 18px 20px 28px;
    padding: 32px 24px;
    overflow: hidden;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-mark {
    margin-left: 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .features,
  .menu-section,
  .moments,
  .bottom-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .feature-grid,
  .menu-cards,
  .moment-list,
  .local-grid,
  .review-grid,
  .seo-card-grid,
  .menu-text-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-footer {
    flex-direction: column;
  }

  .seo-footer nav {
    justify-content: flex-start;
  }

  .feature-grid article:nth-child(2n) {
    border-right: 0;
  }

  .menu-section {
    gap: 24px;
  }

  .bottom-section {
    gap: 18px;
    padding-top: 28px;
  }

  .bottom-section article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .menu-visual,
  .menu-toggle {
    right: auto;
    left: calc(100vw - 68px);
    left: min(calc(100vw - 68px), 322px);
  }

  .site-header {
    padding: 22px 20px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(255, 250, 243, 0.76);
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero h1 {
    width: calc(100vw - 48px);
    width: min(100%, calc(100vw - 48px));
    max-width: 342px;
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: 0.025em;
    overflow-wrap: break-word;
  }

  .hero-copy p {
    width: calc(100vw - 48px);
    width: min(100%, calc(100vw - 48px));
    max-width: 342px;
    overflow-wrap: break-word;
  }

  .coffee-line {
    width: 220px;
  }

  .hero-actions {
    width: calc(100vw - 48px);
    width: min(100%, calc(100vw - 48px));
    max-width: 342px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
    min-width: 0;
    padding: 0 16px;
  }

  .feature-grid,
  .menu-cards,
  .moment-list,
  .local-grid,
  .review-grid,
  .seo-card-grid,
  .menu-text-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .source-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    min-height: 60px;
    padding: 10px 16px;
  }

  .source-badge strong,
  .source-badge small {
    font-size: 10px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .source-badge small {
    margin-top: 4px;
  }

  .big-leaf {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .features {
    padding-top: 26px;
  }

  .features h2 {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.25;
  }
}

/* Amazon Silk on TV reports a desktop-like viewport but needs a remote-friendly layout. */
.silk-tv .site-header {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto 108px;
  gap: 12px;
  min-height: 88px;
  padding: 0 24px;
}

.silk-tv .brand {
  grid-column: 1;
  grid-row: 1;
  padding-right: 0;
}

.silk-tv .brand strong {
  font-size: 22px;
}

.silk-tv .brand small {
  font-size: 9px;
}

.silk-tv .header-actions {
  grid-column: 2;
  grid-row: 1;
  flex-wrap: nowrap;
  justify-content: end;
  gap: 8px;
}

.silk-tv .order-link {
  min-height: 42px;
  min-width: 142px;
  padding: 0 16px;
  font-size: 11px;
}

.silk-tv .store-status {
  min-height: 34px;
  min-width: 92px;
}

.silk-tv .menu-toggle {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 22;
  grid-column: 3;
  grid-row: 1;
  width: 108px;
  height: 52px;
  justify-self: end;
  opacity: 0;
}

.silk-tv .menu-visual {
  position: absolute;
  top: 18px;
  right: 24px;
  left: auto;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 108px;
  height: 52px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: none;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.silk-tv .menu-visual::after {
  content: "Menu";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.silk-tv .menu-visual.is-open {
  font-size: 30px;
}

.silk-tv .nav-links {
  position: absolute;
  top: 100%;
  right: 24px;
  left: auto;
  z-index: 20;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 292px;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  border: 0 solid rgba(43, 36, 28, 0.1);
  border-radius: 0 0 10px 10px;
  background: rgba(251, 247, 240, 0.99);
  box-shadow: 0 16px 30px rgba(43, 36, 28, 0.16);
  opacity: 0;
  transition: opacity 160ms ease;
}

.silk-tv .nav-links.is-open {
  max-height: 520px;
  padding: 12px;
  border-width: 1px;
  opacity: 1;
}

.silk-tv .nav-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #f5efe6;
  font-size: 12px;
}

.silk-tv .nav-links .tv-menu-nav-link {
  display: flex;
}

.silk-tv .nav-links a:focus,
.silk-tv .nav-links a:hover,
.silk-tv .nav-links .active {
  color: #fff;
  background: var(--green);
}

.silk-tv .nav-links .active::after {
  display: none;
}

.silk-tv .hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 34px 54px;
}

.silk-tv .hero-copy {
  width: min(520px, 42vw);
  min-width: 0;
  padding: 30px;
}

.silk-tv .hero-copy::after {
  display: none;
}

.silk-tv .hero-mark {
  width: 54px;
  height: 54px;
  margin: 0 0 17px;
}

.silk-tv .hero-eyebrow {
  margin-bottom: 9px;
  font-size: 12px;
}

.silk-tv .hero h1 {
  max-width: 520px;
  font-size: 34px;
  line-height: 1.18;
}

.silk-tv .coffee-line {
  width: 250px;
  margin: 8px 0 16px 3px;
  font-size: 25px;
}

.silk-tv .hero-copy p {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.silk-tv .hero-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.silk-tv .hero-actions .btn {
  min-height: 40px;
  padding: 0 18px;
  font-size: 10px;
}

.silk-tv .hero-image picture,
.silk-tv .hero-image img {
  height: 100%;
}

.silk-tv .hero-image img {
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.silk-tv .source-badge {
  right: 20px;
  bottom: 20px;
  min-height: 66px;
  padding: 10px 20px;
}

.silk-tv .source-badge strong,
.silk-tv .source-badge small {
  font-size: 10px;
}

@media (max-height: 680px) and (min-width: 700px) {
  .silk-tv .hero-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 11px;
  }

  .silk-tv .hero h1 {
    font-size: 30px;
  }

  .silk-tv .hero-copy {
    padding-top: 24px;
  }

  .silk-tv .hero-copy p {
    font-size: 13px;
  }
}

/* Reference-style 16:9 TV menu board */
body.tv-menu-reference-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #edf0df;
  color: #111812;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.tv-reference-stage {
  width: 100vw;
  height: 100vh;
  padding: 1.4vh 1.35vw 1.05vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 3%, rgba(92, 124, 82, 0.25) 0 8vh, transparent 8.2vh),
    radial-gradient(circle at 97% 4%, rgba(92, 124, 82, 0.25) 0 8vh, transparent 8.2vh),
    radial-gradient(circle at 1% 97%, rgba(218, 207, 170, 0.42) 0 8vh, transparent 8.2vh),
    radial-gradient(circle at 99% 96%, rgba(218, 207, 170, 0.42) 0 8vh, transparent 8.2vh),
    linear-gradient(120deg, #f7f4e8 0%, #eef3df 45%, #fbf2e4 100%);
}

.tv-reference-board {
  position: relative;
  display: grid;
  grid-template-rows: 14vh minmax(0, 1fr) 4.8vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tv-corner-leaves {
  position: absolute;
  z-index: 0;
  width: 13vw;
  height: 16vh;
  pointer-events: none;
  opacity: 0.78;
}

.tv-corner-leaves::before,
.tv-corner-leaves::after {
  content: "";
  position: absolute;
  background: rgba(23, 78, 45, 0.78);
}

.tv-corner-leaves::before {
  left: 50%;
  top: -14%;
  width: 0.16vw;
  height: 20vh;
  border-radius: 999px;
  transform: rotate(45deg);
}

.tv-corner-leaves::after {
  inset: 0;
  background:
    radial-gradient(ellipse at 16% 18%, transparent 0 1.4vh, rgba(23, 78, 45, 0.74) 1.5vh 1.65vh, transparent 1.75vh),
    radial-gradient(ellipse at 38% 38%, transparent 0 1.4vh, rgba(23, 78, 45, 0.74) 1.5vh 1.65vh, transparent 1.75vh),
    radial-gradient(ellipse at 61% 60%, transparent 0 1.4vh, rgba(23, 78, 45, 0.74) 1.5vh 1.65vh, transparent 1.75vh),
    radial-gradient(ellipse at 84% 80%, transparent 0 1.4vh, rgba(23, 78, 45, 0.74) 1.5vh 1.65vh, transparent 1.75vh);
}

.tv-corner-leaves-left {
  top: -1.2vh;
  left: -2vw;
}

.tv-corner-leaves-right {
  right: -2vw;
  bottom: -1.3vh;
  transform: rotate(180deg);
}

.tv-reference-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 26vw minmax(0, 1fr) 26vw;
  align-items: center;
  min-height: 0;
}

.tv-reference-brand {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 0;
  text-align: center;
}

.tv-reference-brand h1 {
  margin: 0;
  color: #0c4b29;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.65rem, 6.2vh, 4.55rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.035em;
}

.tv-reference-brand p {
  margin: 0.8vh 0 0.25vh;
  color: #8f372d;
  font-size: clamp(0.82rem, 1.9vh, 1.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tv-reference-brand p::before,
.tv-reference-brand p::after {
  content: "";
  display: inline-block;
  width: 7vw;
  height: 0.18vh;
  margin: 0 1vw 0.45vh;
  background: rgba(58, 72, 50, 0.55);
}

.tv-reference-brand address {
  margin: 0;
  color: #183d2a;
  font-size: clamp(0.76rem, 1.75vh, 1.08rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.tv-reference-cup {
  position: absolute;
  left: 35.4vw;
  top: 3vh;
  color: #8f372d;
  font-size: clamp(2rem, 5.2vh, 3.5rem);
  line-height: 1;
}

.tv-food-shot {
  display: flex;
  align-items: center;
  gap: 2vw;
  min-height: 0;
  padding: 0 3vw;
  text-shadow: 0 1.2vh 2.6vh rgba(42, 28, 12, 0.22);
}

.tv-food-shot-right {
  justify-content: flex-end;
}

.tv-food-shot span {
  display: grid;
  place-items: center;
  width: clamp(4.2rem, 9.6vh, 6.6rem);
  height: clamp(4.2rem, 9.6vh, 6.6rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 239, 0.92), rgba(226, 220, 192, 0.82));
  font-size: clamp(2.7rem, 6.7vh, 4.5rem);
  filter: saturate(0.94);
}

.tv-reference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 26.5fr 23.4fr 29fr 19.1fr;
  gap: 0.9vw;
  min-height: 0;
  overflow: hidden;
}

.tv-reference-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  gap: 0.7vh;
}

.tv-ref-panel {
  min-width: 0;
  padding: 0.5vh 0.62vw 0.58vh;
  border: 0.16vh solid rgba(20, 79, 42, 0.12);
  border-radius: 0.95vw;
  background: rgba(255, 252, 241, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.tv-ref-panel h2 {
  display: flex;
  align-items: center;
  gap: 0.55vw;
  min-height: 3vh;
  margin: -0.05vh -0.16vw 0.48vh;
  padding: 0 0.72vw;
  border-radius: 0.42vw;
  color: #fff7de;
  background: linear-gradient(90deg, #004624, #0b6b3c);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.98rem, 2.28vh, 1.58rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.tv-ref-panel h2 small {
  margin-left: auto;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.38rem, 0.86vh, 0.6rem);
  font-weight: 800;
  line-height: 1.06;
  text-transform: none;
}

.tv-ref-price-list,
.tv-ref-addon-list {
  display: grid;
  gap: 0.28vh;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-ref-price-list li,
.tv-ref-addon-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65vw;
  align-items: baseline;
  min-width: 0;
  color: #090d0b;
  font-size: clamp(0.68rem, 1.68vh, 1.14rem);
  font-weight: 900;
  line-height: 1.08;
}

.tv-ref-price-list li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tv-ref-price-list li span::after {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 6vw;
  margin-left: 0.42vw;
  border-bottom: 0.12vh solid rgba(49, 67, 49, 0.16);
  vertical-align: middle;
}

.tv-ref-price-list strong,
.tv-ref-addon-list strong,
.tv-ref-drink-row b,
.tv-ref-drink-row strong {
  color: #101713;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tv-ref-price-list small {
  font-size: 0.72em;
  font-weight: 800;
}

.tv-ref-desc-list {
  gap: 0.95vh;
}

.tv-ref-desc-list li {
  align-items: start;
}

.tv-ref-desc-list b {
  display: block;
  margin-bottom: 0.28vh;
  font-size: clamp(0.82rem, 1.92vh, 1.35rem);
  line-height: 1;
}

.tv-ref-desc-list em {
  display: block;
  max-width: 95%;
  color: #111812;
  font-size: clamp(0.52rem, 1.08vh, 0.74rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.22;
}

.tv-ref-desc-list li span::after {
  display: none;
}

.tv-ref-breakfast {
  flex: 0 0 47%;
}

.tv-ref-bagels {
  flex: 1 1 auto;
}

.tv-ref-sandwiches {
  flex: 0 0 38%;
}

.tv-ref-toasts {
  flex: 0 0 21%;
}

.tv-ref-smoothies {
  flex: 1 1 auto;
  background: rgba(255, 252, 241, 0.58);
}

.tv-reference-column-drinks {
  gap: 0.48vh;
}

.tv-ref-drinks,
.tv-ref-single-drinks,
.tv-ref-cold,
.tv-ref-espresso {
  padding-bottom: 0.48vh;
}

.tv-ref-drink-table {
  display: grid;
  gap: 0.14vh;
  font-size: clamp(0.56rem, 1.33vh, 0.86rem);
  font-weight: 900;
  line-height: 1.08;
}

.tv-ref-drink-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(2.3rem, 3.35vw) minmax(2.3rem, 3.35vw) minmax(2.3rem, 3.35vw);
  gap: 0.34vw;
  align-items: baseline;
  border-bottom: 0.1vh solid rgba(52, 63, 50, 0.16);
}

.tv-ref-drink-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-ref-drink-head {
  color: #2b3d2f;
  font-size: clamp(0.48rem, 1.1vh, 0.7rem);
}

.tv-ref-single-table .tv-ref-drink-row,
.tv-ref-cold-table .tv-ref-drink-row {
  grid-template-columns: minmax(0, 1fr) minmax(2.8rem, 4.2vw) minmax(2.8rem, 4.2vw);
}

.tv-reference-column-addons {
  gap: 1.2vh;
}

.tv-ref-addons {
  flex: 0 0 57%;
  padding: 0.78vh 1vw;
  background: rgba(255, 252, 243, 0.76);
}

.tv-ref-addons h2 {
  justify-content: center;
  margin: 0 0 1.2vh;
  color: #88342f;
  background: transparent;
  font-size: clamp(1.15rem, 2.55vh, 1.8rem);
}

.tv-ref-addon-list {
  gap: 0.82vh;
}

.tv-ref-addon-list li {
  font-size: clamp(0.62rem, 1.36vh, 0.9rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.tv-ref-addon-list small {
  grid-column: 1 / -1;
  margin-top: -0.34vh;
  font-size: clamp(0.5rem, 1.12vh, 0.72rem);
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
}

.tv-ref-addon-leaf {
  width: 8vw;
  height: 3.4vh;
  margin: 1.3vh auto 0;
  border-top: 0.16vh solid rgba(24, 82, 45, 0.58);
  border-bottom: 0.16vh solid rgba(24, 82, 45, 0.58);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.tv-ref-feature-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  overflow: hidden;
  border: 0.14vh solid rgba(21, 80, 43, 0.12);
  border-radius: 0.9vw;
  background: rgba(255, 252, 243, 0.58);
}

.tv-ref-feature-grid div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.55vh;
  min-width: 0;
  border-right: 0.12vh solid rgba(21, 80, 43, 0.11);
  border-bottom: 0.12vh solid rgba(21, 80, 43, 0.11);
  text-align: center;
}

.tv-ref-feature-grid div:nth-child(3n) {
  border-right: 0;
}

.tv-ref-feature-grid div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.tv-ref-feature-grid span {
  color: #0f3e27;
  font-size: clamp(1.4rem, 4vh, 2.65rem);
  line-height: 0.9;
}

.tv-ref-feature-grid strong {
  font-size: clamp(0.42rem, 1.05vh, 0.66rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.tv-ref-thanks {
  align-self: center;
  justify-self: center;
  min-width: 45vw;
  margin: 0.55vh 0 0;
  padding: 0.58vh 3vw 0.72vh;
  border-radius: 999px;
  color: #fff6d5;
  background: linear-gradient(90deg, #005225, #08723b);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.92rem, 1.95vh, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tv-reference-page .tv-menu-controls {
  top: 2vh;
  right: 2vw;
}

.tv-reference-page .tv-menu-controls a,
.tv-reference-page .tv-menu-controls button {
  min-height: 3.6vh;
  padding: 0 1.15vw;
  font-size: clamp(0.48rem, 1vh, 0.68rem);
  background: rgba(0, 69, 36, 0.9);
}
