:root {
  --ink: #2c1b11;
  --muted: #745c44;
  --paper: #fff5df;
  --paper-deep: #f4dfb9;
  --line: #dfc494;
  --red: #c83b2d;
  --red-dark: #9f2d22;
  --green: #183c2d;
  --green-soft: #557049;
  --wood: #5b351f;
  --shadow: 0 16px 38px rgba(64, 35, 14, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 59, 45, 0.06), transparent 24rem),
    radial-gradient(circle at 82% 36%, rgba(24, 60, 45, 0.07), transparent 22rem),
    linear-gradient(90deg, rgba(90, 53, 31, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 18px 18px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(95, 57, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 57, 24, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto 104px;
  align-items: stretch;
  min-height: 116px;
  padding-left: clamp(20px, 7vw, 132px);
  background: rgba(255, 245, 223, 0.94);
  border-bottom: 1px solid rgba(91, 53, 31, 0.12);
  box-shadow: 0 4px 18px rgba(55, 32, 14, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-kicker,
.eyebrow {
  color: var(--wood);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 52px);
  padding: 0 34px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}

.global-nav a + a::before {
  position: absolute;
  left: calc(clamp(16px, 3vw, 52px) / -2);
  width: 1px;
  height: 34px;
  content: "";
  border-left: 2px dotted rgba(200, 59, 45, 0.4);
}

.global-nav a.is-current,
.global-nav a:hover {
  color: var(--red);
}

.global-nav a.is-current::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cart-ribbon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 136px;
  padding: 16px 14px 28px;
  color: #fff3c4;
  text-align: center;
  line-height: 1.65;
  background: var(--red-dark);
}

.cart-ribbon::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  content: "";
  border-top: 22px solid var(--red-dark);
  border-right: 52px solid transparent;
  border-left: 52px solid transparent;
}

.cart-icon {
  font-size: 1.6rem;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 820px);
  overflow: hidden;
  background: #1e1712;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 10, 5, 0.78) 0%, rgba(31, 18, 8, 0.48) 34%, rgba(14, 9, 6, 0.08) 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 28px;
  content: "";
  background:
    radial-gradient(16px 14px at 16px 0, transparent 15px, var(--paper) 16px) repeat-x;
  background-size: 32px 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(580px, calc(100% - 40px));
  min-height: inherit;
  margin-left: clamp(22px, 7.5vw, 136px);
  padding: 78px 0 96px;
  color: #fffaf0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.hero-copy .eyebrow {
  color: #f3d78e;
}

.hero h1 {
  margin: 18px 0 28px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 1.17;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-copy p {
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid currentColor;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #fff7db;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(77, 18, 10, 0.25);
}

.button-ghost {
  color: #fff7db;
  background: rgba(24, 60, 45, 0.48);
}

.quick-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
  width: min(1320px, calc(100% - 40px));
  margin: -28px auto 0;
}

.panel {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 249, 235, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 1.12rem;
  font-weight: 800;
}

.panel-title span {
  color: var(--green-soft);
}

.panel-photo img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 5px;
}

.news-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(116, 92, 68, 0.22);
  font-size: 0.96rem;
}

.news-list time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.text-link {
  display: inline-flex;
  align-items: center;
  float: right;
  margin-top: 13px;
  color: var(--red);
  font-weight: 800;
}

.text-link::after {
  margin-left: 10px;
  content: "›";
  font-size: 1.4rem;
  line-height: 0;
}

.mini-map,
.paper-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 47%, rgba(219, 180, 112, 0.4) 48% 52%, transparent 53%),
    linear-gradient(145deg, transparent 44%, rgba(219, 180, 112, 0.36) 45% 50%, transparent 51%),
    #f8e8c8;
}

.mini-map {
  height: 122px;
  border-radius: 5px;
  border: 1px solid rgba(223, 196, 148, 0.8);
}

.pin,
.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin {
  top: 46px;
  right: 28%;
}

