
:root {
  --paper: #fbf7f0;
  --cream: #f4eee4;
  --ink: #2f251e;
  --muted: #77695e;
  --brown: #59432f;
  --brown-dark: #35261d;
  --blue: #2f6779;
  --line: rgba(47, 37, 30, .16);
  --white: #fffdf8;
  --shadow: 0 16px 40px rgba(54, 39, 27, .14);
  --shadow-soft: 0 10px 28px rgba(54, 39, 27, .10);
  --radius-lg: 34px;
  --radius-md: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.9;
  letter-spacing: .035em;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

main, section, header, footer { max-width: 100%; }

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

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

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

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-weight: 500;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4.8vw, 76px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 240, .90);
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 5px 22px rgba(47,37,30,.06);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 21px;
}
.brand small {
  font-size: 10px;
  letter-spacing: .34em;
  margin-top: 7px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .14em;
}
.global-nav a {
  position: relative;
  padding: 8px 0;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.global-nav a:hover::after,
.global-nav a:focus-visible::after { right: 0; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,253,248,.8);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(22px, 6vw, 100px) 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(252,249,243,.97) 0%,
      rgba(252,249,243,.88) 34%,
      rgba(252,249,243,.46) 58%,
      rgba(252,249,243,.08) 82%),
    linear-gradient(0deg, rgba(252,249,243,.12), rgba(252,249,243,.05));
}

.hero-content {
  width: min(980px, 80vw);
}

.kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 13px;
  letter-spacing: .10em;
}
.kicker span,
.section-label span {
  width: 56px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.7vw, 86px);
  line-height: 1.42;
  letter-spacing: .02em;
}

.hero-line-2 {
  display: inline-block;
  white-space: nowrap;
}


.nowrap-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 750px;
  margin-bottom: 36px;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 2.1;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(53,38,29,.15);
}
.button-primary {
  color: #fff;
  background: var(--brown);
}
.button-primary:hover { background: var(--brown-dark); }
.button-secondary {
  color: var(--brown);
  background: rgba(255,253,248,.72);
}
.button-secondary:hover { background: #fff; }
.button.wide { padding-inline: 42px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .2em;
  transform: translateX(-50%);
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 38px;
  background: var(--ink);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(.45); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Shared */
.section {
  padding: clamp(84px, 10vw, 150px) clamp(22px, 6vw, 92px);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.5;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 18px);
}
.section-label.centered {
  justify-content: center;
  color: var(--blue);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: .18em;
}
.section-label.centered span { width: 48px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  font-size: 14px;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.small-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.centered-note { text-align: center; }

/* About */
.section-about {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(58px, 8vw, 128px);
}

.about-visual {
  min-height: 650px;
  position: relative;
}
.photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.photo:hover img { transform: scale(1.045); }
.photo-tall {
  left: 0;
  top: 0;
  width: 55%;
  height: 70%;
}
.photo-offset {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 66%;
}

.about-copy { max-width: 640px; }
.about-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.55;
}
.about-copy p:not(.section-label) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

/* Coffee */
.section-coffee {
  background: #f5efe6;
}

.coffee-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.coffee-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border: 1px solid rgba(47,37,30,.06);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.coffee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(54,39,27,.16);
}
.card-photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.card-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.65,.3,1);
}
.coffee-card:hover .card-photo img { transform: scale(1.07); }

