@layer reset, base, components, layout, motion;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }

  body,
  h1,
  h2,
  h3,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

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

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

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

@layer base {
  :root {
    --cream: #f3e8d2;
    --cream-2: #eadabd;
    --paper: #fffaf0;
    --ink: #201713;
    --muted: #695c52;
    --red: #c94736;
    --red-dark: #9f2f25;
    --green: #405442;
    --green-bright: #667d58;
    --yellow: #f2bf3f;
    --line: rgba(32, 23, 19, 0.2);
    --white-line: rgba(255, 250, 240, 0.22);
    --shadow: 0 28px 80px rgba(45, 31, 22, 0.14);
    --container: min(1280px, calc(100vw - 48px));
    --headline: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
    --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  body {
    min-width: 0;
    overflow-x: clip;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    position: fixed;
    z-index: 9999;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  ::selection {
    background: var(--red);
    color: var(--paper);
  }

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

  h1,
  h2,
  h3 {
    font-family: var(--headline);
    font-weight: 900;
    text-transform: uppercase;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(3.4rem, 7.2vw, 7.7rem);
    line-height: 0.88;
    letter-spacing: -0.035em;
  }

  .container {
    width: var(--container);
    margin-inline: auto;
  }

  .section {
    padding-block: clamp(92px, 11vw, 170px);
  }

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

  .skip-link {
    position: fixed;
    z-index: 10001;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 99px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
  }

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

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--red-dark);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .eyebrow::before {
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .eyebrow--light {
    color: var(--cream-2);
  }
}

@layer components {
  .button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .button span {
    font-size: 1.05rem;
    transition: transform 180ms ease;
  }

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

  .button:hover span {
    transform: translate(2px, -2px);
  }

  .button--small {
    min-height: 44px;
    gap: 14px;
    padding: 10px 18px;
    font-size: 0.69rem;
  }

  .button--red {
    background: var(--red);
    color: var(--paper);
  }

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

  .button--dark {
    background: var(--ink);
    color: var(--paper);
  }

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

  .button--outline {
    border-color: currentColor;
    background: transparent;
  }

  .button--outline:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    border-bottom: 1.5px solid currentColor;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .text-link span {
    font-size: 1rem;
    transition: transform 180ms ease;
  }

  .text-link:hover span {
    transform: translate(3px, -3px);
  }

  .brand {
    display: grid;
    grid-template-columns: 43px auto;
    grid-template-rows: 26px 16px;
    align-items: center;
    column-gap: 9px;
    width: max-content;
    line-height: 1;
  }

  .brand__mark {
    grid-row: 1 / 3;
    width: 43px;
    color: var(--red);
  }

  .brand__mark circle,
  .brand__mark path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.8px;
  }

  .brand__type {
    align-self: end;
    font-family: var(--headline);
    font-size: 1.72rem;
    letter-spacing: 0.015em;
    text-transform: uppercase;
  }

  .brand__sub {
    align-self: start;
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.105em;
    text-transform: uppercase;
  }

  .topline {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 7px 18px;
    background: var(--ink);
    color: var(--cream);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .topline__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
  }

  .site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 82px;
    border-bottom: 1px solid transparent;
    background: rgba(243, 232, 210, 0.84);
    backdrop-filter: blur(18px);
    transition: height 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  }

  .site-header.is-scrolled {
    height: 72px;
    border-color: var(--line);
    box-shadow: 0 8px 28px rgba(32, 23, 19, 0.08);
  }

  .site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
  }

  .main-nav__social {
    white-space: nowrap;
  }

  .main-nav > a:not(.button) {
    position: relative;
    min-height: 44px;
    align-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1.5px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .main-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .main-nav__social {
    color: var(--red-dark);
  }

  .nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle.is-open > span:nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle.is-open > span:nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .ticker {
    overflow: hidden;
    border-block: 2px solid var(--ink);
    background: var(--red);
    color: var(--paper);
  }

  .ticker__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 30px;
    padding-block: 17px;
    font-family: var(--headline);
    font-size: clamp(1.3rem, 2vw, 2.1rem);
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    animation: ticker 24s linear infinite;
  }

  .ticker__track i {
    color: var(--yellow);
    font-family: var(--body);
    font-size: 0.8em;
    font-style: normal;
  }

  .menu-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 30px;
    isolation: isolate;
  }

  .menu-card > img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .menu-card:hover > img {
    transform: scale(1.035);
  }

  .menu-card__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 18, 14, 0.04) 20%, rgba(25, 18, 14, 0.84) 100%);
  }

  .menu-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(22px, 3vw, 38px);
  }

  .menu-card__content--light {
    color: var(--paper);
  }

  .menu-card__number {
    width: 39px;
    height: 39px;
    align-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.67rem;
    font-weight: 850;
    text-align: center;
  }

  .menu-card__content p {
    margin-bottom: 6px;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-card__content h3 {
    font-size: clamp(2.2rem, 4.2vw, 4.8rem);
    line-height: 0.9;
  }

  .menu-card__content div > span {
    display: block;
    max-width: 380px;
    margin-top: 11px;
    font-size: 0.91rem;
    font-weight: 600;
  }

  .coffee-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--yellow);
  }

  .coffee-art::before,
  .coffee-art::after {
    position: absolute;
    width: 17px;
    height: 8px;
    border-radius: 99px;
    background: var(--ink);
    content: "";
    transform: rotate(36deg);
  }

  .coffee-art::before {
    top: 20%;
    left: 16%;
    box-shadow: 180px -35px 0 var(--ink), 280px 42px 0 var(--ink), 64px 150px 0 var(--ink), 238px 188px 0 var(--ink);
  }

  .coffee-art::after {
    top: 32%;
    right: 14%;
    box-shadow: -110px -95px 0 var(--ink), -230px 20px 0 var(--ink), -160px 178px 0 var(--ink);
    transform: rotate(-42deg);
  }

  .coffee-art__cup {
    position: absolute;
    top: 34%;
    left: 50%;
    width: 165px;
    height: 125px;
    border: 5px solid var(--ink);
    border-radius: 13px 13px 75px 75px;
    background: var(--paper);
    transform: translate(-50%, -50%) rotate(-6deg);
  }

  .coffee-art__cup::after {
    position: absolute;
    top: 18px;
    right: -45px;
    width: 50px;
    height: 58px;
    border: 5px solid var(--ink);
    border-left: 0;
    border-radius: 0 34px 34px 0;
    content: "";
  }

  .coffee-art__cup span {
    position: absolute;
    top: 13px;
    right: 12px;
    left: 12px;
    height: 30px;
    border: 4px solid var(--ink);
    border-radius: 50%;
    background: var(--ink);
  }

  .coffee-art__steam {
    position: absolute;
    z-index: 1;
    top: 5%;
    left: 46%;
    width: 26px;
    height: 60px;
    border: 4px solid transparent;
    border-left-color: var(--ink);
    border-radius: 50%;
    transform: rotate(18deg);
  }

  .coffee-art__steam--two {
    top: 8%;
    left: 55%;
    height: 48px;
    transform: rotate(-9deg);
  }

  .menu-card--coffee .menu-card__content {
    z-index: 2;
  }

  .menu-card--coffee .menu-card__content > div {
    width: fit-content;
    padding: 9px 11px 8px;
    background: var(--yellow);
    box-decoration-break: clone;
  }

  .menu-card--juice {
    background: var(--green);
  }

  .juice-art {
    position: absolute;
    top: 30px;
    right: -8px;
    width: 130px;
    height: 190px;
    border: 3px solid var(--paper);
    border-radius: 15px 15px 44px 44px;
    background: linear-gradient(to top, var(--red) 0 58%, transparent 58%);
    transform: rotate(10deg);
  }

  .juice-art::before {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 71px;
    width: 4px;
    height: 130px;
    background: var(--paper);
    content: "";
    transform: rotate(10deg);
  }

  .juice-art::after {
    position: absolute;
    top: 90px;
    left: 22px;
    width: 62px;
    height: 62px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    content: "";
    box-shadow: inset 0 0 0 10px var(--red), inset 0 0 0 13px var(--paper);
  }

  .menu-card--pudding img {
    object-position: center 64%;
  }

  .menu-note {
    display: grid;
    grid-template-columns: auto minmax(220px, 650px) auto;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-note__asterisk {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--paper);
    font-size: 1.1rem;
  }

  .menu-note p {
    color: var(--muted);
    font-size: 0.9rem;
  }

  .story__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 42px;
  }

  .story__tags li {
    padding: 9px 14px;
    border: 1px solid var(--cream-2);
    border-radius: 99px;
    color: var(--cream-2);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .quote-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(27px, 3vw, 40px);
    border: 2px solid var(--ink);
    border-radius: 26px;
    background: var(--yellow);
    box-shadow: 8px 8px 0 var(--ink);
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .quote-card:nth-child(2) {
    transform: rotate(-1.5deg);
  }

  .quote-card:nth-child(3) {
    transform: rotate(1.5deg);
  }

  .quote-card:hover {
    box-shadow: 3px 3px 0 var(--ink);
    transform: translate(5px, 5px) rotate(0);
  }

  .quote-card--red {
    background: var(--red);
    color: var(--paper);
  }

  .quote-card--green {
    background: var(--green);
    color: var(--paper);
  }

  .stars {
    color: currentColor;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .quote-card blockquote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.18;
  }

  .quote-card figcaption {
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 6px rgba(242, 191, 63, 0.16);
  }

  .visit__hours[data-open="true"] .status-dot {
    background: #3f9151;
    box-shadow: 0 0 0 6px rgba(63, 145, 81, 0.15);
  }

  .visit__hours[data-open="false"] .status-dot {
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(201, 71, 54, 0.14);
  }

  .mobile-dock {
    display: none;
  }
}

