/* ============================================================
   珈琲 コンパス — editorial natural HP
   ============================================================ */

:root {
  --bg:        #efe8d6;   /* warm cream paper */
  --bg-2:      #e6dcc4;
  --paper:     #fbf6e8;
  --ink:       #2b2418;
  --ink-2:     #4a3d2a;
  --muted:     #8a7861;
  --line:      #cbb98f;
  --gold:      #b08a3a;
  --green:     #6b7e54;
  --orange:    #c66a35;

  --display: "Klee One", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --body:    "Zen Maru Gothic", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --mono:    "IBM Plex Mono", "Courier New", monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --container: 1180px;

  --blob-1: 56% 44% 38% 62% / 50% 56% 44% 50%;
  --blob-2: 65% 35% 50% 50% / 60% 40% 60% 40%;
  --blob-3: 40% 60% 65% 35% / 60% 30% 70% 40%;
}
html[data-hero-shape="oval"]  { --hero-shape: 50% / 42%; }
html[data-hero-shape="round"] { --hero-shape: 50%; }
html[data-hero-shape="soft"]  { --hero-shape: var(--blob-3); }
html[data-hero-shape="blob"], html:not([data-hero-shape])  { --hero-shape: var(--blob-1); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* ---------- Bracket section header ---------- */
.bhead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--display);
  margin: 0 auto 56px;
  color: var(--ink);
}
.bhead--left { justify-content: flex-start; margin-left: 0; }
.bhead__br {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}
.bhead__jp {
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--ink);
  position: relative;
  font-weight: 500;
  padding: 0 4px;
}
.bhead__jp::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.bhead__en {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- Section common ---------- */
.section {
  padding: 140px 28px;
  position: relative;
  z-index: 2;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(239,232,214,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203,185,143,0.4);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.nav__brand-jp { font-family: var(--display); font-size: 17px; letter-spacing: 0.08em; }
.nav__brand-en { font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em; color: var(--muted); }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a::after {
  content: ""; position: absolute;
  left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--orange);
  transition: all .3s ease;
}
.nav__links a:hover::after { width: 100%; left: 0; }
.nav__burger { display: none; }
@media (max-width: 920px) {
  .nav__links, .nav__brand-en { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 8px;
  }
  .nav__burger span { width: 22px; height: 1.5px; background: var(--ink); }
  .nav__open .nav__links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 24px; align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto 1fr auto;
  gap: 48px 56px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}
.hero__corner-kanji {
  position: absolute;
  top: 92px; right: 32px;
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.1;
  z-index: 4;
}
.hero__corner-kanji span:nth-child(1) { transform: translate(0, 0) rotate(-4deg); }
.hero__corner-kanji span:nth-child(2) { transform: translate(-12px, -2px) rotate(2deg); }
.hero__corner-kanji span:nth-child(3) { transform: translate(2px, 0) rotate(-2deg); }
.hero__corner-kanji span:nth-child(4) { transform: translate(-8px, 0) rotate(3deg); }
.hero__corner-kanji span:nth-child(5) { transform: translate(4px, 0) rotate(-2deg); }

/* news strip */
.hero__news {
  grid-column: 1; grid-row: 1;
  align-self: start;
  padding-top: 12px;
}
.hero__news hr {
  width: 220px;
  margin: 0 0 18px 0;
  border: 0;
  border-top: 1px solid var(--ink);
}
.hero__news-title {
  font-family: var(--display);
  font-size: 16px;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hero__news-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* brand block */
.hero__brand {
  grid-column: 1; grid-row: 2;
  text-align: center;
  align-self: center;
  padding-left: 8%;
}
.hero__brand-tag {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.hero__brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.hero__brand-addr {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.hero__brand-sns {
  display: flex; gap: 14px;
  justify-content: center;
  color: var(--ink);
}
.hero__brand-sns a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: all .25s;
}
.hero__brand-sns a:hover { background: var(--ink); color: var(--paper); }

/* photo + timeline */
.hero__photo-wrap {
  grid-column: 2; grid-row: 1 / span 2;
  position: relative;
  align-self: center;
  padding-right: 48px;
}
.hero__blob {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 78vh;
  overflow: hidden;
  border-radius: var(--hero-shape, var(--blob-1));
  box-shadow: 0 18px 48px rgba(43,36,24,0.12);
  background: var(--paper);
}
.hero__blob img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__times {
  position: absolute;
  top: 14%; bottom: 14%;
  right: 0;
  width: 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start;
}
.hero__times-line {
  position: absolute;
  top: 6px; bottom: 6px;
  left: 5px;
  width: 1px;
  background: var(--ink-2);
  opacity: 0.4;
}
.hero__time {
  display: flex; align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  position: relative;
}
.hero__time-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink-2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hero__time.is-lead .hero__time-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.hero__time.is-lead .hero__time-num,
.hero__time.is-lead .hero__time-label {
  color: var(--gold);
  font-weight: 600;
}
.hero__time-num { font-weight: 500; }
.hero__time-label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* bottom row: SINCE stamp + EN lead */
.hero__bottom {
  grid-column: 1 / span 2; grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-top: 32px;
}
.hero__since {
  position: relative;
  padding: 6px 0 0 24px;
  margin-left: 16%;
  display: inline-flex;
  flex-direction: column;
  font-family: var(--display);
  color: var(--ink);
  width: max-content;
}
.hero__since-corner {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 36px;
  color: var(--ink);
}
.hero__since-yr-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  margin-left: 8px;
}
.hero__since-yr {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 4px;
}
.hero__since-bot {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  margin-top: 8px;
  writing-mode: vertical-rl;
  position: absolute;
  left: -22px; top: 12px;
  height: 90px;
}

.hero__lead-en {
  font-family: var(--display);
  font-size: 12px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-align: center;
  padding-right: 56px;
}
.hero__lead-en p { margin: 0; }
.hero__lead-en__h {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 10px !important;
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 32px;
    padding: 120px 20px 60px;
    min-height: auto;
  }
  .hero__news { order: 1; }
  .hero__photo-wrap { grid-column: 1; grid-row: auto; order: 2; padding-right: 56px; }
  .hero__brand { grid-column: 1; grid-row: auto; order: 3; padding-left: 0; }
  .hero__bottom { grid-column: 1; grid-row: auto; order: 4; grid-template-columns: 1fr; gap: 32px; }
  .hero__since { margin-left: 0; }
  .hero__lead-en { padding: 0; }
  .hero__corner-kanji { top: 86px; right: 18px; font-size: 14px; }
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept { background: var(--bg); padding: 140px 28px 100px; }
.concept__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 auto 80px;
  color: var(--ink);
  max-width: 960px;
}
.concept__title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.concept__title em::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 4px;
  background: radial-gradient(circle, var(--gold) 1px, transparent 1.5px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  opacity: 0.5;
}

.concept__avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
  margin: 0 auto 100px;
  gap: 32px;
  align-items: end;
}
.avatar { display: flex; flex-direction: column; align-items: center; }
.avatar__photo {
  width: 100%;
  aspect-ratio: 1;
  max-width: 160px;
  border-radius: var(--blob-1);
  overflow: hidden;
  background: var(--paper);
}
.avatar:nth-child(2n) .avatar__photo { border-radius: var(--blob-2); }
.avatar:nth-child(3n) .avatar__photo { border-radius: var(--blob-3); }
.avatar__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.avatar:hover .avatar__photo img { transform: scale(1.06); }
.avatar__cap {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
}

