:root {
  --sand: #e8ddd0;
  --sand-2: #ddd0c2;
  --sand-3: #d0c0ae;
  --sand-4: #c4b19a;
  --ink: #2b2b2b;
  --ink-2: #3c3c3c;
  --muted: #6f655c;
  --cream: #f6f1ea;
  --line: rgba(43, 43, 43, 0.12);
  --line-strong: rgba(43, 43, 43, 0.22);
  --white: #faf7f2;
  --shadow: 0 18px 40px rgba(43, 43, 43, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --pill: 999px;
  --font: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-top: 46px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--sand-2);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#smooth-wrapper {
  overflow: hidden;
  width: 100%;
}

#smooth-content {
  overflow: visible;
  width: 100%;
  will-change: transform;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Ticker */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-top);
  background: var(--sand);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.ticker__track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.ticker span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Nav pill */
.nav {
  position: fixed;
  top: calc(var(--nav-top) + 16px);
  left: 22px;
  right: 22px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--sand) 88%, white);
  border-radius: var(--pill);
  padding: 11px 18px 11px 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  overflow: hidden;
}

.nav__wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 7.6em;
  height: 1em;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 1;
  overflow: visible;
}

.nav__wordmark span {
  display: inline-block;
  transform-origin: left center;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__wordmark:hover span {
  transform: scale(1.2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: var(--pill);
  transition: opacity 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 0.42;
}

.nav__toggle {
  display: none;
  min-width: 86px;
  height: 44px;
  border-radius: var(--pill);
  background: var(--sand-3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 18px;
}

.nav.is-open .nav__toggle {
  background: var(--ink);
  color: var(--cream);
}

/* Overlay menu */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--sand);
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.overlay.is-open {
  pointer-events: auto;
}

.overlay__inner {
  width: min(1200px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 148px 0 36px;
  min-height: 100%;
}

.overlay__logo {
  display: inline-block;
  font-size: clamp(3.4rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
  transform-origin: left center;
  will-change: transform;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.overlay__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overlay__logo:hover {
  transform: scale(1.22);
}

.overlay__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
}

.overlay__links a {
  font-size: clamp(1.6rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.08;
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.overlay__links a:hover {
  transform: scale(1.08);
  opacity: 0.4;
}

.overlay__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: 12px;
}

.overlay__meta p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.overlay__meta a {
  font-weight: 600;
}

.overlay__social {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--ink);
  color: var(--cream);
}

.btn--ghost {
  border: 1px solid var(--ink);
  background: transparent;
}

/* Layout */
.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.display {
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 640px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: var(--sand-3);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img,
.cat-card img,
.concept__media img,
.prose__media img,
.map img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.hero__media img {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 125%;
  object-position: center 55%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 43, 43, 0.08) 0%, rgba(43, 43, 43, 0.18) 42%, rgba(221, 208, 194, 0.92) 100%),
    linear-gradient(90deg, rgba(43, 43, 43, 0.18), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__content h1 {
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 18px;
}

.hero__content .lede {
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Intro */
.intro {
  padding: 100px 0 40px;
  text-align: center;
}

.intro h2 {
  max-width: 18ch;
  margin: 0 auto 20px;
}

.intro .lede {
  margin: 0 auto;
}

/* Marquee products */
.product-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  margin: 24px 0 10px;
  background: color-mix(in srgb, var(--sand) 70%, transparent);
}

.product-marquee__track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.product-marquee__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cup {
  width: 22px;
  height: 28px;
  border-radius: 4px 4px 8px 8px;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 -8px 10px rgba(0, 0, 0, 0.12);
}

.cup::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -2px;
  right: -2px;
  height: 6px;
  background: color-mix(in srgb, var(--cup) 55%, #2b2b2b);
  border-radius: 2px;
}

.cup::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 6px;
  width: 2px;
  height: 16px;
  background: var(--ink);
  border-radius: 2px;
  transform: rotate(12deg);
}

/* Categories */
.categories h2 {
  margin-bottom: 36px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-3);
  display: flex;
  align-items: flex-end;
}

.cat-card img {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 125%;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(43, 43, 43, 0.72));
}

.cat-card span {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 28px;
  text-transform: uppercase;
}

/* Concept teaser */
.concept {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.concept__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  background: var(--sand-3);
}

.concept__media img,
.prose__media img {
  position: absolute;
  inset: -8% 0 auto;
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.concept__copy h2 {
  margin: 10px 0 22px;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.concept__copy p {
  margin-bottom: 16px;
  color: var(--ink-2);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}

.feature {
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* Location */
.location-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.location-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.location-card p {
  margin-bottom: 8px;
}

.hours {
  margin: 22px 0 28px;
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--sand-3);
}

.map iframe,
.map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--sand);
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.footer__brand .footer__wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

.footer__wordmark span {
  display: inline-block;
  transform-origin: left center;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__wordmark:hover span {
  transform: scale(1.18);
}

.footer__brand a {
  font-weight: 600;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--muted);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer li a:hover {
  opacity: 0.55;
}

.footer__slogan {
  font-size: clamp(1.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Page hero */
.page-hero {
  padding: 160px 0 48px;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero .lede {
  font-size: 1.12rem;
}

/* Menu */
.menu-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 48px;
  position: sticky;
  top: 90px;
  z-index: 10;
}

.menu-nav a {
  background: var(--sand);
  border-radius: var(--pill);
  padding: 12px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.menu-nav a:hover,
.menu-nav a.is-active {
  background: var(--ink);
  color: var(--cream);
}

.menu-section {
  padding-bottom: 72px;
}

.menu-section h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}

.product:hover {
  transform: translateY(-4px);
}

.product__visual {
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.product__cup {
  width: 62px;
  height: 86px;
  border-radius: 10px 10px 22px 22px;
  background: linear-gradient(180deg, var(--cup) 0%, color-mix(in srgb, var(--cup) 62%, #2b2118) 100%);
  position: relative;
  box-shadow: 0 12px 24px rgba(43, 43, 43, 0.12);
}

.product__cup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -5px;
  right: -5px;
  height: 12px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--cup) 40%, #2b2b2b);
}

.product__cup::after {
  content: "";
  position: absolute;
  top: -26px;
  right: 16px;
  width: 3px;
  height: 28px;
  background: var(--ink);
  border-radius: 3px;
  transform: rotate(10deg);
}

.product h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product p {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Prose pages */
.prose {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.prose__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  background: var(--sand-3);
}

.prose__media img {
  position: absolute;
  inset: -8% 0 auto;
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 8px 0 18px;
}

.prose p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.quote {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 28px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0;
}

.stat {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
}

.stat b {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.split-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 32px;
}

.split-list article {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.split-list h3 {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal {
  max-width: 760px;
}

.legal h2 {
  margin: 28px 0 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  margin-bottom: 10px;
}

.cta-band {
  margin-top: 48px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 42px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.cta-band .btn--ghost {
  border-color: var(--cream);
  color: var(--cream);
}

.prose .cta-band {
  grid-column: 1 / -1;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav__pill {
    width: 100%;
    justify-content: space-between;
    padding-left: 16px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .concept,
  .location-block,
  .prose,
  .footer__grid,
  .cat-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prose__media,
  .concept__media {
    min-height: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-top: 40px;
  }

  .wrap,
  .hero__content {
    width: min(1240px, calc(100% - 28px));
  }

  .nav {
    left: 14px;
    right: 14px;
    top: calc(var(--nav-top) + 10px);
  }

  .nav__pill {
    width: 100%;
    justify-content: space-between;
    padding-left: 16px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cat-grid,
  .product-grid,
  .features,
  .stats,
  .concept,
  .location-block,
  .prose,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cat-card,
  .concept__media {
    min-height: 360px;
  }

  .section,
  .intro {
    padding: 64px 0;
  }

  .page-hero {
    padding: 150px 0 32px;
  }

  .hero__content {
    padding-bottom: 32px;
  }

  .overlay__links a {
    font-size: 2.1rem;
  }

  .menu-nav {
    top: 108px;
  }

  .cta-band {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero__media img {
    transform: none;
  }
}
