:root {
  --cream: #fffaf0;
  --paper: #fffffb;
  --ink: #2f2923;
  --muted: #796f62;
  --leaf: #7d9569;
  --leaf-dark: #4f6748;
  --sun: #e7b956;
  --petal: #e9a49a;
  --clay: #b9714e;
  --line: rgba(47, 41, 35, 0.14);
  --shadow: 0 24px 80px rgba(84, 62, 42, 0.16);
  --matcha-bg: url("assets/matcha-bg.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.site-shell {
  display: grid;
  grid-template-columns: minmax(280px, 46vw) minmax(360px, 1fr) 272px;
  min-height: 100vh;
}

.side-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #d9cab7;
}

.side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(0.95);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

main {
  background: var(--paper);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: end;
  background: var(--leaf);
  color: #fff;
  padding: 36px 40px 52px;
}

.hero-photo {
  display: none;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(36, 52, 32, 0.05), rgba(36, 52, 32, 0.42));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(4.6rem, 8.5vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
}

.lead {
  margin: 0;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  line-height: 1.7;
  font-weight: 700;
}

.hero-note {
  max-width: 30em;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  line-height: 1.2;
}

.button.primary {
  background: var(--sun);
  color: #2e2a22;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.quick-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 44px 42px 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.08), rgba(255, 255, 251, 0.2)),
    var(--matcha-bg) center / cover repeat;
}

.quick-nav a {
  position: relative;
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px 18px 30px;
  background: var(--nav-image) center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(43, 37, 31, 0.16);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-nav a::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: rgba(47, 41, 35, 0.36);
}

.quick-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  content: "";
  width: 15px;
  height: 15px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.quick-nav a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 54px rgba(43, 37, 31, 0.22);
}

.quick-nav span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-nav strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
}

.section {
  padding: 88px 42px;
}

.section-kicker {
  color: var(--leaf-dark);
}

h2 {
  margin: 0 0 34px;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.34;
  word-break: keep-all;
  line-break: strict;
  text-wrap: balance;
}

.mobile-break {
  display: none;
}

.keep-together {
  display: inline-block;
  white-space: nowrap;
}

.about-grid {
  display: block;
}

.about-text {
  font-size: 1.06rem;
}

.about-text p {
  margin: 0 0 20px;
}

.about figure {
  margin-top: 30px;
}

.maker {
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.96), rgba(255, 250, 240, 0.96)),
    var(--paper);
}

.maker-profile {
  display: block;
}

.maker-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 140px 8px 8px;
  box-shadow: var(--shadow);
}

.maker-photo {
  margin-bottom: 30px;
}

.maker-body {
  min-width: 0;
}

.maker-name {
  margin: 0 0 14px;
  color: var(--leaf-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
}

.maker-body > p:not(.maker-name) {
  margin: 0 0 24px;
  color: var(--muted);
}

.profile-list {
  display: grid;
  gap: 12px;
}

.profile-list div {
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.profile-list h3 {
  margin: 0 0 6px;
  color: var(--clay);
  font-size: 1rem;
  line-height: 1.35;
}

.profile-list p {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 160px 160px 8px 8px;
}

.commitment {
  background: #fff;
  color: var(--leaf-dark);
}

.commitment .section-kicker {
  color: rgba(79, 103, 72, 0.74);
}

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

.commitment-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(79, 103, 72, 0.24);
}

.commitment-list span {
  color: var(--sun);
  font-size: 1.3rem;
  font-weight: 900;
}

.commitment-list h3,
.activity-cards h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.commitment-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(47, 41, 35, 0.72);
}

.activity {
  background: #f8eadf;
}

.activity-cards {
  display: grid;
  gap: 18px;
}

.activity-cards article {
  display: grid;
  grid-template-columns: minmax(120px, 42%) 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.activity-cards img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.activity-cards p {
  margin: 0;
  color: var(--muted);
}

.lineup {
  background: #f8eadf;
}

.menu-groups {
  display: grid;
  gap: 26px;
}

.menu-group {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(185, 113, 78, 0.12);
  box-shadow: 0 18px 50px rgba(87, 61, 45, 0.06);
}

.menu-group h3 {
  margin: 0;
  color: var(--clay);
  font-size: 1.55rem;
  line-height: 1.2;
}

.menu-label {
  margin: 4px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lineup-grid p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 113, 78, 0.18);
  font-weight: 700;
  text-align: center;
}