.pin::after,
.map-pin::after {
  position: absolute;
  inset: 6px;
  content: "";
  background: var(--paper);
  border-radius: 50%;
}

.section {
  width: min(1320px, calc(100% - 40px));
  margin: 90px auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section h2,
.story-copy h2,
.access-info h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  background: #fff8e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.category-tabs button.is-active {
  color: #fff7db;
  background: var(--green);
  border-color: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 249, 235, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(64, 35, 14, 0.1);
  transition: transform 180ms ease, opacity 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff8df;
  font-weight: 800;
  background: var(--red);
  border-radius: 50%;
}

.product-body {
  padding: 17px 18px 20px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.product-body p {
  min-height: 3.2em;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  color: var(--red-dark);
  font-weight: 800;
  background: #fff2d4;
  border: 1px solid rgba(200, 59, 45, 0.22);
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
  margin: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 235, 0.62);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 7vw, 104px);
}

.story-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.season-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.season-row article {
  position: relative;
  min-height: 190px;
  padding: 32px;
  overflow: hidden;
  background: #fff8e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.season-row span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff8df;
  font-weight: 800;
  background: var(--green-soft);
  border-radius: 50%;
}

.season-row article:nth-child(2) span {
  background: var(--red);
}

.season-row article:nth-child(3) span {
  background: #1c6d87;
}

.season-row h3 {
  margin: 18px 0 8px;
  font-size: 1.45rem;
}

.season-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1.2fr;
  min-height: 360px;
  color: #fff8e4;
  background: var(--green);
}

.access-info {
  padding: clamp(34px, 6vw, 72px);
}

.access-info .eyebrow,
.access-info h2 {
  color: #fff8e4;
}

.access-info dl {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
}

.access-info div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
}

.access-info dt {
  color: #e6d29d;
  font-weight: 800;
}

.access-info dd {
  margin: 0;
}

.button-outline {
  color: #fff8e4;
  border-color: rgba(255, 248, 228, 0.72);
}

.paper-map {
  min-height: 360px;
}

.road {
  position: absolute;
  background: rgba(124, 92, 52, 0.25);
  border: 1px solid rgba(124, 92, 52, 0.1);
}

.main-road {
  top: 48%;
  left: -8%;
  width: 118%;
  height: 42px;
  transform: rotate(-8deg);
}

.side-road {
  top: -10%;
  left: 46%;
  width: 36px;
  height: 125%;
  transform: rotate(20deg);
}

.cross-road {
  top: 18%;
  left: 0;
  width: 92%;
  height: 28px;
  transform: rotate(32deg);
}

.place {
  position: absolute;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 248, 228, 0.62);
  border: 1px solid rgba(116, 92, 68, 0.2);
}

.school {
  top: 28%;
  left: 20%;
}

.park {
  right: 20%;
  bottom: 24%;
}

.map-pin {
  top: 47%;
  left: 58%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 7vw, 110px);
  color: #efe0bb;
  background: #2f2118;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 88px;
    padding: 0 20px;
  }

  .cart-ribbon {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-content: center;
    gap: 5px;
    align-self: center;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .global-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(255, 245, 223, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    min-height: 48px;
  }

  .global-nav a + a::before,
  .global-nav a.is-current::after {
    display: none;
  }

  .quick-panels,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .brand-kicker {
    font-size: 0.72rem;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 10, 5, 0.84), rgba(18, 10, 5, 0.52)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
  }

  .hero-copy {
    margin-left: 20px;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .quick-panels,
  .product-grid,
  .season-row,
  .story-band,
  .access-section {
    grid-template-columns: 1fr;
  }

  .quick-panels,
  .section {
    width: min(100% - 28px, 1320px);
  }

  .section {
    margin: 68px auto;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .story-band {
    margin: 74px 0;
  }

  .story-image img {
    min-height: 280px;
  }

  .access-info div,
  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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