@charset "UTF-8";

:root {
  --canvas: #f2eee6;
  --surface: #faf7f1;
  --ink: #29231e;
  --muted: #6e655d;
  --accent: #9c624c;
  --line: #d8d0c5;
  --dark: #211d19;
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --content: min(1180px, calc(100% - 80px));
  --section-space: clamp(110px, 12vw, 180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.045em;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--surface);
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 18px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(242, 238, 230, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(41, 35, 30, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content);
  height: 92px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink);
  line-height: 1;
}

.logo > span {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.13em;
}

.logo small {
  padding-left: 14px;
  border-left: 1px solid var(--accent);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.4vw, 52px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.global-nav a {
  position: relative;
  padding: 10px 0;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Type and shared elements */
.eyebrow,
.footer-label {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(62px, 8.4vw, 126px);
}

h2 {
  font-size: clamp(52px, 6.4vw, 88px);
}

h1 em {
  color: var(--accent);
  font-weight: 400;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 11px 30px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button-outline:hover {
  color: var(--surface);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.button-light:hover {
  color: var(--surface);
  background: var(--accent);
  border-color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-heading > p:last-child,
.centered > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
}

.centered {
  text-align: center;
}

/* Home hero */
.hero {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  min-height: min(820px, calc(100svh - 92px));
}

.hero-content {
  align-self: center;
  padding: 110px clamp(48px, 6vw, 100px) 110px clamp(30px, 4vw, 70px);
}

.hero-copy {
  max-width: 540px;
  margin: 42px 0 46px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.15;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark);
}

.hero-visual::before {
  position: absolute;
  width: min(30vw, 390px);
  height: min(30vw, 390px);
  top: -90px;
  right: -80px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  opacity: 0.82;
}

.hero-visual::after {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -165px;
  left: -105px;
  border: 1px solid rgba(250, 247, 241, 0.22);
  border-radius: 50%;
  content: "";
}

.sun {
  position: absolute;
  width: 175px;
  height: 175px;
  top: 25%;
  left: 50%;
  background: rgba(250, 247, 241, 0.82);
  border-radius: 50%;
  transform: translateX(-50%);
}

.window-frame {
  position: absolute;
  top: 11%;
  right: 13%;
  bottom: 24%;
  left: 13%;
  border: 10px solid #ded6ca;
  border-bottom-width: 18px;
  box-shadow: inset 0 0 0 1px rgba(41, 35, 30, 0.18);
}

.window-frame::before {
  position: absolute;
  width: 7px;
  top: 0;
  bottom: 0;
  left: calc(50% - 3px);
  background: #ded6ca;
  content: "";
}

.window-frame::after {
  position: absolute;
  height: 7px;
  top: 46%;
  right: 0;
  left: 0;
  background: #ded6ca;
  content: "";
}

.cup {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 80px;
  bottom: 20.5%;
  left: calc(50% - 56px);
  background: var(--surface);
  border-radius: 5px 5px 50px 50px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.cup::after {
  position: absolute;
  width: 36px;
  height: 38px;
  top: 10px;
  right: -28px;
  border: 9px solid var(--surface);
  border-left: 0;
  border-radius: 0 24px 24px 0;
  content: "";
}

.cup span,
.cup span::before,
.cup span::after {
  position: absolute;
  width: 1px;
  height: 38px;
  top: -51px;
  left: 50px;
  background: rgba(250, 247, 241, 0.45);
  content: "";
  transform: rotate(10deg);
}

.cup span::before { top: 8px; left: -18px; }
.cup span::after { top: -3px; left: 18px; }

.table-line {
  position: absolute;
  right: 0;
  bottom: 17.5%;
  left: 0;
  height: 36px;
  background: #716156;
}

.hero-visual > p {
  position: absolute;
  right: 28px;
  bottom: 22px;
  margin: 0;
  color: rgba(250, 247, 241, 0.7);
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  text-align: right;
}

.hero-visual > p strong {
  color: var(--surface);
  font-size: 18px;
  font-weight: 400;
}

/* Home image hero */
.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

.home-page .site-header:not(.is-scrolled) {
  background: transparent;
}

.home-page .site-header:not(.is-scrolled) .logo,
.home-page .site-header:not(.is-scrolled) .global-nav {
  color: var(--surface);
}

.home-page .site-header:not(.is-scrolled) .logo small {
  border-color: rgba(250, 247, 241, 0.55);
}

.home-page .site-header:not(.is-scrolled) .nav-toggle > span:not(.visually-hidden) {
  background: var(--surface);
}

.home-page .home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  color: var(--surface);
  background-color: var(--dark);
  background-image: url("images/hero-cafe-interior.jpg");
  background-position: center center;
  background-size: cover;
}

.home-page .home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 20, 16, 0.78) 0%, rgba(25, 20, 16, 0.58) 38%, rgba(25, 20, 16, 0.16) 78%, rgba(25, 20, 16, 0.08) 100%);
  content: "";
}