.mood {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(255,255,255,.82);
  outline: 4px solid currentColor;
  outline-offset: -1px;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  letter-spacing: .08em;
}
.mood-orange { background: #d97946; outline-color: #d97946; }
.mood-navy { background: #24206f; outline-color: #24206f; }
.mood-green { background: #49824b; outline-color: #49824b; }
.mood-sky { background: #4eb3c3; outline-color: #4eb3c3; }

.coffee-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(24px, 3.2vw, 44px) 24px;
}
.coffee-card h3 {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: .02em;
}
.coffee-description {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 2;
}

.coffee-description span {
  display: block;
  white-space: nowrap;
}
.roast {
  margin-top: auto;
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.roast strong,
.roast small { display: block; }
.roast strong {
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}
.roast small {
  font-size: 11px;
  letter-spacing: .05em;
}

.section-cta {
  margin-top: 52px;
  text-align: center;
}

/* Bagel */
.section-bagel {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  grid-template-areas:
    "intro image"
    "list list"
    "note note";
  gap: 52px 70px;
}
.bagel-intro {
  grid-area: intro;
  align-self: center;
}
.bagel-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(35px, 4.6vw, 62px);
  line-height: 1.55;
}
.bagel-intro > p:not(.section-label) {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
}
.coffee-pairing {
  margin-top: 24px;
  color: var(--brown) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px !important;
}

.bagel-hero {
  grid-area: image;
  height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.bagel-hero img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.bagel-hero:hover img { transform: scale(1.045); }

.bagel-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.bagel-item {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 25px;
  min-height: 240px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.bagel-item:nth-child(odd) { border-right: 1px solid var(--line); }
.bagel-item:last-child {
  grid-column: 1 / -1;
  width: 50%;
  justify-self: center;
  border-right: 0;
}
.bagel-item img {
  height: 180px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform .4s ease;
}
.bagel-item:hover img { transform: scale(1.035); }
.item-number {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .18em;
}
.bagel-item h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.3vw, 34px);
}
.bagel-item div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.section-bagel > .small-note { grid-area: note; }

/* Panels */
.link-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.panel {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: clamp(38px, 5vw, 76px);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform .65s ease;
}
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(27,19,14,.72), rgba(27,19,14,.06));
}
.panel:hover::before { transform: scale(1.05); }
.panel-store::before { background-image: url("assets/journal.jpg"); }
.panel-instagram::before { background-image: url("assets/bagel-main.jpg"); }
.panel p {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .2em;
}
.panel h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.5;
}
.panel span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.7);
}

/* Shop */
.section-shop {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}
.shop-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.55;
}
.shop-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
}
.shop-table {
  margin: 30px 0 34px;
}
.shop-table div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.shop-table dt { font-weight: 700; }
.shop-table dd { margin: 0; color: var(--muted); }

.shop-photo {
  margin: 0;
}
.shop-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #f9f3e9 0%, #f3eadc 100%);
  border: 1px solid rgba(47,37,30,.10);
}

