:root {
  --ink: #15110f;
  --muted: #6a625d;
  --line: #ded8d2;
  --paper: #fffdfa;
  --white: #ffffff;
  --red: #d63b25;
  --brown: #5b3328;
  --green: #60765c;
  --blue: #5d7890;
  --shadow: 0 18px 45px rgba(32, 21, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

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

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

button,
select,
input {
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: clamp(12px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.cart-button,
.product-card button,
.filter,
.scenario,
.button {
  border-radius: 6px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cart-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.cart-button strong {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 6vw, 90px) clamp(18px, 5vw, 70px) 24px;
}

.hero h1,
.section-heading h2,
.planner h2,
.visit-card h2,
.learn-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(52px, 8vw, 126px);
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
}

.button.primary,
.product-card button {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
}

.hero-media {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 18%;
  background: var(--red);
  border-radius: 8px;
}

.hero-cup {
  position: absolute;
  width: min(57%, 430px);
  left: 0;
  bottom: 8%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.17));
}

.bag-stack {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 18px);
  margin-left: 10%;
  max-width: 90%;
}

.bag-stack img {
  width: min(34vw, 260px);
  aspect-ratio: 0.78;
  object-fit: contain;
  border-radius: 8px;
  background: #f1ede8;
  box-shadow: var(--shadow);
}

.bag-stack img:last-child {
  transform: translateY(42px);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.intent-card {
  min-height: 176px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.intent-card + .intent-card {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.intent-card span {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}

.intent-card strong {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}

.red { background: var(--red); }
.brown { background: var(--brown); }
.green { background: var(--green); }
.blue { background: var(--blue); }

.section,
.split-section,
.wholesale-section,
.learn-band {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 5vw, 70px);
  scroll-margin-top: 84px;
}

.intent-grid,
.hero,
.visit-section {
  scroll-margin-top: 84px;
}

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

.section-heading h2,
.planner h2,
.visit-card h2,
.learn-band h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 76px);
}

.section-heading p,
.planner p,
.visit-card p,
.learn-band p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
}

.filter.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 15px;
  min-height: 100%;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
  border-radius: 6px;
  background: #f3f0ec;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-card button {
  min-height: 40px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.planner p,
.split-section .planner label,
.split-section .planner select {
  color: rgba(255, 255, 255, 0.72);
}

.planner label {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 8px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.planner input,
.planner select {
  width: 100%;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 12px;
}

.planner-output {
  margin: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 18px;
}

.planner-output span {
  color: rgba(255, 255, 255, 0.66);
}

.planner-output strong {
  font-size: 44px;
}

.split-section .button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.subscription-visual {
  display: grid;
  place-items: center;
  min-height: 480px;
  background: var(--green);
  border-radius: 8px;
}

.subscription-visual img {
  width: min(78%, 390px);
  aspect-ratio: 0.78;
  object-fit: contain;
  background: #f3f0ec;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-4deg);
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 18px;
  align-items: stretch;
}

.visit-card {
  border: 1px solid var(--ink);
  padding: clamp(24px, 5vw, 52px);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  align-content: space-between;
  background: var(--white);
}

.visit-card address {
  font-style: normal;
  line-height: 1.55;
  color: var(--muted);
}

.visit-card address strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.visit-image {
  height: 100%;
  min-height: 480px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wholesale-section {
  background: var(--white);
}

.wholesale-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
}

.scenario-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.scenario {
  min-height: 50px;
  text-align: left;
  padding: 0 14px;
  color: var(--muted);
}

.scenario.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.scenario-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.scenario-panel img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  border-radius: 6px;
}

.scenario-panel h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
}

.scenario-panel p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.learn-band {
  background: var(--red);
  color: var(--white);
}

.learn-band p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.proof-row span {
  padding: 18px;
  font-weight: 800;
}

.proof-row span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section,
  .visit-section,
  .wholesale-layout,
  .scenario-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 500px;
    border-left: 0;
  }

  .intent-grid,
  .product-grid,
  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    display: block;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child,
  .cart-button span {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::before {
    inset: 18% 0 8% 10%;
  }

  .hero-cup {
    width: 54%;
  }

  .bag-stack img {
    width: 38vw;
  }

  .intent-grid,
  .product-grid,
  .proof-row,
  .scenario-list {
    grid-template-columns: 1fr;
  }

  .intent-card + .intent-card,
  .proof-row span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }

  .section,
  .split-section,
  .wholesale-section,
  .learn-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .visit-image {
    min-height: 360px;
  }

  .footer {
    display: grid;
  }
}

/* Shared Google Maps fix: replace decorative map sketches with real embedded maps. */
.google-map-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.google-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.google-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.google-map-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.google-map-copy p:not(.google-map-kicker) {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.google-map-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.google-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: #e6ebef;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
}

.map-sketch,
.mini-map,
.map-card:not(.google-map-card),
.map-panel:not(.google-map-panel),
.map[aria-label*="map" i] {
  display: none !important;
}

@media (max-width: 760px) {
  .google-map-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 560px);
    margin: 36px auto;
  }

  .google-map-frame {
    min-height: 300px;
  }
}

/* Shared real menu fix: menu category buttons now reveal actual menu items. */
.real-menu-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

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

.real-menu-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.real-menu-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.real-menu-head p:not(.real-menu-kicker) {
  max-width: 540px;
  margin: 0;
  line-height: 1.55;
  opacity: 0.82;
}

.real-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.real-menu-tab {
  min-height: 42px;
  border: 1px solid rgba(25, 25, 25, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.real-menu-tab[aria-selected="true"] {
  background: #151515;
  color: #fff;
  border-color: #151515;
}

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

.real-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.real-menu-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.real-menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.45;
  opacity: 0.78;
}

.real-menu-price {
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .real-menu-section {
    width: min(100% - 24px, 560px);
    margin: 36px auto;
    padding: 18px;
  }

  .real-menu-head {
    display: grid;
    align-items: start;
  }

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

  .real-menu-tab {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }

  .real-menu-panel {
    grid-template-columns: 1fr;
  }
}