.home-page .home-hero::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(25, 20, 16, 0.45), transparent);
  content: "";
}

.home-page .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(180px, 22vh, 260px) 0 clamp(86px, 11vh, 125px);
}

.home-page .hero-content .eyebrow,
.home-page .hero-content h1,
.home-page .hero-content h1 em {
  color: var(--surface);
}

.home-page .hero-content h1 {
  max-width: 920px;
  font-size: clamp(72px, 10vw, 150px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.16);
}

.home-page .hero-copy {
  max-width: 550px;
  color: rgba(250, 247, 241, 0.82);
}

.home-page .button-primary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.home-page .button-primary:hover {
  color: var(--surface);
  background: var(--accent);
  border-color: var(--accent);
}

.home-page .hero-content .text-link {
  color: var(--surface);
}

.hero-place {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 30px;
  margin: 0;
  color: rgba(250, 247, 241, 0.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-place span {
  margin-left: 18px;
  color: rgba(250, 247, 241, 0.42);
}

/* Home sections */
.intro-section {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 15%;
  align-items: center;
}

.intro-copy {
  padding-top: 44px;
}

.intro-copy p {
  margin: 0 0 36px;
  color: var(--muted);
}

.featured-section {
  width: 100%;
  max-width: none;
  padding-right: max(40px, calc((100% - 1180px) / 2));
  padding-left: max(40px, calc((100% - 1180px) / 2));
  background: var(--surface);
}

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

.menu-card {
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  box-shadow: 0 24px 55px rgba(41, 35, 30, 0.09);
  transform: translateY(-6px);
}

.card-media,
.menu-item-image {
  overflow: hidden;
  background: #ddd5c9;
}

.card-media {
  aspect-ratio: 3 / 2;
}

.card-media img,
.menu-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.menu-card:hover .card-media img,
.menu-item:hover .menu-item-image img {
  transform: scale(1.035);
}

.card-art {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: #ddd5c9;
}

.card-art::before,
.card-art::after,
.card-art span {
  position: absolute;
  content: "";
}

.art-coffee {
  background: #d6cec2;
}

.art-coffee::before {
  width: 116px;
  height: 88px;
  left: calc(50% - 58px);
  bottom: 65px;
  background: var(--surface);
  border-radius: 5px 5px 52px 52px;
}

.art-coffee::after {
  width: 42px;
  height: 46px;
  left: calc(50% + 38px);
  bottom: 83px;
  border: 10px solid var(--surface);
  border-left: 0;
  border-radius: 0 25px 25px 0;
}

.art-coffee span {
  width: 210px;
  height: 5px;
  left: calc(50% - 105px);
  bottom: 60px;
  background: var(--ink);
  border-radius: 50%;
}

.art-toast {
  background: #cfc3b6;
}

.art-toast::before {
  width: 200px;
  height: 24px;
  left: calc(50% - 100px);
  bottom: 58px;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: 0 8px 0 rgba(41, 35, 30, 0.12);
}

.art-toast::after {
  width: 132px;
  height: 82px;
  left: calc(50% - 66px);
  bottom: 83px;
  background: var(--accent);
  border: 9px solid #b9a99a;
  border-radius: 42px 42px 12px 12px;
  transform: rotate(-5deg);
}

.art-toast span {
  width: 48px;
  height: 34px;
  left: 51%;
  bottom: 116px;
  background: var(--ink);
  border-radius: 50% 0 50% 50%;
  opacity: 0.78;
  transform: rotate(22deg);
}

.art-cake {
  background: #ded4c6;
}

.art-cake::before {
  width: 154px;
  height: 78px;
  left: calc(50% - 77px);
  bottom: 72px;
  background: #e9dfd0;
  box-shadow: inset 0 -15px var(--accent);
  clip-path: polygon(0 100%, 10% 15%, 92% 0, 100% 100%);
}

.art-cake::after {
  width: 200px;
  height: 6px;
  left: calc(50% - 100px);
  bottom: 64px;
  background: var(--surface);
  border-radius: 50%;
}

.art-cake span {
  width: 18px;
  height: 42px;
  left: 56%;
  bottom: 147px;
  background: var(--ink);
  border-radius: 100% 0 100% 0;
  opacity: 0.75;
  transform: rotate(34deg);
}

.card-body {
  min-height: 270px;
  padding: 34px;
}

.card-number,
.item-tag {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.card-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.card-body > p:not(.card-number):not(.price) {
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}

.section-action {
  margin-top: 58px;
  text-align: center;
}

.quote-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 100px 30px;
  overflow: hidden;
  color: var(--surface);
  background: var(--dark);
  text-align: center;
}

.quote-section::before,
.quote-section::after {
  position: absolute;
  width: 290px;
  height: 380px;
  border: 1px solid rgba(250, 247, 241, 0.14);
  border-radius: 50% 0 50% 50%;
  content: "";
}

.quote-section::before {
  left: -95px;
  bottom: -150px;
  transform: rotate(28deg);
}

.quote-section::after {
  top: -160px;
  right: -75px;
  transform: rotate(205deg);
}

.quote-mark {
  position: absolute;
  top: 16px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 190px;
  line-height: 1;
  opacity: 0.45;
}

.quote-section blockquote {
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.8vw, 76px);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.quote-section > p {
  z-index: 1;
  margin: -45px 0 0;
  color: rgba(250, 247, 241, 0.68);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.visit-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  padding: clamp(50px, 8vw, 100px);
  color: var(--surface);
  background: var(--accent);
}

.visit-panel h2,
.visit-panel .eyebrow {
  color: var(--surface);
}

.visit-panel > div > p:not(.eyebrow) {
  margin: 34px 0 0;
  color: rgba(250, 247, 241, 0.78);
}

.visit-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 12%;
  border-left: 1px solid rgba(250, 247, 241, 0.32);
}

.visit-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
  margin: 0 0 34px;
}

