*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f9f6f1;
  --warm-white: #fdfcfa;
  --stone: #ede8e1;
  --sand: #ddd5c4;
  --clay: #b8a898;
  --bark: #8a7060;
  --charcoal: #3d3530;
  --moss: #8fa486;
  --fog: #cdd0cc;
  --accent: #c4956a;
  --text-primary: #3d3530;
  --text-secondary: #7a706a;
  --text-muted: #ada49c;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Noto Serif JP", serif;
  --font-mono: "DM Mono", monospace;
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--cream);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeDown 0.8s ease 0.1s both;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-decoration: none;
  font-style: italic;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(138, 112, 96, 0.35);
  border-radius: 999px;
  background: rgba(253, 252, 250, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--charcoal);
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}
nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--charcoal);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ── HERO ── */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(253, 252, 250, 0.94) 0%,
    rgba(249, 246, 241, 0.8) 48%,
    rgba(62, 54, 48, 0.22) 100%
  );
}
.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 64px 100px;
}
.hero-right {
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 36px;
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-secondary);
  max-width: 300px;
  margin-bottom: 52px;
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 6px;
  transition:
    border-color 0.3s,
    gap 0.3s;
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}
.hero-cta:hover {
  border-color: var(--accent);
  gap: 20px;
}
.hero-cta::after {
  content: "→";
}
.hero-scroll {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}
.scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--sand);
  animation: scrollPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(1);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.5);
    transform-origin: left;
  }
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CONCEPT ── */
.concept {
  width: 100%;
  padding: 120px calc((100% - var(--max-w)) / 2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.concept-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.concept-heading em {
  font-style: italic;
  color: var(--accent);
}
.concept-body {
  font-size: 13px;
  line-height: 2.3;
  color: var(--text-secondary);
}
.concept-body p + p {
  margin-top: 18px;
}
.concept-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
  margin-bottom: 2px;
}
.stat-item {
  background: var(--warm-white);
  padding: 28px 24px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.beans-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.8);
}
.concept-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.9;
  text-transform: uppercase;
  padding-top: 16px;
}

/* ── MENU ── */
.menu-section {
  width: 100%;
  background: #3e3630;
  padding: 100px calc((100% - var(--max-w)) / 2);
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: "MENU";
  position: absolute;
  top: 20px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
}
.menu-season {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--clay);
  text-transform: uppercase;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.menu-category {
  background: rgba(255, 255, 255, 0.03);
  padding: 36px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.menu-category-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--moss);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(247, 244, 239, 0.85);
  font-weight: 300;
}
.menu-item-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--clay);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.menu-item-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal);
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}
.photo-strip img:hover {
  transform: scale(1.04);
  filter: saturate(1);
}

/* ── STORY ── */
.story {
  width: 100%;
  padding: 120px calc((100% - var(--max-w)) / 2);
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}
.story-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.story-heading em {
  font-style: italic;
  color: var(--accent);
}
.story-body {
  font-size: 13px;
  line-height: 2.4;
  color: var(--text-secondary);
}
.story-body p + p {
  margin-top: 20px;
}
.story-aside {
  padding-top: 48px;
}
.story-image-box {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(44, 40, 32, 0.2) 100%
  );
  pointer-events: none;
}
.story-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ── ACCESS ── */
.access {
  width: 100%;
  background: var(--warm-white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 100px calc((100% - var(--max-w)) / 2);
}
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.access-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 40px;
  line-height: 1.2;
}
.info-list {
  list-style: none;
}
.info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 13px;
}
.info-row:last-child {
  border-bottom: none;
}
.info-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 2px;
}
.info-val {
  color: var(--text-secondary);
  line-height: 1.9;
}
.map-box {
  aspect-ratio: 4/3;
  background: var(--stone);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--sand) 39px,
      var(--sand) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--sand) 39px,
      var(--sand) 40px
    );
  opacity: 0.4;
}
.map-pin {
  width: 12px;
  height: 12px;
  background: var(--bark);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--bark);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── FOOTER ── */
footer {
  background: #3e3630;
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--clay);
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-right {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--clay);
  line-height: 2.2;
}
.footer-right a {
  color: var(--fog);
  text-decoration: none;
}

/* ── BADGE ── */
.made-by {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(62, 54, 48, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.made-by-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--clay);
  text-transform: uppercase;
}
.made-by-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--cream);
}