/* vertical text columns */
.concept__cols {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  justify-items: center;
}
.concept__hashtags {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.concept__hashtags span { white-space: nowrap; }
.concept__vert {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--display);
  font-size: 13px;
  line-height: 2.2;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  margin: 0;
  height: 280px;
}
@media (max-width: 880px) {
  .concept__avatars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .concept__cols { grid-template-columns: 1fr; gap: 24px; justify-items: start; }
  .concept__vert { writing-mode: horizontal-tb; height: auto; }
}

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg-2); padding: 140px 28px; }
.menu__feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 72px;
}
.menu__vert {
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ink-2);
  height: 280px;
  font-weight: 500;
}
.menu__vert--l { transform: translateY(-20px); }
.menu__vert--r { transform: translateY(20px); }

.menu__blob {
  margin: 0 auto;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1.2/1;
  overflow: hidden;
  border-radius: var(--blob-2);
  box-shadow: 0 18px 40px rgba(43,36,24,0.12);
  background: var(--paper);
}
.menu__blob img { width: 100%; height: 100%; object-fit: cover; }

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.menu__tab {
  background: none;
  border: 0;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.12em;
  position: relative;
  transition: all .25s;
}
.menu__tab:hover { color: var(--ink); }
.menu__tab.is-active { color: var(--gold); }
.menu__tab.is-active::after {
  content: ""; position: absolute;
  left: 22px; right: 22px; bottom: 8px;
  height: 1px;
  background: var(--gold);
}
.menu__tab-en {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  margin-top: 2px;
  opacity: 0.65;
}
.menu__note {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 56px;
}
.menu__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.menu-item { padding-bottom: 24px; border-bottom: 1px dotted var(--line); }
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.menu-item__name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  align-self: flex-end;
  margin-bottom: 6px;
}
.menu-item__price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}
.menu-item__en {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.menu-item__desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 760px) {
  .menu__feature { grid-template-columns: 1fr; }
  .menu__vert { writing-mode: horizontal-tb; height: auto; }
  .menu__vert--l, .menu__vert--r { transform: none; text-align: center; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); padding: 140px 28px 120px; }
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--container);
  margin: 0 auto 56px;
  gap: 48px;
}
.gallery__head .bhead { margin: 0; }
.gallery__bubble {
  position: relative;
  background: var(--bg-2);
  padding: 22px 28px;
  border-radius: var(--blob-2);
  font-family: var(--display);
  font-size: 13px;
  line-height: 2;
  color: var(--ink-2);
  max-width: 320px;
  letter-spacing: 0.06em;
}
.gallery__bubble p { margin: 0; }