.visit-details dt {
  color: rgba(250, 247, 241, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.visit-details dd {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 16px;
}

/* Subpage hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: var(--content);
  min-height: 490px;
  margin: 0 auto;
  padding: 100px 0 92px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero > div:first-child {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(68px, 9.5vw, 132px);
}

.page-hero > div > p:last-child {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--muted);
}

.page-number {
  position: absolute;
  right: -10px;
  bottom: -18px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(180px, 25vw, 340px);
  line-height: 0.78;
  opacity: 0.08;
}

/* Menu */
.menu-section {
  max-width: 1040px;
  padding-top: 92px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.filter-button {
  min-width: 112px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 76px 30px;
}

.menu-item {
  display: block;
  min-width: 0;
}

.menu-item.is-hidden {
  display: none;
}

.menu-item-image {
  aspect-ratio: 2 / 1;
}

.menu-item-content {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 27px 2px 0;
  border-top: 1px solid var(--line);
}

.menu-item-content > div {
  min-width: 0;
}

.menu-item h2 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.menu-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.menu-item .item-tag {
  color: var(--accent);
  font-size: 9px;
}

.item-price {
  flex: none;
  margin-top: 37px;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 18px !important;
}

.menu-note {
  margin: 50px 0 0;
  padding: 26px 30px;
  color: var(--muted);
  background: rgba(216, 208, 197, 0.32);
  font-size: 13px;
}

/* Story */
.story-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 11%;
  align-items: center;
}

.story-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--dark);
}

.story-art::before {
  position: absolute;
  width: 72%;
  height: 70%;
  right: -18%;
  bottom: -5%;
  background: var(--accent);
  border-radius: 58% 42% 0 0;
  content: "";
  opacity: 0.82;
}

