@font-face {
  font-family: "Shippori";
  src: url("assets/ShipporiMincho-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "NotoJP";
  src: url("assets/NotoSansJP.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #141411;
  --soft-ink: #343630;
  --muted: #707268;
  --paper: #f8f3e8;
  --paper-2: #fffaf0;
  --white: #ffffff;
  --red: #8e1717;
  --red-2: #b22920;
  --gold: #b48638;
  --green: #243a34;
  --smoke: #e9e1d4;
  --line: rgba(20, 20, 17, 0.13);
  --shadow: 0 26px 72px rgba(20, 20, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(36, 58, 52, 0.07), transparent 520px),
    var(--paper);
  color: var(--ink);
  font-family: "NotoJP", system-ui, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    padding 240ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding-block: 12px;
  background: rgba(248, 243, 232, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(20, 20, 17, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 146px;
}

.brand img {
  width: clamp(112px, 14vw, 168px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand img,
body.nav-open .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-nav,
body.nav-open .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
body.nav-open .site-nav a:hover {
  background: rgba(142, 23, 23, 0.08);
}

.site-nav .nav-cta {
  background: var(--red);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slowPush 9000ms ease forwards;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 86% 22%, rgba(180, 134, 56, 0.25), transparent 22%),
    linear-gradient(90deg, rgba(13, 13, 11, 0.82), rgba(13, 13, 11, 0.48) 45%, rgba(13, 13, 11, 0.1)),
    linear-gradient(0deg, rgba(13, 13, 11, 0.64), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 220px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero h1,
.section h2,
.gift-copy h2,
.flow-copy h2 {
  margin: 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.13;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(50px, 7.6vw, 112px);
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2;
}

.hero-actions,
.gift-copy .button {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.purpose-card:hover,
.feature:hover,
.shop-card:hover,
.flow-steps a:hover,
.news-list a:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(142, 23, 23, 0.28);
}

.button.secondary {
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-reserve {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(26px, 5vw, 60px);
  z-index: 2;
  display: grid;
  width: min(420px, calc(100% - 40px));
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-reserve a {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-reserve span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.hero-reserve strong {
  font-size: 15px;
  line-height: 1.55;
}

.trust-bar {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: -66px auto 0;
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-bar div {
  min-height: 132px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  display: block;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.trust-bar span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.wide {
  max-width: 940px;
}

.section-head.compact {
  margin-bottom: 24px;
}

.section h2,
.gift-copy h2,
.flow-copy h2 {
  font-size: clamp(34px, 5.2vw, 70px);
}

.section-head p:not(.eyebrow),
.gift-copy p,
.flow-copy p {
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 2;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 18px;
}

.purpose-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 18px 42px rgba(20, 20, 17, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.purpose-card:hover {
  box-shadow: var(--shadow);
}

.purpose-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.purpose-card h3 {
  margin: 40px 0 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.24;
}

.purpose-card p {
  margin: 16px 0 0;
  color: var(--soft-ink);
  line-height: 1.9;
}

.purpose-card strong {
  margin-top: 24px;
  color: var(--red);
  font-size: 14px;
}

.purpose-card.primary-card {
  background:
    linear-gradient(0deg, rgba(20, 20, 17, 0.76), rgba(20, 20, 17, 0.2)),
    url("assets/gyudon.jpg") center / cover;
  color: #fff;
}

.purpose-card.primary-card p,
.purpose-card.primary-card span,
.purpose-card.primary-card strong {
  color: rgba(255, 255, 255, 0.86);
}

.purpose-card.dark {
  background: var(--green);
  color: #fff;
}

.purpose-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.purpose-card.dark strong,
.purpose-card.dark span {
  color: #e2c484;
}

.signature {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent),
    #eee4d6;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.feature {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20, 20, 17, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature.large {
  grid-row: span 2;
}

.feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feature.large img {
  height: 520px;
}

.feature div {
  padding: 26px;
}

.feature p:first-child {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature h3 {
  margin: 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
}

.feature p:last-of-type {
  margin: 14px 0 0;
  color: var(--soft-ink);
  line-height: 1.9;
}

.feature a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.visit-flow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: end;
}

.flow-steps {
  display: grid;
  gap: 10px;
}

.flow-steps a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.flow-steps a:hover {
  box-shadow: 0 18px 42px rgba(20, 20, 17, 0.09);
}

.flow-steps span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.flow-steps strong {
  font-size: 19px;
}

.flow-steps em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.shops {
  padding-top: 0;
}

.shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.shop-filter button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.shop-filter button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

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

.shop-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

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

.shop-card:hover {
  box-shadow: 0 22px 58px rgba(20, 20, 17, 0.12);
}

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

.shop-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.shop-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.shop-card h3 {
  margin: 8px 0 10px;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: 27px;
  font-weight: 400;
}

.shop-card p {
  min-height: 48px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.7;
}

.shop-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.shop-card dl div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
}

.shop-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.shop-card dd {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.7;
}

.shop-card dd a {
  color: var(--red);
  font-weight: 900;
}

.shop-card > div > a {
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.gift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--green);
  color: #fff;
}

.gift-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.26);
}

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

.gift-copy {
  max-width: 560px;
}

.gift-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.gift-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gift-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

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

.news-list a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.news-list a:hover {
  box-shadow: 0 18px 42px rgba(20, 20, 17, 0.09);
}

.news-list time {
  color: var(--red);
  font-weight: 900;
}

.news-list span {
  color: var(--soft-ink);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 70px) 96px;
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(20, 20, 17, 0.9);
  box-shadow: 0 18px 44px rgba(20, 20, 17, 0.24);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 52px;
  flex: 1;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@keyframes slowPush {
  to {
    transform: scale(1);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 11px;
  }

  .purpose-grid,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-card.primary-card {
    grid-column: span 2;
  }

  .signature-grid,
  .visit-flow,
  .gift {
    grid-template-columns: 1fr;
  }

  .feature.large {
    grid-row: auto;
  }

  .feature.large img,
  .feature img {
    height: 340px;
  }
}

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

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    position: relative;
    z-index: 33;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: none;
    align-content: center;
    justify-items: stretch;
    padding: 96px 22px 28px;
    border: 0;
    border-radius: 0;
    background: rgba(248, 243, 232, 0.97);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 58px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    font-size: 20px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 20px;
    border-radius: 999px;
    color: #fff;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-content {
    min-height: 96svh;
    width: min(100% - 34px, 520px);
    padding: 104px 0 260px;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 70px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button.secondary {
    margin-left: 0;
  }

  .hero-reserve {
    left: 17px;
    right: 17px;
    bottom: 86px;
    width: auto;
  }

  .hero-reserve a {
    min-height: 96px;
    padding: 14px;
  }

  .hero-reserve strong {
    font-size: 13px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }

  .trust-bar div {
    min-height: 108px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar div:nth-child(2n) {
    border-right: 0;
  }

  .section {
    width: min(100% - 34px, 640px);
    padding: 76px 0;
  }

  .section h2,
  .gift-copy h2,
  .flow-copy h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .purpose-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card.primary-card {
    grid-column: auto;
  }

  .purpose-card {
    min-height: 260px;
  }

  .signature,
  .gift {
    padding-inline: 17px;
  }

  .feature.large img,
  .feature img,
  .gift-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .flow-steps a {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .flow-steps span {
    width: 46px;
    height: 46px;
  }

  .shop-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-filter button {
    width: 100%;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
    padding: 34px 20px 88px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