/* Footer */
.site-footer {
  padding: 70px clamp(22px, 6vw, 92px) 26px;
  color: #fff;
  background: #2b201a;
}
.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-top p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin: 34px 0 55px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .12em;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
}
.footer-bottom p { margin: 0; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 1040px) {
  .global-nav { gap: 16px; font-size: 10px; }
  .hero-content { width: min(900px, 90vw); }
  .section-about {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-visual {
    width: min(760px, 100%);
    min-height: 590px;
    margin: auto;
  }
  .about-copy {
    max-width: 780px;
    margin: auto;
  }
  .coffee-card {
    grid-template-columns: 44% 56%;
  }
  .section-bagel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "image"
      "list"
      "note";
  }
  .bagel-intro { max-width: 760px; }
  .section-shop {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 760px) {
  html { scroll-padding-top: 66px; }
  body { letter-spacing: .02em; overflow-x: hidden; }

  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }
  .brand { font-size: 18px; }
  .brand small { font-size: 8px; }

  .menu-button {
    display: block;
    position: relative;
    z-index: 102;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 90px 28px 40px;
    color: var(--ink);
    background: rgba(251,247,240,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    font-size: 15px;
  }
  .global-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding: 116px 22px 100px;
  }
  .hero-bg {
    background-position: 62% center;
  }
  .hero-wash {
    background:
      linear-gradient(180deg,
        rgba(252,249,243,.98) 0%,
        rgba(252,249,243,.90) 43%,
        rgba(252,249,243,.56) 68%,
        rgba(252,249,243,.14) 100%);
  }
  .hero-content { width: 100%; max-width: 100%; }
  .kicker {
    gap: 11px;
    font-size: 10px;
    margin-bottom: 22px;
  }
  .kicker span { width: 34px; }
  .hero h1 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.34;
    letter-spacing: 0;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
  }

  .hero-line-2 {
    display: inline;
    white-space: normal;
    font-size: .92em;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.95;
  }
  .hero-copy br { display: none; }
  .hero-actions {
    flex-direction: column;
    width: min(100%, 410px);
  }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }

  .section { padding: 76px 20px; }

  .section-label {
    margin-bottom: 18px;
    font-size: 11px;
  }
  .section-label span { width: 38px; }

  .section-about { display: block; }
  .about-visual {
    min-height: 420px;
    margin-bottom: 52px;
  }
  .photo-tall {
    width: 58%;
    height: 68%;
  }
  .photo-offset {
    width: 62%;
    height: 64%;
  }
  .about-copy h2 {
    font-size: clamp(29px, 8.2vw, 42px);
    line-height: 1.55;
  }

  .section-heading h2 .nowrap-line,
  .bagel-intro h2 .nowrap-line,
  .shop-copy h2 .nowrap-line,
  .about-copy h2 .nowrap-line {
    max-width: 100%;
  }
  .about-copy p:not(.section-label) {
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading h2 {
    font-size: clamp(28px, 7.6vw, 32px);
  }
  .section-heading > p:last-child {
    font-size: 13px;
  }
  .section-heading br { display: none; }
  .section-label.centered span:last-child { display: none; }

  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .coffee-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 26px;
  }
  .card-photo {
    min-height: 220px;
    aspect-ratio: 16/10;
  }
  .mood {
    top: 14px;
    left: 14px;
    width: 66px;
    height: 66px;
    font-size: 11px;
  }
  .coffee-card-body {
    min-height: 275px;
    padding: 24px 24px 20px;
  }
  .coffee-card h3 {
    font-size: clamp(25px, 7.4vw, 29px);
    margin-bottom: 14px;
    white-space: nowrap;
  }
  .coffee-description {
    font-size: clamp(13px, 4vw, 15px);
    margin-bottom: 20px;
    line-height: 1.9;
  }
  .roast strong { font-size: 16px; }
  .button.wide { width: 100%; padding-inline: 20px; font-size: 13px; }

  .section-bagel {
    display: block;
  }
  .bagel-intro {
    margin-bottom: 34px;
  }
  .bagel-intro h2 {
    font-size: clamp(30px, 8vw, 34px);
  }
  .bagel-hero {
    height: 340px;
    margin-bottom: 34px;
    border-radius: 26px;
  }
  .bagel-list {
    grid-template-columns: 1fr;
  }
  .bagel-item,
  .bagel-item:last-child {
    width: 100%;
    grid-column: auto;
    grid-template-columns: 108px 1fr;
    min-height: 0;
    gap: 18px;
    padding: 22px 0;
    border-right: 0 !important;
  }
  .bagel-item img {
    height: 108px;
    border-radius: 18px;
  }
  .bagel-item h3 {
    font-size: 23px;
    margin-bottom: 6px;
  }
  .bagel-item div > p:last-child {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .link-panels {
    grid-template-columns: 1fr;
  }
  .panel {
    min-height: 390px;
    padding: 36px 22px;
  }
  .panel h2 { font-size: 36px; }

  .shop-copy h2 {
    font-size: clamp(29px, 7.5vw, 34px);
  }
  .shop-table div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 0;
  }
  .shop-photo img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
  }


  .nowrap-line {
    display: inline;
    white-space: normal;
  }

  .hero-copy,
  .section-heading > p:last-child,
  .about-copy p:not(.section-label),
  .bagel-intro > p:not(.section-label),
  .shop-copy > p:not(.section-label),
  .bagel-item div > p:last-child,
  .coffee-description span {
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  .section-heading h2,
  .about-copy h2,
  .bagel-intro h2,
  .shop-copy h2,
  .coffee-card h3 {
    overflow-wrap: anywhere;
    word-break: keep-all;
    white-space: normal;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 390px) {
  .coffee-card h3 {
    font-size: 22px;
    letter-spacing: 0;
  }

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

  .coffee-description {
    font-size: 12.5px;
    letter-spacing: 0;
  }
}