/* ── SCROLL ANIMATIONS ── */
.anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.anim.from-up {
  transform: translateY(30px);
}
.anim.from-left {
  transform: translateY(24px);
}
.anim.from-right {
  transform: translateY(24px);
}
.anim.from-scale {
  transform: scale(0.97) translateY(16px);
}
.anim.from-fade {
}
.anim.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.22s;
}
.d3 {
  transition-delay: 0.36s;
}
.d4 {
  transition-delay: 0.52s;
}

/* Menu item stagger (triggered when .menu-category gets .visible) */
.menu-category .menu-item {
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-category.visible .menu-item {
  opacity: 1;
  transform: none;
}
.menu-category.visible .menu-item:nth-child(2) {
  transition-delay: 0.06s;
}
.menu-category.visible .menu-item:nth-child(3) {
  transition-delay: 0.13s;
}
.menu-category.visible .menu-item:nth-child(4) {
  transition-delay: 0.2s;
}
.menu-category.visible .menu-item:nth-child(5) {
  transition-delay: 0.27s;
}

/* Stat number pop */
@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.stat-item .stat-number {
  opacity: 0;
}
.stat-item.visible .stat-number {
  animation: statPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stat-item:nth-child(2).visible .stat-number {
  animation-delay: 0.1s;
}
.stat-item:nth-child(3).visible .stat-number {
  animation-delay: 0.2s;
}
.stat-item:nth-child(4).visible .stat-number {
  animation-delay: 0.3s;
}

/* ── BEANS SECTION ── */
.beans-section {
  width: 100%;
  background: var(--warm-white);
  padding: 120px calc((100% - var(--max-w)) / 2);
}
.beans-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.beans-intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
}
.beans-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.beans-heading em {
  font-style: italic;
  color: var(--accent);
}
.beans-body {
  font-size: 13px;
  line-height: 2.3;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.beans-body p + p {
  margin-top: 16px;
}
.origin-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--stone);
}
.origin-item {
  background: var(--cream);
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  transition: background 0.25s;
}
.origin-item:hover {
  background: var(--warm-white);
}
.origin-flag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.origin-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
}
.origin-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.origin-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--moss);
  text-transform: uppercase;
}

/* Three-up detail photos */
.beans-triple {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--stone);
}
.beans-triple img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82);
  transition: filter 0.4s ease;
}
.beans-triple img:hover {
  filter: saturate(1);
}

/* ── SERVICE SECTION ── */
.service-section {
  width: 100%;
  background: #423c36;
  padding: 120px calc((100% - var(--max-w)) / 2);
}
.service-header {
  margin-bottom: 72px;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 16px;
}
.service-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--clay);
  text-transform: uppercase;
}
/* Big feature — photo left, text right */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 2px;
}
.service-feature-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75);
}
.service-feature-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
}
.service-feature-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--moss);
  text-transform: uppercase;
}
.service-feature-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}
.service-feature-heading em {
  font-style: italic;
  color: var(--clay);
}
.service-feature-text {
  font-size: 13px;
  line-height: 2.2;
  color: rgba(247, 244, 239, 0.65);
}
/* Three small cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.9);
}
.service-card-body {
  padding: 24px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 10px;
}
.service-card-text {
  font-size: 12px;
  line-height: 2;
  color: rgba(247, 244, 239, 0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    z-index: 230;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    padding: 18px 20px;
    background: rgba(253, 252, 250, 0.96);
    border: 1px solid rgba(184, 168, 152, 0.42);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(61, 53, 48, 0.14);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }
  nav.is-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 6px 4px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 100px 24px 80px;
    min-height: 90vh;
  }
  .hero-right {
    display: none;
  }
  .hero-left::after {
    display: none;
  }
  .concept {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .menu-section {
    padding: 80px 24px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .photo-strip img {
    height: 240px;
  }
  .beans-section {
    padding: 80px 24px;
  }
  .beans-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .beans-triple {
    grid-template-columns: 1fr;
  }
  .beans-triple img {
    height: 220px;
  }
  .service-section {
    padding: 80px 24px;
  }
  .service-feature {
    grid-template-columns: 1fr;
  }
  .service-feature-img {
    min-height: 240px;
  }
  .service-feature-body {
    padding: 32px 24px;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .story {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 40px;
  }
  .story-aside {
    padding-top: 0;
  }
  .access {
    padding: 80px 24px;
  }
  .access-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 48px 24px;
  }
  .footer-right {
    text-align: center;
  }
  .made-by {
    display: none;
  }
}
