:root {
  color-scheme: light;
  --paper: #f7f3eb;
  --paper-deep: #eee7dc;
  --ink: #25201b;
  --muted: #6c6259;
  --copper: #b76134;
  --copper-dark: #8d4324;
  --forest: #173f32;
  --line: #cfc3b5;
  --error: #9d2e24;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --max: 1180px;
  --side: max(22px, calc((100vw - var(--max)) / 2));
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

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

:focus-visible {
  outline: 3px solid #0d67a8;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: #111;
}

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

.site-header {
  position: relative;
  z-index: 30;
  min-height: 86px;
  border-bottom: 1px solid rgb(37 32 27 / 14%);
  background: rgb(247 243 235 / 94%);
}

.site-header__inner {
  display: flex;
  width: min(100% - 44px, var(--max));
  min-height: 86px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: none;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  letter-spacing: 0.18em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 38px);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:is(:hover, [aria-current="page"])::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--copper-dark);
  cursor: pointer;
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  display: block;
  width: 28px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-button__lines {
  position: relative;
}

.menu-button__lines::before {
  position: absolute;
  top: -8px;
}

.menu-button__lines::after {
  position: absolute;
  top: 8px;
}

.menu-button[aria-expanded="true"] .menu-button__lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 86px));
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  background: url("../images/hero-window-coffee.png") 62% center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  top: 11%;
  bottom: 11%;
  left: var(--side);
  width: 1px;
  background: var(--copper);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 44px, var(--max));
  min-height: inherit;
  margin-inline: auto;
  align-content: center;
  padding-block: 80px;
}

.hero__copy {
  width: 43%;
  max-width: 520px;
  padding-left: 54px;
}

.hero__index,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #e4ab89;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__index::before,
.section-index::before {
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 12em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 40em;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 2;
}

.hero .button--light {
  border-color: var(--forest);
  color: var(--forest);
}

.hero .button--light:hover {
  background: var(--forest);
  color: #fff;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "→";
  font-size: 1.2em;
}