.story-sun {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 60px;
  left: 55px;
  border: 1px solid rgba(250, 247, 241, 0.42);
  border-radius: 50%;
}

.story-door {
  position: absolute;
  z-index: 1;
  width: 40%;
  height: 55%;
  right: 14%;
  bottom: 0;
  background: #342b25;
  border: 11px solid #d9d0c3;
}

.story-door::after {
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  right: 13px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.story-art p {
  position: absolute;
  left: 28px;
  bottom: 18px;
  margin: 0;
  color: rgba(250, 247, 241, 0.8);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.22em;
}

.story-copy h2 {
  margin-bottom: 42px;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.values-section {
  width: 100%;
  max-width: none;
  padding-right: max(40px, calc((100% - 1180px) / 2));
  padding-left: max(40px, calc((100% - 1180px) / 2));
  background: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
}

.value-card {
  min-height: 330px;
  padding: 48px;
  background: var(--surface);
}

.value-card > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 12px;
}

.value-card h3 {
  margin: 50px 0 20px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

.owner-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 11%;
  align-items: center;
}

.owner-quote {
  position: relative;
  padding: 95px 65px;
  color: var(--surface);
  background: var(--accent);
}

.owner-quote > span {
  position: absolute;
  top: -8px;
  left: 24px;
  color: rgba(250, 247, 241, 0.2);
  font-family: var(--serif);
  font-size: 160px;
  line-height: 1;
}

.owner-quote blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.9;
}

.owner-message {
  color: var(--muted);
}

.signature {
  margin-top: 35px;
  color: var(--ink) !important;
  text-align: right;
}

/* Access */
.access-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 10%;
  align-items: center;
}

.map-illustration {
  position: relative;
  height: 590px;
  overflow: hidden;
  background-color: #ded7cd;
  background-image: linear-gradient(30deg, rgba(250, 247, 241, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(250, 247, 241, 0.28) 87.5%);
  background-size: 42px 74px;
}

.map-road {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(41, 35, 30, 0.08);
}

.road-a { width: 140%; height: 58px; top: 46%; left: -20%; transform: rotate(-7deg); }
.road-b { width: 58px; height: 130%; top: -15%; left: 28%; transform: rotate(8deg); }
.road-c { width: 44px; height: 130%; top: -15%; right: 18%; transform: rotate(-16deg); }

.map-station,
.map-park {
  position: absolute;
  z-index: 2;
  padding: 6px 12px;
  color: var(--ink);
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
}

.map-station { right: 8%; bottom: 12%; }
.map-park { top: 13%; left: 8%; border: 1px solid var(--ink); }

.map-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  top: 37%;
  left: 44%;
}

