:root {
  color-scheme: light;
  --ink: #2b241d;
  --muted: #6f6255;
  --cream: #fff7e7;
  --flour: #f8ead1;
  --crust: #b55d2f;
  --toast: #d99b49;
  --green: #26524e;
  --sage: #d5dfc5;
  --line: rgba(68, 47, 31, 0.18);
  --shadow: 0 20px 48px rgba(70, 42, 20, 0.2);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Hiragino Kaku Gothic ProN", Meiryo, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(181, 93, 47, 0.08) 0 2px, transparent 2px),
    var(--cream);
  background-size: 36px 36px;
  line-height: 1.8;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 0.6rem 0.9rem;
  background: var(--green);
  color: white;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 247, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sun {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffd77a 0 43%, transparent 44%),
    conic-gradient(from 10deg, #d99b49 0 10deg, transparent 10deg 25deg, #d99b49 25deg 35deg, transparent 35deg 55deg, #d99b49 55deg 68deg, transparent 68deg 360deg);
}

.site-nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.48rem 0.72rem;
  color: var(--green);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.site-nav a[aria-current="page"] {
  border-color: var(--crust);
  background: rgba(213, 223, 197, 0.55);
}

.nav-toggle {
  display: none;
  justify-self: end;
  min-height: 44px;
  border: 2px solid var(--green);
  background: var(--cream);
  color: var(--green);
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 1rem; font-size: clamp(2.45rem, 6vw, 5rem); line-height: 1.08; }
h2 { margin-bottom: 0.7rem; font-size: clamp(1.55rem, 3vw, 2.6rem); line-height: 1.2; }
p { color: var(--muted); }

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--crust);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(20rem, 1.14fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.hero-copy {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: -1.2rem;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(217, 155, 73, 0.22);
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--green);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.quiet {
  background: var(--cream);
  color: var(--green);
}

.hero-image { margin: 0; }

.hero-image img,
.shelf-hero img,
.cafe-layout img,
.access-layout img {
  border: 12px solid white;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.morning-bar {
  margin: 1rem 0 3rem;
  padding: clamp(1.4rem, 4vw, 2.8rem) clamp(1rem, 5vw, 5rem);
  background: var(--green);
  color: white;
}

.morning-bar .eyebrow,
.morning-bar p {
  color: #f6d990;
}

.three-moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(1rem, 5vw, 5rem) 5rem;
  gap: 1rem;
}

.three-moments article {
  min-height: 16rem;
  padding: 1.3rem;
  background: var(--flour);
  border-bottom: 10px solid var(--toast);
}

.three-moments span {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shelf-hero {
  display: grid;
  grid-template-columns: minmax(20rem, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--green);
  color: white;
}

.shelf-hero .eyebrow { color: #f6d990; }

.bread-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 0.9rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem) 5rem;
}

.bread-rail article {
  display: grid;
  min-height: 19rem;
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(38, 82, 78, 0.12);
}

.bread-rail strong {
  align-self: end;
  color: var(--crust);
  font-size: 2rem;
}

.schedule-lead {
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) 1rem;
}

.schedule-lead h1 {
  max-width: 60rem;
}

.time-table {
  margin: 0 clamp(1rem, 5vw, 5rem) 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.time-table ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-table li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.time-table time {
  color: var(--crust);
  font-size: 2rem;
  font-weight: 900;
}

.reserve-note {
  margin: 0 clamp(1rem, 5vw, 5rem) 5rem;
  padding: 1.3rem;
  border-left: 12px solid var(--toast);
  background: var(--flour);
}

.cafe-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.drink-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem) 5rem;
  background: var(--green);
}

.drink-strip article {
  padding: 1.3rem;
  background: var(--sage);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.shop-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--green);
  color: white;
}

.shop-card .eyebrow { color: #f6d990; }
.shop-card h1 { font-size: clamp(2rem, 4.5vw, 4rem); }
.shop-card dl { margin: 1rem 0 0; }

.shop-card div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.8rem;
  padding-block: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.shop-card dt {
  color: #f6d990;
  font-weight: 900;
}

.shop-card dd { margin: 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--green);
  color: white;
}

.site-footer p {
  margin: 0;
  color: #f5ead4;
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .site-nav.is-open { display: grid; }

  .hero,
  .shelf-hero,
  .cafe-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .three-moments,
  .bread-rail,
  .drink-strip {
    grid-template-columns: 1fr;
  }

  .time-table li,
  .shop-card div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .site-footer { display: grid; }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .site-nav a,
  .bread-rail article {
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .button:hover,
  .site-nav a:hover,
  .bread-rail article:hover {
    transform: translateY(-2px);
  }
}
