:root {
  --ink: #201a16;
  --muted: #6e6258;
  --paper: #fbf7ef;
  --paper-2: #f2eadc;
  --charcoal: #15120f;
  --charcoal-2: #27211c;
  --gold: #c8963d;
  --red: #a33424;
  --indigo: #25344c;
  --line: rgba(32, 26, 22, 0.14);
  --shadow: 0 18px 50px rgba(26, 17, 9, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 7px 12px 8px 8px;
  border: 1px solid rgba(32, 26, 22, 0.18);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.site-header.scrolled .brand,
.site-header.open .brand {
  border-color: rgba(32, 26, 22, 0.18);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.brand-seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.16));
}

.brand-logo {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 5px;
  min-width: 0;
}

.brand-kicker,
.brand-main,
.brand-sub {
  display: block;
  line-height: 1;
}

.brand-kicker {
  grid-column: 1 / -1;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  color: currentColor;
  opacity: 0.72;
}

.brand-main,
.brand-sub {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.brand-main {
  font-size: 28px;
}

.brand-sub {
  padding-bottom: 2px;
  font-size: 19px;
  opacity: 0.92;
}

.brand-name {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.92;
  text-shadow: none;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-call {
  padding: 8px 14px;
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.16) saturate(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 34%, rgba(0, 0, 0, 0.04) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.02) 42%);
}

.steam {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.32), transparent 58%),
    radial-gradient(ellipse at 45% 60%, rgba(255, 255, 255, 0.18), transparent 62%);
  filter: blur(18px);
  opacity: 0;
  mix-blend-mode: screen;
  animation: steam-rise 7s ease-in-out infinite;
  pointer-events: none;
}

.steam-one {
  right: 24%;
  bottom: 22%;
}

.steam-two {
  right: 34%;
  bottom: 19%;
  width: 120px;
  height: 220px;
  animation-delay: 1.8s;
}

.steam-three {
  right: 16%;
  bottom: 24%;
  width: 110px;
  height: 210px;
  animation-delay: 3.4s;
}

@keyframes steam-rise {
  0% {
    transform: translate3d(0, 28px, 0) scale(0.72) rotate(-4deg);
    opacity: 0;
  }
  18% {
    opacity: 0.34;
  }
  58% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(-24px, -118px, 0) scale(1.22) rotate(7deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steam {
    animation: none;
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 42px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.hero-actions,
.order-actions,
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 52px 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.quick-info div {
  padding: 18px;
  background: rgba(19, 15, 12, 0.7);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quick-info dt {
  color: rgba(255, 255, 255, 0.62);
}

dd {
  margin: 0;
  font-weight: 800;
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--indigo);
  color: #fff;
  text-align: center;
}

.notice-band p {
  margin: 0;
}

.notice-band a {
  font-weight: 800;
  color: #fff0ce;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.intro-grid article,
.shop-card,
.news-item,
.admin-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48) inset;
}

.news-section {
  padding-bottom: clamp(54px, 8vw, 90px);
}

.admin-link,
.text-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.news-item h3 {
  margin-bottom: 4px;
}

.news-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.news-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-meta span {
  width: fit-content;
  padding: 2px 9px;
  background: var(--paper-2);
  color: var(--red);
}

.empty-news {
  margin: 0;
  color: var(--muted);
}

.intro-grid article {
  padding: 28px;
  min-height: 250px;
}

.number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.intro-grid p,
.story p,
.order p {
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(72px, 9vw, 104px) clamp(18px, 6vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.story-text {
  max-width: 680px;
  margin-left: auto;
}

.story-photo {
  margin: 0;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.story-photo figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.story p {
  color: rgba(255, 255, 255, 0.74);
}

.story-panel {
  display: grid;
  gap: 1px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.16);
}

.story-panel div {
  padding: 30px;
  background: var(--charcoal-2);
}

.story-panel strong,
.story-panel span {
  display: block;
}

.story-panel strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  line-height: 1.2;
}

.story-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--charcoal);
}

.photo-strip-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 82px) clamp(18px, 6vw, 72px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order > div:first-child {
  max-width: 760px;
}

.order-photo {
  width: 240px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.shop-card {
  padding: 32px;
}

.shop-card dl {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.map-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.map-card img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card img:first-child {
  aspect-ratio: 4 / 3;
}

.map-card img:last-child {
  aspect-ratio: 2 / 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer a {
  color: #fff0ce;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    inset: 0 0 auto;
    height: 48%;
    object-fit: contain;
    object-position: center center;
    background: var(--charcoal);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(21, 18, 15, 0.22) 36%, rgba(21, 18, 15, 0.91) 58%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
  }

  .steam {
    right: 14%;
    bottom: 54%;
    width: 92px;
    height: 170px;
    filter: blur(14px);
  }

  .quick-info,
  .intro-grid,
  .story,
  .order,
  .access-grid,
  .photo-strip,
  .news-item {
    grid-template-columns: 1fr;
  }

  .section-heading.row {
    display: block;
  }

  .story-text {
    margin-left: 0;
  }

  .story-panel {
    max-width: none;
  }

  .order-actions {
    justify-content: start;
  }

  .order-photo {
    width: min(260px, 100%);
  }
}

.admin-page {
  background: var(--paper);
}

.admin-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 76px) 0;
}

.admin-header {
  margin-bottom: 24px;
}

.admin-header h1 {
  color: var(--ink);
}

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

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

.admin-status {
  min-height: 1.8em;
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 800;
}

.admin-panel {
  padding: 26px;
  margin-top: 18px;
}

.news-form {
  display: grid;
  grid-template-columns: 180px 180px minmax(0, 1fr);
  gap: 16px;
}

.news-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-form .wide {
  grid-column: 1 / -1;
}

.news-form input,
.news-form select,
.news-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.news-form textarea {
  resize: vertical;
}

.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-list-head h2 {
  margin: 0;
  font-size: 28px;
}

.admin-news-list .news-item {
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: start;
}

@media (max-width: 720px) {
  .news-form,
  .admin-news-list .news-item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand-kicker {
    display: none;
  }

  .brand {
    padding: 6px 9px 6px 6px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
  }

  .brand-main {
    font-size: 23px;
  }

  .brand-sub {
    font-size: 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 44%;
  }

  .hero-content {
    width: min(100% - 20px, 1120px);
    padding-bottom: 24px;
  }

  .hero-copy {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(20px, 5.6vw, 31px);
  }

  .button {
    width: 100%;
  }

  .notice-band {
    display: block;
  }

  .notice-band a {
    display: inline-block;
    margin-top: 6px;
  }

  .intro-grid article,
  .shop-card {
    padding: 22px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 16px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 19px;
  }
}
