/* ============================================
   サンプルカフェ — モダンミニマル × オフホワイト+焦げ茶
   モバイルファースト / max-width 720px / 1 カラム
   ============================================ */

:root {
  --bg:     #FAFAF7;
  --ink:    #2B1F18;
  --accent: #C9A27A;
  --line:   #E8E2D8;
  --muted:  #6B5E54;

  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body:    "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-num:     "Inter", "Helvetica Neue", Arial, sans-serif;

  --max-width: 720px;
  --gap-section: 96px;
  --gap-inner: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset (minimal) ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
dt, dd { margin: 0; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding-block: 56px;
  border-top: 1px solid var(--line);
}

@media (min-width: 600px) {
  .section { padding-block: 80px; }
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  position: relative;
  padding-left: 18px;
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 10px; height: 1px;
  background: var(--accent);
}
.section__lead {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
}
.prose {
  color: var(--ink);
  font-size: 15px;
  line-height: 2.0;
}

/* ---- Number font ---- */
.num {
  font-family: var(--font-num);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.yen {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85em;
  margin-left: 2px;
  color: var(--muted);
}

/* ---- Link ---- */
.link {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
  padding-bottom: 1px;
}
.link:hover { border-color: var(--ink); color: var(--accent); }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 88px 0 56px;
  text-align: center;
}
.hero__label {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 32px;
}
@media (min-width: 600px) {
  .hero { padding-top: 120px; }
  .hero__title { font-size: 48px; }
  .hero__tagline { font-size: 17px; }
}

/* ---- Hero chips ---- */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.chip {
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.4);
}

/* ---- Hero visual (placeholder) ---- */
.hero__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center top, rgba(201,162,122,0.12), transparent 60%),
    linear-gradient(180deg, #F5EFE6 0%, #EDE3D2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(43,31,24,0.08);
  border-radius: 2px;
  pointer-events: none;
}
.hero__visual-inner {
  text-align: center;
}
.hero__visual-emoji {
  font-size: 64px;
  filter: grayscale(0.3) sepia(0.25);
  opacity: 0.7;
}
@media (min-width: 600px) {
  .hero__visual { aspect-ratio: 16 / 9; }
  .hero__visual-emoji { font-size: 96px; }
}

/* ============================================
   Today's Coffee (.beans)
   ============================================ */
.beans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.bean {
  background: var(--bg);
  padding: 24px 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: baseline;
}
.bean__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.bean__meta {
  color: var(--muted);
  font-size: 13px;
  grid-column: 1 / 2;
}
.bean__price {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  align-self: center;
  font-size: 18px;
  color: var(--ink);
}

@media (min-width: 600px) {
  .beans {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .bean { padding: 28px 16px; }
}

/* ============================================
   Workspace stats
   ============================================ */
.stats {
  display: grid;
  gap: 0;
}
.stat {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.stat:first-child { border-top: 1px solid var(--line); }
.stat dt {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.stat dd { font-size: 14px; }
.stat dd small {
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
}

/* ============================================
   Menu
   ============================================ */
.menu__cat {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 32px 0 12px;
}
.menu__cat:first-child { margin-top: 0; }
.menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 14px;
}
.menu__list li:last-child { border-bottom: none; }

/* ============================================
   Access info
   ============================================ */
.info__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info__row:first-child { border-top: 1px solid var(--line); }
.info__row dt {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.info__row dd {
  font-size: 14px;
  line-height: 1.85;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 64px 0 80px;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.sns .link {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.copyright {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.disclaimer {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