.map-pin b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--surface);
  background: var(--accent);
  border: 5px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(41, 35, 30, 0.2);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.map-pin i {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

.map-caption {
  position: absolute;
  bottom: 12px;
  left: 18px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.access-info h2 {
  margin-bottom: 45px;
}

.info-list {
  margin: 0;
}

.info-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.info-list dt {
  font-weight: 600;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.route-section {
  padding-top: 35px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.route-card {
  min-height: 330px;
  padding: 42px;
  border: 1px solid var(--line);
}

.route-card > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.route-card h3 {
  margin: 38px 0 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.route-card p {
  color: var(--muted);
  font-size: 14px;
}

.route-card strong {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.notice-section {
  padding: var(--section-space) max(30px, calc((100% - 820px) / 2));
  background: var(--surface);
  text-align: center;
}

.notice-section p:last-child {
  margin-top: 34px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 92px max(40px, calc((100% - 1180px) / 2)) 28px;
  color: rgba(250, 247, 241, 0.72);
  background: var(--dark);
  font-size: 13px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.6fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 76px;
}

.logo-light,
.footer-social a {
  color: var(--surface);
}

.footer-brand > p {
  margin: 26px 0 0;
  color: rgba(250, 247, 241, 0.52);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.footer-label {
  margin-bottom: 17px;
  color: rgba(250, 247, 241, 0.42);
  font-size: 9px;
}

.footer-hours p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-social .footer-label {
  margin-bottom: 13px;
}

.footer-social a {
  border-bottom: 1px solid rgba(250, 247, 241, 0.3);
  font-size: 12px;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 247, 241, 0.13);
  color: rgba(250, 247, 241, 0.4);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 900px) {
  :root {
    --content: min(100% - 48px, 720px);
    --section-space: 110px;
  }

  .header-inner {
    height: 78px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    cursor: pointer;
  }

  .global-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: var(--canvas);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.nav-open .global-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-header.nav-open .nav-toggle > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 100px 24px 95px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .intro-section,
  .story-section,
  .access-section,
  .owner-section {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .intro-copy {
    max-width: 580px;
    padding-top: 0;
  }

  .card-grid,
  .values-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    max-width: 580px;
    margin-right: auto;
    margin-left: auto;
  }

  .card-art {
    height: 330px;
  }

  .quote-section {
    min-height: 480px;
  }

  .visit-panel {
    grid-template-columns: 1fr;
  }

  .visit-details {
    padding: 44px 0 0;
    border-top: 1px solid rgba(250, 247, 241, 0.32);
    border-left: 0;
  }

  .page-hero {
    min-height: 430px;
    padding-top: 80px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .story-art,
  .map-illustration {
    min-height: 520px;
    height: 520px;
  }

  .values-grid,
  .route-grid {
    gap: 1px;
  }

  .route-grid {
    background: var(--line);
  }

  .route-card {
    min-height: auto;
    background: var(--canvas);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100% - 36px);
    --section-space: 88px;
  }

  body {
    font-size: 14px;
    line-height: 1.95;
  }

  .header-inner {
    height: 72px;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .logo > span {
    font-size: 16px;
  }

  .logo small {
    padding-left: 0;
    border-left: 0;
    font-size: 7px;
  }

  h1 {
    font-size: clamp(50px, 16.5vw, 76px);
  }

  h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero {
    width: 100%;
  }

  .hero-content {
    padding: 80px 18px;
  }

  .hero-copy br,
  .page-hero p br {
    display: none;
  }

  .hero-visual {
    min-height: 470px;
  }

  .window-frame {
    right: 11%;
    bottom: 25%;
    left: 11%;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-section,
  .values-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .card-body {
    min-height: 0;
  }

  .quote-section {
    min-height: 420px;
  }

  .quote-section blockquote {
    font-size: 40px;
  }

  .quote-section blockquote br,
  .owner-quote blockquote br {
    display: none;
  }

  .quote-section > p {
    margin-top: -20px;
  }

  .visit-section {
    width: 100%;
  }

  .visit-panel {
    padding: 55px 28px;
  }

  .page-hero {
    min-height: 390px;
    padding: 75px 0 70px;
  }

  .page-hero h1 {
    font-size: 60px;
  }

  .page-number {
    font-size: 150px;
  }

  .filter-buttons {
    justify-content: flex-start;
    margin-bottom: 55px;
  }

  .filter-button {
    min-width: 0;
    padding: 9px 15px;
  }

  .menu-item {
    min-height: 0;
    padding: 0;
  }

  .story-art,
  .map-illustration {
    min-height: 410px;
    height: 410px;
  }

  .value-card,
  .route-card {
    padding: 36px 28px;
  }

  .owner-quote {
    padding: 72px 30px;
  }

  .info-list > div {
    grid-template-columns: 85px 1fr;
  }

  .site-footer {
    padding: 70px 24px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 55px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 900px) {
  .home-page .site-header.nav-open:not(.is-scrolled) .logo,
  .home-page .site-header.nav-open:not(.is-scrolled) .global-nav {
    color: var(--ink);
  }

  .home-page .site-header.nav-open:not(.is-scrolled) .nav-toggle > span:not(.visually-hidden) {
    background: var(--ink);
  }

  .home-page .home-hero {
    min-height: 820px;
    background-position: 56% center;
  }

  .home-page .hero-content {
    padding: 180px 0 100px;
  }
}

@media (max-width: 560px) {
  .home-page .home-hero {
    min-height: 760px;
    background-position: 59% center;
  }

  .home-page .hero-content {
    padding: 150px 0 88px;
  }

  .home-page .hero-content h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .home-page .hero-copy {
    font-size: 14px;
  }

  .hero-place {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