.button--copper {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

.button--copper:hover {
  border-color: #d07a4d;
  background: #d07a4d;
}

.button--light {
  border-color: rgb(255 255 255 / 60%);
}

.button--light:hover {
  background: #fff;
  color: var(--ink);
}

.button--forest {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.button--forest:hover {
  background: #245b49;
}

.button--plain::after {
  content: none;
}

.utility-strip {
  border-bottom: 1px solid var(--line);
}

.utility-strip__inner {
  display: grid;
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.utility-item {
  min-height: 112px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.utility-item:first-child {
  border-left: 1px solid var(--line);
}

.utility-item small {
  display: block;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.utility-item strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 500;
}

.section {
  padding-block: clamp(78px, 10vw, 140px);
}

.section--tight {
  padding-block: clamp(56px, 7vw, 90px);
}

.section--paper-deep {
  background: var(--paper-deep);
}

.section--forest {
  background: var(--forest);
  color: #fff;
}

.shell {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
}

.split__media {
  position: relative;
}

.split__media::before {
  position: absolute;
  z-index: -1;
  inset: -22px auto auto -22px;
  width: 110px;
  height: 110px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
  content: "";
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-index {
  color: var(--copper-dark);
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.section-lead {
  max-width: 44em;
  margin: 24px 0 0;
  color: var(--muted);
}

.section--forest .section-lead {
  color: rgb(255 255 255 / 72%);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 24px;
  align-items: center;
  gap: 14px;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.season-photo {
  margin-top: 52px;
}

.season-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.season-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.season-list li {
  padding: 26px;
  border-left: 1px solid var(--line);
}

.season-list li:last-child {
  border-right: 1px solid var(--line);
}

.season-list small {
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.season-list h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
}

.season-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.journal-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.journal-card {
  color: inherit;
  text-decoration: none;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.journal-card:hover img {
  transform: scale(1.015);
}

.journal-card__image {
  overflow: hidden;
}

.journal-card small {
  display: block;
  margin-top: 18px;
  color: var(--copper-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.journal-card h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 500;
  line-height: 1.55;
}

.news-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  min-height: 82px;
  padding: 18px 0;
  grid-template-columns: 140px 130px 1fr 32px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.news-row time {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
}

.news-row__type {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 6vw, 80px);
}

.shop-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.info-list {
  margin: 30px 0 0;
}

.info-list div {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 7em 1fr;
  gap: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.info-list dt {
  color: #dcb89f;
  font-size: 0.82rem;
  font-weight: 700;
}

.info-list dd {
  margin: 0;
}

.page-hero {
  position: relative;
  padding-block: clamp(70px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: 50%;
  right: var(--side);
  width: clamp(90px, 18vw, 240px);
  height: clamp(90px, 18vw, 240px);
  transform: translateY(-50%);
  border-top: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
  content: "";
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  margin: 0 0 24px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "/";
}

.page-title {
  max-width: 18em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.page-lead {
  max-width: 48em;
  margin: 24px 0 0;
  color: var(--muted);
}

.content-shell {
  width: min(100% - 44px, 860px);
  margin-inline: auto;
}

.prose {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 2.2;
}

.prose h2 {
  margin: 3em 0 0.8em;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.5;
}

.prose h3 {
  margin: 2.2em 0 0.6em;
  font-size: 1.35rem;
  font-weight: 500;
}

.prose figure {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 44px), var(--max));
  margin: 3em 0;
  transform: translateX(-50%);
}

.prose figure img {
  width: 100%;
  max-height: 680px;
  margin-inline: auto;
  object-fit: cover;
}

.prose blockquote {
  margin: 3em 0;
  padding: 28px 36px;
  border-block: 1px solid var(--copper);
  color: var(--forest);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.8;
}

.archive-grid,
.gallery-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
}

.archive-card {
  color: inherit;
  text-decoration: none;
}

.archive-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.archive-card small {
  display: block;
  margin-top: 16px;
  color: var(--copper-dark);
  font-weight: 700;
}

.archive-card h2,
.archive-card h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
}

.filter-bar {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.filter-button {
  min-height: 46px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.menu-catalogue {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  padding: 30px 0;
  grid-template-columns: minmax(0, 1fr) auto 36px;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.menu-item h2,
.menu-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
}

.menu-item p {
  max-width: 54em;
  margin: 8px 0 0;
  color: var(--muted);
}

.menu-item__price {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.product-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.facts {
  margin: 28px 0 0;
}

.facts div {
  display: grid;
  padding: 11px 0;
  grid-template-columns: 8em 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--copper-dark);
  font-weight: 700;
}

.facts dd {
  margin: 0;
}

.map-demo {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 24%, var(--line) 25%, transparent 26%, transparent 74%, var(--line) 75%, transparent 76%),
    linear-gradient(0deg, transparent 32%, var(--line) 33%, transparent 34%, transparent 66%, var(--line) 67%, transparent 68%);
}

.map-demo__station,
.map-demo__shop {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid var(--forest);
  background: var(--paper);
  font-weight: 700;
}

.map-demo__station {
  top: 50px;
  right: 12%;
}

.map-demo__shop {
  bottom: 68px;
  left: 15%;
  background: var(--forest);
  color: #fff;
}

.map-demo__route {
  position: absolute;
  top: 108px;
  right: 21%;
  bottom: 116px;
  left: 23%;
  border-right: 3px dashed var(--copper);
  border-bottom: 3px dashed var(--copper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 12px;
  content: "＋";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48em;
  margin: 0 0 24px;
  color: var(--muted);
}

.form-intro {
  display: grid;
  margin-bottom: 54px;
  padding: 30px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  border: 1px solid var(--line);
}

.form-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

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

.form-intro li + li {
  margin-top: 8px;
}

.form-steps {
  display: grid;
  max-width: 560px;
  margin: 0 auto 44px;
  grid-template-columns: 1fr 1fr 1fr;
}

.form-step {
  padding: 12px;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.form-step[aria-current="step"] {
  border-color: var(--copper);
  color: var(--copper-dark);
  font-weight: 700;
}

.field + .field {
  margin-top: 28px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #8c8177;
  border-radius: 0;
  background: #fffdfa;
  color: var(--ink);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgb(13 103 168 / 32%);
  outline-offset: 2px;
}

.required {
  color: var(--error);
  font-size: 0.8em;
}

.checkbox {
  display: flex;
  min-height: 48px;
  margin-top: 24px;
  align-items: flex-start;
  gap: 12px;
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 3px solid var(--forest);
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.confirm-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.confirm-list div {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 12em 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.confirm-list dt {
  font-weight: 700;
}

.confirm-list dd {
  margin: 0;
  white-space: pre-wrap;
}

.complete-box {
  padding: clamp(36px, 7vw, 72px);
  border-block: 1px solid var(--copper);
  text-align: center;
}

.complete-box h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.sample-note {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.76rem;
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--forest);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.16em;
}

.footer-copy {
  max-width: 30em;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.86rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-nav a {
  min-height: 40px;
  color: rgb(255 255 255 / 88%);
}

.footer-meta {
  margin: 0;
}

.footer-meta div {
  padding: 8px 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.footer-meta dt {
  color: #dcb89f;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-meta dd {
  margin: 2px 0 0;
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.78rem;
}

.back-bar {
  display: flex;
  min-height: 60px;
  padding: 12px var(--side);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #0d2f25;
  background: var(--forest);
  color: #fff;
  font-size: 0.88rem;
}

.back-bar a {
  min-height: 40px;
  padding: 6px 12px;
}

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

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header,
  .site-header__inner {
    min-height: 74px;
  }

  .site-header__inner {
    width: min(100% - 32px, var(--max));
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 29;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 34px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
    font-family: var(--serif);
    font-size: 1.28rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 58px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    content: none;
  }

  .hero {
    min-height: 720px;
    background: #241e19 url("../images/hero-window-coffee.png") 63% center / cover no-repeat;
    color: #fff;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    inset: 0;
    width: auto;
    background: linear-gradient(0deg, rgb(15 12 10 / 85%) 0%, rgb(15 12 10 / 30%) 72%, rgb(15 12 10 / 12%) 100%);
  }

  .hero__inner {
    align-content: end;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero__copy {
    width: 100%;
    max-width: 630px;
    padding-left: 0;
  }

  .hero__lead {
    color: rgb(255 255 255 / 86%);
  }

  .hero .button--light {
    border-color: rgb(255 255 255 / 60%);
    color: #fff;
  }

  .hero .button--light:hover {
    background: #fff;
    color: var(--ink);
  }

  .utility-strip__inner,
  .split,
  .split--reverse,
  .shop-grid,
  .product-hero,
  .footer-grid,
  .form-intro {
    grid-template-columns: 1fr;
  }

  .utility-strip__inner {
    width: 100%;
  }

  .utility-item {
    min-height: auto;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .utility-item:first-child {
    border-left: 0;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .season-list {
    grid-template-columns: 1fr;
  }

  .season-list li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .news-row {
    grid-template-columns: 100px 1fr 28px;
  }

  .news-row__type {
    display: none;
  }

  .page-hero::after {
    opacity: 0.5;
  }

  .archive-grid,
  .gallery-grid {
    gap: 36px 20px;
  }

  .back-bar {
    padding-inline: 14px;
  }
}

@media (max-width: 560px) {
  :root {
    --side: 20px;
  }

  body {
    line-height: 1.8;
  }

  .brand {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 690px;
  }

  .hero__inner,
  .shell,
  .content-shell {
    width: min(100% - 40px, var(--max));
  }

  .hero__lead br {
    display: none;
  }

  .actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 72px;
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .news-row {
    grid-template-columns: 1fr 26px;
    gap: 12px;
  }

  .news-row time {
    grid-column: 1 / -1;
    color: var(--copper-dark);
    font-size: 0.8rem;
  }

  .archive-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-item__price {
    grid-column: 1;
  }

  .facts div,
  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .prose figure {
    left: auto;
    width: auto;
    margin-inline: -20px;
    transform: none;
  }

  .prose figure img {
    width: 100%;
  }

  .prose blockquote {
    padding-inline: 18px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

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