.gallery__hero {
  position: relative;
  max-width: var(--container);
  margin: 0 auto 24px;
  border-radius: var(--blob-3);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 22px 50px rgba(43,36,24,0.14);
}
.gallery__hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery__card {
  position: absolute;
  left: 32px; bottom: 32px;
  background: var(--paper);
  padding: 22px 26px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(43,36,24,0.16);
}
.gallery__card h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.16em;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 600;
}
.gallery__card p {
  font-size: 11.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}
.gallery__hero-tag {
  position: absolute;
  left: 32px; bottom: -12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
}

.gallery__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--container);
  margin: 32px auto 0;
}
.gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
}
.gallery__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery__thumb:hover img { transform: scale(1.06); }
@media (max-width: 880px) {
  .gallery__head { flex-direction: column; align-items: stretch; }
  .gallery__strip { grid-template-columns: repeat(3, 1fr); }
  .gallery__card { left: 16px; bottom: 16px; max-width: 78%; padding: 16px 18px; }
  .gallery__card h3 { font-size: 18px; }
  .gallery__card p { font-size: 11px; }
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--bg); padding: 80px 28px 140px; position: relative; }
.story__display {
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 180px);
  letter-spacing: 0.1em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  font-weight: 600;
  margin: 32px 0 60px;
  user-select: none;
  line-height: 1;
}
.story__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}
.story-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px dotted var(--line);
}
.story-item:last-child { border-bottom: 0; }
.story-item__yr {
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}
.story-item__title {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  font-weight: 500;
  color: var(--ink);
}
.story-item__body {
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 600px) {
  .story-item { grid-template-columns: 70px 1fr; gap: 16px; }
  .story-item__yr { font-size: 16px; }
}

/* ============================================================
   NEWS
   ============================================================ */