@layer layout {
  .hero {
    position: relative;
    min-height: max(760px, calc(100svh - 114px));
    overflow: clip;
    padding-block: clamp(44px, 6vw, 86px) clamp(68px, 8vw, 116px);
  }

  .hero__texture {
    position: absolute;
    top: 5%;
    left: -80px;
    width: 350px;
    height: 350px;
    border: 70px solid rgba(201, 71, 54, 0.07);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: minmax(410px, 0.9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 92px);
  }

  .hero__copy {
    position: relative;
    z-index: 2;
  }

  .hero__title {
    margin-top: 25px;
    font-size: clamp(5.2rem, 8.4vw, 9.2rem);
    line-height: 0.78;
    letter-spacing: -0.045em;
  }

  .hero__title span {
    display: block;
  }

  .hero__title-accent {
    width: fit-content;
    margin-top: 0.09em;
    padding-inline: 0.08em 0.11em;
    background: var(--red);
    color: var(--cream);
    transform: rotate(-1.5deg);
  }

  .hero__lead {
    max-width: 540px;
    margin-top: 32px;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.18rem, 1.7vw, 1.56rem);
    line-height: 1.35;
  }

  .hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
  }

  .hero__facts {
    display: flex;
    max-width: 520px;
    gap: 0;
    margin-top: 48px;
    border-block: 1px solid var(--line);
  }

  .hero__facts div {
    width: 50%;
    padding: 15px 20px 15px 0;
  }

  .hero__facts div + div {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }

  .hero__facts dt {
    margin-bottom: 3px;
    color: var(--red-dark);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hero__facts dd {
    font-size: 0.86rem;
    font-weight: 800;
  }

  .hero__visual {
    position: relative;
    min-width: 0;
  }

  .hero__image-wrap {
    aspect-ratio: 0.83;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 250px 250px 36px 36px;
    background: var(--cream-2);
    box-shadow: 15px 15px 0 var(--red), var(--shadow);
    will-change: transform;
  }

  .hero__image-wrap picture,
  .hero__image-wrap img {
    width: 100%;
    height: 100%;
  }

  .hero__image-wrap img {
    object-fit: cover;
    object-position: 64% center;
  }

  .hero__seal {
    position: absolute;
    z-index: 2;
    right: -30px;
    bottom: 78px;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
    transform: rotate(9deg);
  }

  .hero__seal svg {
    position: absolute;
    inset: 5px;
    width: 108px;
    height: 108px;
    animation: seal-spin 18s linear infinite;
  }

  .hero__seal text {
    fill: var(--ink);
    font-family: var(--body);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }

  .hero__seal svg > circle {
    fill: none;
    stroke: var(--ink);
    stroke-width: 3;
  }

  .hero__seal > span {
    font-family: var(--headline);
    font-size: 2.15rem;
    line-height: 1;
  }

  .hero__photo-note {
    position: absolute;
    right: 120px;
    bottom: 18px;
    padding: 8px 12px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: rotate(-2deg);
  }

  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    align-items: end;
    gap: 50px;
    margin-bottom: clamp(50px, 7vw, 84px);
  }

  .section-heading > * {
    min-width: 0;
  }

  .section-heading h2 {
    margin-top: 24px;
  }

  .selection .section-heading h2 {
    font-size: clamp(3.4rem, 6.2vw, 6.45rem);
  }

  .section-heading > p {
    padding-bottom: 8px;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 350px 290px;
    gap: 18px;
  }

  .menu-card--bagels {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
  }

  .menu-card--bagels img {
    object-position: 47% center;
  }

  .menu-card--coffee {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .menu-card--juice {
    grid-column: 8 / 10;
    grid-row: 2;
  }

  .menu-card--juice .menu-card__content {
    padding: 22px;
  }

  .menu-card--juice h3 {
    font-size: clamp(2rem, 3.4vw, 3.5rem);
  }

  .menu-card--pudding {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  .menu-card--pudding .menu-card__content {
    padding: 22px;
  }

  .menu-card--pudding h3 {
    font-size: clamp(1.9rem, 3.1vw, 3.2rem);
  }

  .story {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
  }

  .story__rings {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 610px;
    height: 610px;
    opacity: 0.15;
  }

  .story__rings span {
    position: absolute;
    inset: 0;
    border: 3px solid var(--cream);
    border-radius: 50%;
  }

  .story__rings span:nth-child(2) {
    inset: 18%;
  }

  .story__rings span:nth-child(3) {
    inset: 39%;
    background: var(--cream);
  }

  .story__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
  }

  .story h2 {
    margin-top: 25px;
    font-size: clamp(4.2rem, 8.5vw, 9rem);
  }

  .story h2 em {
    display: inline-block;
    padding-inline: 0.09em;
    background: var(--red);
    color: var(--cream);
    font-style: normal;
    transform: rotate(-2deg);
  }

  .story__copy {
    position: relative;
    max-width: 520px;
    padding-top: 94px;
  }

  .story__copy::before {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white-line);
    content: "";
  }

  .story__big-mark {
    position: absolute;
    top: -82px;
    left: -36px;
    color: rgba(243, 232, 210, 0.06);
    font-family: var(--headline);
    font-size: 15rem;
    line-height: 1;
  }

  .story__lead {
    margin-bottom: 29px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1.25;
  }

  .story__copy > p:not(.story__lead) {
    max-width: 460px;
    color: rgba(255, 250, 240, 0.68);
    font-size: 0.98rem;
    line-height: 1.8;
  }

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

  .voices .container {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(55px, 8vw, 120px);
  }

  .voices__heading {
    align-self: start;
  }

  .voices__heading h2 {
    margin: 24px 0 39px;
  }

  .voices__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .voices__cards .quote-card:first-child {
    grid-column: 1 / 3;
    min-height: 245px;
  }

  .visit {
    background: var(--cream);
  }

  .visit__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(370px, 0.8fr);
    min-height: 680px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 38px;
    background: var(--paper);
    box-shadow: 12px 12px 0 var(--green);
  }

  .visit__map {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-right: 2px solid var(--ink);
    background-color: var(--cream-2);
    background-image: linear-gradient(rgba(32, 23, 19, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 23, 19, 0.09) 1px, transparent 1px);
    background-size: 44px 44px;
  }

  .visit__map svg {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .map-line {
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
  }

  .map-line--thin {
    opacity: 0.22;
    stroke-width: 11;
  }

  .map-line--road {
    stroke: var(--paper);
    stroke-width: 70;
  }

  .map-line--accent {
    stroke: var(--red);
    stroke-dasharray: 3 17;
    stroke-width: 5;
  }

  .visit__map circle {
    fill: var(--yellow);
  }

  .map-pin {
    fill: var(--red);
    stroke: var(--ink);
    stroke-width: 4;
  }

  .visit__map text {
    fill: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 4px;
  }

  .visit__map-label {
    position: absolute;
    bottom: 24px;
    left: 25px;
    padding: 9px 13px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(-1deg);
  }

  .visit__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 82px);
  }

  .visit__content h2 {
    margin: 26px 0 40px;
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .visit address {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.35;
  }

  .visit__hours {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .visit__hours > div:last-child {
    display: flex;
    flex-direction: column;
  }

  .visit__hours strong {
    font-size: 0.85rem;
  }

  .visit__hours span {
    color: var(--muted);
    font-size: 0.72rem;
  }

  .visit__holiday-note {
    margin: 11px 0 31px;
    color: var(--muted);
    font-size: 0.7rem;
  }

  .visit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .closing {
    overflow: hidden;
    border-block: 2px solid var(--ink);
    background: var(--green);
    color: var(--paper);
  }

  .closing__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
    padding-block: clamp(52px, 6vw, 78px);
  }

  .closing p {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .closing h2 {
    font-size: clamp(4.4rem, 10.2vw, 11rem);
    white-space: nowrap;
  }

  .closing a {
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transition: transform 250ms ease, background 180ms ease;
  }

  .closing a span:last-child {
    display: block;
    margin-top: -38px;
    font-size: 1.3rem;
  }

  .closing a:hover {
    background: var(--paper);
    transform: rotate(8deg) scale(1.05);
  }

  .site-footer {
    padding-block: 70px 26px;
    background: var(--ink);
    color: var(--cream);
  }

  .site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 0.7fr;
    gap: 40px;
    padding-bottom: 70px;
  }

  .brand--footer .brand__mark {
    color: var(--red);
  }

  .brand--footer .brand__sub {
    color: rgba(243, 232, 210, 0.58);
  }

  .site-footer__label {
    margin-bottom: 13px;
    color: rgba(243, 232, 210, 0.5);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .site-footer__grid > div > p:last-child {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 750;
  }

  .site-footer__links a:hover {
    color: var(--yellow);
  }

  .site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--white-line);
    color: rgba(243, 232, 210, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }
}