.regular-menu {
  border-top: 1px solid rgba(82, 104, 75, 0.18);
}

.regular-menu-item {
  border-bottom: 1px solid rgba(82, 104, 75, 0.18);
}

.menu-flavor {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.menu-number {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-name {
  display: grid;
  gap: 4px;
}

.menu-name strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.menu-name small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.menu-plus {
  position: relative;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid rgba(82, 104, 75, 0.36);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.menu-plus::before,
.menu-plus::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--leaf);
  transform: translate(-50%, -50%);
}

.menu-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-flavor:hover .menu-plus,
.menu-flavor[aria-expanded="true"] .menu-plus {
  background: var(--leaf);
}

.menu-flavor:hover .menu-plus::before,
.menu-flavor:hover .menu-plus::after,
.menu-flavor[aria-expanded="true"] .menu-plus::before,
.menu-flavor[aria-expanded="true"] .menu-plus::after {
  background: white;
}

.menu-flavor[aria-expanded="true"] .menu-plus {
  transform: rotate(45deg);
}

.menu-photo {
  overflow: hidden;
  padding: 0 0 20px 56px;
}

.menu-photo:not([hidden]) {
  animation: menu-photo-in 280ms ease both;
}

.menu-photo img {
  display: block;
  width: 100%;
  max-height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.seasonal-menu {
  display: grid;
  border-top: 1px solid rgba(185, 113, 78, 0.18);
}

.seasonal-menu p {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(185, 113, 78, 0.18);
  color: var(--ink);
  font-weight: 700;
}

.seasonal-menu span {
  color: var(--clay);
  font-size: 1.15rem;
  text-align: center;
}

@keyframes menu-photo-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-note {
  margin: 18px 0 0;
  color: var(--clay);
  font-weight: 900;
  text-align: center;
}

.gallery {
  background: var(--paper);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(78%, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 8px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  min-width: 0;
  scroll-snap-align: center;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 14px 34px rgba(84, 62, 42, 0.16);
  color: var(--leaf-dark);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-control.prev {
  left: -18px;
}

.carousel-control.next {
  right: -18px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots a {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(79, 103, 72, 0.26);
}

.carousel-dots a:hover,
.carousel-dots a:focus {
  background: var(--leaf-dark);
}

.online-shop {
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.08), rgba(255, 255, 251, 0.2)),
    var(--matcha-bg) center / cover repeat;
  color: var(--leaf-dark);
}

.online-shop .section-kicker {
  color: rgba(79, 103, 72, 0.78);
}

.online-shop p {
  max-width: 38em;
  color: rgba(47, 41, 35, 0.72);
}

.online-shop-content {
  display: grid;
  gap: 28px;
}

.online-shop-copy h2 {
  margin: 0 0 14px;
  color: var(--leaf-dark);
  line-height: 1.4;
}

.online-shop-copy > p {
  margin: 0 0 26px;
}

.sales-guide {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(79, 103, 72, 0.22);
}

.sales-guide div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(79, 103, 72, 0.22);
}

.sales-guide dt {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sales-guide dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.online-shop-photo {
  position: relative;
  width: min(82%, 390px);
  margin: 14px auto 6px;
  padding: 12px 12px 30px;
  border: 1px solid rgba(79, 103, 72, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(47, 41, 35, 0.13);
  transform: rotate(1deg);
}

.online-shop-photo::before,
.online-shop-photo::after {
  position: absolute;
  z-index: 1;
  width: 74px;
  height: 20px;
  content: "";
  background: rgba(239, 194, 94, 0.72);
  box-shadow: 0 2px 5px rgba(84, 62, 42, 0.08);
}

.online-shop-photo::before {
  top: -8px;
  left: 22px;
  transform: rotate(-7deg);
}

.online-shop-photo::after {
  right: 20px;
  bottom: -7px;
  transform: rotate(-6deg);
}

.online-shop-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
}

.online-shop-notice {
  margin: 26px 0 22px;
}

.online-shop-button {
  min-width: 210px;
}

.contact {
  background: var(--paper);
}

.contact p {
  max-width: 38em;
  margin: 0 0 28px;
  color: var(--muted);
}

.brand-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 30px 22px;
  background: var(--cream);
  border-left: 1px solid var(--line);
  text-align: center;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.brand img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  clip-path: circle(43% at 50% 50%);
  filter: drop-shadow(0 12px 24px rgba(84, 62, 42, 0.12));
}

.brand span {
  color: var(--leaf-dark);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.brand-nav nav {
  display: grid;
  gap: 22px;
  font-weight: 800;
}

.instagram-link {
  color: var(--clay);
  font-weight: 900;
}

@media (min-width: 1041px) {
  .hero {
    min-height: 62vh;
    align-content: center;
    padding: 58px 42px 34px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .quick-nav {
    min-height: 38vh;
    align-content: start;
    gap: 14px 16px;
    padding: 22px 42px 28px;
  }

  .quick-nav a {
    min-height: 102px;
    padding: 18px 16px 28px;
  }

  .quick-nav strong {
    font-size: 1.22rem;
  }

  .quick-nav span {
    font-size: 0.78rem;
  }
}

@media (max-width: 1040px) {
  .site-shell {
    display: flex;
    flex-direction: column;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
    z-index: 30;
    width: 58px;
    height: 58px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 10px 28px rgba(47, 41, 35, 0.12);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(47, 41, 35, 0.38);
    box-shadow: none;
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 72px 24px 42px;
    background: rgba(255, 255, 251, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    width: min(100%, 420px);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: clamp(24px, 5vh, 42px);
    min-height: calc(100dvh - 114px);
    text-align: center;
  }

  .mobile-menu-brand {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .mobile-menu-brand img {
    width: clamp(112px, 18vh, 152px);
    height: clamp(112px, 18vh, 152px);
    border-radius: 50%;
    object-fit: cover;
    clip-path: circle(43% at 50% 50%);
    filter: drop-shadow(0 16px 34px rgba(84, 62, 42, 0.12));
  }

  .mobile-menu-brand span {
    color: var(--leaf-dark);
    font-size: clamp(2.45rem, 7vh, 3.2rem);
    line-height: 1;
    font-weight: 900;
  }

  .mobile-menu-brand small {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 900;
  }

  .mobile-menu nav {
    display: grid;
    gap: clamp(18px, 3.5vh, 28px);
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    margin-top: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--sun);
    color: #2e2a22;
    box-shadow: 0 14px 30px rgba(231, 185, 86, 0.24);
  }

  .side-visual,
  .brand-nav {
    position: static;
    height: auto;
  }

  main {
    order: 1;
  }

  .side-visual {
    order: 2;
    height: 46vh;
  }

  .brand-nav {
    order: 3;
    gap: 24px;
    padding: 34px 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .brand-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo {
    position: absolute;
    inset: 28px 32px 220px;
    display: block;
    border-radius: 999px 999px 12px 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 680px) {
  .side-visual {
    height: 36vh;
  }

  .hero {
    min-height: 720px;
    padding: 24px 22px 38px;
  }

  .hero-photo {
    inset: 20px 18px 300px;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: clamp(2.35rem, 10.2vw, 3rem);
    line-height: 1.28;
    text-wrap: auto;
  }

  .mobile-break {
    display: block;
  }

  .quick-nav,
  .about-grid,
  .seasonal-menu,
  .brand-nav nav {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 22px;
  }

  .maker-profile,
  .activity-cards article {
    display: block;
  }

  .maker-photo {
    margin-bottom: 24px;
  }

  .activity-cards img {
    margin-bottom: 18px;
  }

  .commitment-list article {
    grid-template-columns: 44px 1fr;
  }

  .footer-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    border-radius: 999px;
    background: var(--sun);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(231, 185, 86, 0.24);
  }

  .menu-group {
    padding: 24px 20px;
  }

  .menu-flavor {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 10px;
    min-height: 88px;
  }

  .menu-photo {
    padding-left: 44px;
  }

  .menu-photo img {
    aspect-ratio: 4 / 5;
    max-height: 460px;
  }

  .sales-guide div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .online-shop-photo {
    width: 88%;
    padding: 9px 9px 25px;
  }

  .online-shop-photo img {
    border-radius: 2px;
  }

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