.news { background: var(--bg-2); padding: 140px 28px; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}
.news-card { display: flex; flex-direction: column; }
.news-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 18px;
  border: 1px solid rgba(43,36,24,0.06);
}
.news-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.news-card__meta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 8px;
  border-top: 1px solid var(--ink);
  padding-top: 10px;
}
.news-card__date { color: var(--ink); font-weight: 500; }
.news-card__weather {
  font-family: var(--display);
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(176,138,58,0.1);
  padding: 2px 10px;
  font-size: 10px;
}
.news-card__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.news-card__body {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.news-card__more {
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  letter-spacing: 0.1em;
  transition: color .2s;
}
.news-card__more:hover { color: var(--gold); border-bottom-color: var(--gold); }
.news__cta-wrap {
  margin-top: 64px;
  display: flex; justify-content: center;
}
.news__cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  border-radius: 999px;
  transition: background .25s;
}
.news__cta:hover { background: var(--gold); }
@media (max-width: 760px) {
  .news__grid { grid-template-columns: 1fr; gap: 40px; }
  .news__cta { padding: 16px 60px; }
}

/* ============================================================
   ACCESS
   ============================================================ */
.access { background: var(--bg); padding: 140px 28px 100px; }
.access__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  max-width: var(--container);
  margin: 0 auto 56px;
  align-items: center;
}
.access__photo {
  width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper);
}
.access__photo img { width: 100%; height: 100%; object-fit: cover; }
.access__info { padding-left: 16px; }
.access__tag {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.access__name {
  font-family: var(--display);
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.access__addr {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.access__sns { display: flex; gap: 12px; color: var(--ink); }
.access__sns a {
  width: 26px; height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.access__sns a:hover { background: var(--ink); color: var(--paper); }
.access__since {
  position: relative;
  padding: 6px 0 0 24px;
  display: inline-flex;
  flex-direction: column;
  font-family: var(--display);
  color: var(--ink);
  width: max-content;
}
.access__since-corner {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 36px;
  color: var(--ink);
}
.access__since-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  margin-left: 8px;
}
.access__since-yr {
  font-size: 42px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.access__since-bot {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-2);
  margin-top: 6px;
  writing-mode: vertical-rl;
  position: absolute;
  left: -18px; top: 12px;
  height: 70px;
}

.access__bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.access__map {
  width: 100%;
  min-height: 480px;
  background: var(--bg-2);
}
.access__map iframe { display: block; width: 100%; height: 100%; min-height: 480px; }
.access__route { display: flex; flex-direction: column; }
.access__route-head {
  background: var(--gold);
  color: var(--paper);
  padding: 24px 28px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.access__route-head span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; opacity: 0.8; }
.access__route-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.route-step {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 8px;
}
.route-step:nth-child(2n) { border-right: 0; }
.route-step:nth-last-child(-n+2) { border-bottom: 0; }
.route-step__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}
.route-step__text {
  font-family: var(--display);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .access__top { grid-template-columns: 1fr; }
  .access__photo { width: 100%; max-width: 320px; margin: 0 auto; }
  .access__info { padding: 0; text-align: center; }
  .access__sns { justify-content: center; }
  .access__since { margin: 0 auto; }
  .access__bottom { grid-template-columns: 1fr; }
  .access__map { min-height: 320px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg-2);
  padding: 30px 28px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.foot__copy {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   Reveal + Tweaks
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(43,36,24,0.16);
  z-index: 200;
}
.tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.tweaks__head h3 { font-family: var(--display); font-size: 13px; margin: 0; letter-spacing: 0.16em; }
.tweaks__close { background: none; border: 0; color: var(--muted); font-size: 18px; }
.tweaks__group { margin-bottom: 14px; }
.tweaks__group label { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.25em; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }
.tweaks__group input[type="text"] {
  width: 100%; padding: 8px 10px; font: inherit; font-size: 12px;
  border: 1px solid var(--line); border-radius: 6px;
  background: var(--paper); color: var(--ink);
}
.tweaks__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__chips button {
  padding: 5px 10px; font-size: 10px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 999px;
  font-family: var(--display); letter-spacing: 0.08em;
}
.tweaks__chips button.on { background: var(--gold); color: var(--paper); border-color: var(--gold); }

/* ============================================================
   theme variants
   ============================================================ */
html[data-theme="warm"]  { --gold: #b96b4a; --green: #8a5e3c; }
html[data-theme="cool"]  { --gold: #5e8c7c; --green: #4f7d6d; --bg: #ece8d8; --bg-2: #d9d4be; }