@layer motion {
  @keyframes ticker {
    to { transform: translateX(-50%); }
  }

  @keyframes seal-spin {
    to { transform: rotate(360deg); }
  }

  .reveal {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 1050px);
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.66rem;
  }

  .hero__grid {
    grid-template-columns: minmax(380px, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
  }

  .hero__title {
    font-size: clamp(4.75rem, 8.6vw, 7.2rem);
  }

  .hero__seal {
    right: -12px;
  }

  .menu-grid {
    grid-template-rows: 330px 280px;
  }

  .menu-card--bagels {
    grid-column-end: 7;
  }

  .menu-card--coffee,
  .menu-card--juice {
    grid-column-start: 7;
  }

  .menu-card--juice {
    grid-column-end: 10;
  }

  .menu-card--pudding {
    grid-column-start: 10;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    z-index: -1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 48px max(24px, calc((100vw - 760px) / 2));
    overflow-y: auto;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .main-nav.is-open {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav > a:not(.button) {
    width: 100%;
    min-height: auto;
    padding-block: 12px;
    font-family: var(--headline);
    font-size: clamp(2.6rem, 9vw, 4.2rem);
    line-height: 1;
  }

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

  .main-nav .button {
    margin-top: 25px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__title {
    font-size: clamp(5.2rem, 14vw, 8rem);
  }

  .hero__lead {
    max-width: 590px;
  }

  .hero__visual {
    max-width: 680px;
    justify-self: center;
  }

  .hero__image-wrap {
    aspect-ratio: 1.15;
    border-radius: 220px 220px 30px 30px;
  }

  .hero__seal {
    right: -10px;
    bottom: 55px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 580px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 330px 360px;
  }

  .menu-card--bagels {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .menu-card--coffee {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .menu-card--juice {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .menu-card--pudding {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .menu-card--pudding img {
    object-position: center 67%;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .story__copy {
    padding-top: 60px;
  }

  .story__copy::before {
    top: 20px;
  }

  .voices .container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .voices__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .voices__heading .eyebrow {
    grid-column: 1 / 3;
  }

  .voices__heading h2 {
    margin-bottom: 0;
  }

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

  .visit__map {
    min-height: 430px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .visit__content {
    min-height: 570px;
  }

  .closing__inner {
    grid-template-columns: 1fr auto;
  }

  .closing p {
    display: none;
  }

  .closing h2 {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

  .closing a {
    width: 110px;
    height: 110px;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer__links {
    grid-column: 2 / 4;
    flex-direction: row;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 72px;
  }

  .topline {
    min-height: 29px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .topline span:first-child {
    display: none;
  }

  .topline__dot {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .brand {
    grid-template-columns: 37px auto;
    grid-template-rows: 24px 14px;
    column-gap: 7px;
  }

  .brand__mark {
    width: 37px;
  }

  .brand__type {
    font-size: 1.48rem;
  }

  .brand__sub {
    font-size: 0.48rem;
  }

  .nav-toggle {
    width: 45px;
    height: 45px;
  }

  .main-nav {
    top: 100%;
    height: calc(100dvh - 66px);
    padding: 36px 20px 110px;
  }

  .main-nav > a.main-nav__social:not(.button) {
    font-size: clamp(2.2rem, 9.8vw, 2.9rem);
  }

  .section {
    padding-block: 86px;
  }

  h2 {
    font-size: clamp(3.55rem, 17vw, 5.8rem);
  }

  .hero {
    padding: 38px 0 74px;
  }

  .hero__texture {
    top: 0;
    left: -130px;
  }

  .hero__title {
    margin-top: 20px;
    font-size: clamp(4.4rem, 22.5vw, 7.1rem);
  }

  .hero__lead {
    margin-top: 25px;
    font-size: 1.12rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    margin-top: 34px;
  }

  .hero__facts div {
    padding-block: 13px;
  }

  .hero__facts div + div {
    padding-left: 16px;
  }

  .hero__facts dd {
    font-size: 0.75rem;
  }

  .hero__visual {
    width: calc(100% - 8px);
  }

  .hero__image-wrap {
    aspect-ratio: 0.93;
    border-radius: 160px 160px 24px 24px;
    box-shadow: 9px 9px 0 var(--red), var(--shadow);
  }

  .hero__image-wrap img {
    object-position: 65% center;
  }

  .hero__seal {
    right: -5px;
    bottom: 37px;
    width: 94px;
    height: 94px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero__seal svg {
    inset: 4px;
    width: 84px;
    height: 84px;
  }

  .hero__seal text {
    font-size: 8px;
  }

  .hero__seal > span {
    font-size: 1.8rem;
  }

  .hero__photo-note {
    right: 76px;
    bottom: 8px;
    font-size: 0.55rem;
  }

  .ticker__track {
    gap: 22px;
    padding-block: 14px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    margin-top: 20px;
  }

  .selection .section-heading h2 {
    overflow-wrap: normal;
    font-size: clamp(3.05rem, 12.5vw, 4rem);
    hyphens: manual;
  }

  .section-heading > p {
    font-size: 1.06rem;
  }

  .menu-grid {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .menu-card {
    min-height: 330px;
    border-radius: 23px;
  }

  .menu-card--bagels {
    min-height: 470px;
  }

  .menu-card--coffee {
    min-height: 370px;
  }

  .menu-card--juice,
  .menu-card--pudding {
    min-height: 350px;
  }

  .menu-card__content,
  .menu-card--juice .menu-card__content,
  .menu-card--pudding .menu-card__content {
    padding: 24px;
  }

  .menu-card__content h3,
  .menu-card--juice h3,
  .menu-card--pudding h3 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .menu-card--pudding img {
    object-position: center 64%;
  }

  .menu-note {
    grid-template-columns: auto 1fr;
    gap: 15px;
    margin-top: 26px;
  }

  .menu-note .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .story h2 {
    font-size: clamp(4.3rem, 20vw, 6.7rem);
  }

  .story__rings {
    top: -60px;
    right: -260px;
    width: 520px;
    height: 520px;
  }

  .story__copy {
    padding-top: 50px;
  }

  .story__lead {
    font-size: 1.42rem;
  }

  .voices__heading {
    display: block;
  }

  .voices__heading h2 {
    margin-bottom: 28px;
  }

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

  .voices__cards .quote-card:first-child {
    grid-column: auto;
  }

  .quote-card,
  .voices__cards .quote-card:first-child {
    min-height: 245px;
  }

  .quote-card:nth-child(2),
  .quote-card:nth-child(3) {
    transform: none;
  }

  .visit {
    padding-inline: 4px;
  }

  .visit__shell {
    border-radius: 25px;
    box-shadow: 7px 7px 0 var(--green);
  }

  .visit__map {
    min-height: 330px;
  }

  .visit__map svg {
    width: 125%;
    max-width: none;
    transform: translateX(-11%);
  }

  .visit__content {
    min-height: 0;
    padding: 46px 25px 50px;
  }

  .visit__content h2 {
    margin-bottom: 30px;
    font-size: clamp(4.2rem, 19vw, 6.2rem);
  }

  .visit__actions {
    flex-direction: column;
  }

  .visit__actions .button {
    width: 100%;
  }

  .closing__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
    text-align: center;
  }

  .closing h2 {
    font-size: clamp(4rem, 18.5vw, 6rem);
    white-space: normal;
  }

  .closing a {
    width: 104px;
    height: 104px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 22px;
    padding-bottom: 50px;
  }

  .brand--footer {
    grid-column: 1 / 3;
  }

  .site-footer__links {
    grid-column: 1 / 3;
    flex-wrap: wrap;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 6px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 900;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--paper);
    box-shadow: 0 10px 30px rgba(32, 23, 19, 0.22);
  }

  .mobile-dock a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-dock a + a {
    background: var(--red);
    color: var(--paper);
  }
}

@media print {
  .topline,
  .site-header,
  .ticker,
  .mobile-dock,
  .closing,
  .hero__seal {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  .section,
  .hero {
    min-height: 0;
    padding-block: 40px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal subpage */
.legal-page {
  background: var(--paper);
}

.legal-page main {
  overflow: hidden;
}

.legal-shell {
  max-width: 960px;
}

.legal-hero {
  padding-block: clamp(72px, 10vw, 140px);
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.legal-hero h1 {
  margin-block: 24px 28px;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.legal-hero p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.legal-content {
  padding-block: clamp(60px, 9vw, 120px);
}

.legal-notice {
  margin-bottom: 86px;
  padding: 24px 28px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
}

.legal-notice strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-notice p {
  font-size: 0.93rem;
}

.legal-section {
  padding-block: 76px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 23px 0 52px;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.legal-section h3 {
  margin: 38px 0 10px;
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section p {
  max-width: 760px;
  color: var(--muted);
}

.legal-section p + p {
  margin-top: 18px;
}

.legal-section a {
  color: var(--red-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section .legal-updated {
  margin-top: 58px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-footer {
  padding-block: 28px;
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(243, 232, 210, 0.75);
  font-size: 0.72rem;
}

.legal-footer a {
  color: var(--cream);
  font-weight: 800;
}

@media (max-width: 620px) {
  .legal-page {
    padding-bottom: 0;
  }

  .legal-back {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.58rem;
  }

  .legal-hero {
    padding-block: 64px;
  }

  .legal-hero h1 {
    font-size: clamp(2.3rem, 12vw, 4.7rem);
  }

  .legal-notice {
    margin-bottom: 58px;
    padding: 20px;
  }

  .legal-section {
    padding-block: 58px;
  }

  .legal-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
