/* ============================================================
   CUSTARD NAKAMURA — site stylesheet
   Palette: custard cream #F6E7C8 · warm ivory #FFF9EF · toasted
   brioche #C99552 · dark espresso #2A1C16 · charcoal #171717 ·
   muted gold #B88A44 · deep burgundy #6E1F2A · matcha #7D8A67
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500&display=swap');

:root {
  --cream: #F6E7C8;
  --ivory: #FFF9EF;
  --brioche: #C99552;
  --espresso: #2A1C16;
  --charcoal: #171717;
  --gold: #B88A44;
  --burgundy: #6E1F2A;
  --matcha: #7D8A67;
  --paper: #FCF4E3;
  --line: rgba(184, 138, 68, 0.28);
  --serif: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --sans: 'Inter', 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --jp: 'Noto Serif JP', serif;
  --max: 1180px;
  --radius: 4px;
  --shadow: 0 10px 40px rgba(42, 28, 22, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--espresso); line-height: 1.2; }
.jp { font-family: var(--jp); font-weight: 300; color: var(--gold); letter-spacing: .35em; font-size: .78em; }
.jp-sub { display: block; font-family: var(--jp); font-weight: 300; color: var(--gold); letter-spacing: .3em; font-size: .8rem; margin-top: .5rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section--cream { background: var(--paper); }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

/* --- eyebrow + section titles --- */
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.sec-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: .4rem; }
.sec-head { margin-bottom: 3rem; }
.sec-head--center { text-align: center; }
.sec-head p.lede { max-width: 640px; margin: 1.2rem auto 0; color: #4c4038; }
.sec-head--center p.lede { margin-left: auto; margin-right: auto; }
.rule { width: 56px; height: 1px; background: var(--gold); border: 0; margin: 1.4rem 0; }
.sec-head--center .rule { margin: 1.4rem auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(42,28,22,.07); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .9rem 1.5rem; max-width: 1360px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .75rem; line-height: 1.25; }
.brand-logo { height: 48px; width: auto; }
.f-logo { height: 60px; width: auto; margin-bottom: .9rem; border-radius: 4px; }
.brand-en { font-family: var(--serif); font-size: 1.18rem; letter-spacing: .22em; color: var(--espresso); font-weight: 600; }
.brand-jp { display: block; font-family: var(--jp); font-size: .6rem; letter-spacing: .42em; color: var(--gold); }
.brand-th { display: block; font-size: .58rem; letter-spacing: .18em; color: #9b8567; }

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a { font-size: .74rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); padding: .3rem 0; border-bottom: 1px solid transparent; }
.nav a .nav-jp { display: block; font-family: var(--jp); font-size: .56rem; letter-spacing: .28em; color: var(--gold); text-transform: none; font-weight: 300; text-align: center; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--burgundy); }
.btn-call {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--gold); color: var(--espresso);
  padding: .55rem 1.1rem; border-radius: 2px; font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}
.btn-call:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 2px; padding: .5rem .7rem; cursor: pointer; color: var(--espresso); font-size: 1rem; }

/* mobile nav panel */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--espresso); color: var(--cream);
  padding: 4.5rem 2rem 2rem; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(246,231,200,.12); color: var(--cream); font-family: var(--serif); font-size: 1.4rem; }
.mobile-nav a span { display: block; font-family: var(--jp); font-size: .72rem; color: var(--gold); letter-spacing: .3em; }
.mobile-nav .close-nav { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 1px solid rgba(246,231,200,.3); color: var(--cream); border-radius: 2px; padding: .45rem .8rem; font-size: 1rem; cursor: pointer; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: .85rem 1.9rem; border-radius: 2px;
  font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: all .25s; text-align: center;
}
.btn--gold { background: var(--gold); color: var(--ivory); }
.btn--gold:hover { background: var(--burgundy); color: var(--ivory); }
.btn--outline { border-color: var(--gold); color: var(--espresso); background: transparent; }
.btn--outline:hover { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.btn--light { border-color: rgba(246,231,200,.5); color: var(--cream); background: transparent; }
.btn--light:hover { background: var(--cream); color: var(--espresso); }
.btn--burgundy { background: var(--burgundy); color: var(--cream); }
.btn--burgundy:hover { background: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; background: #211510; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, #211510 0%, rgba(33,21,16,.94) 28%, rgba(33,21,16,.55) 55%, rgba(33,21,16,.18) 80%, rgba(33,21,16,.3) 100%),
  linear-gradient(180deg, rgba(33,21,16,.35) 0%, rgba(33,21,16,0) 30%, rgba(33,21,16,.35) 100%); }
.hero-in { position: relative; z-index: 2; padding: 6rem 0 5rem; color: var(--ivory); width: 100%; }
.hero-loc { font-size: .7rem; letter-spacing: .34em; text-transform: uppercase; color: var(--cream); opacity: .9; margin-bottom: 1.4rem; display: block; }
.hero h1 { color: var(--ivory); font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 820px; }
.hero .hero-jp { display: block; font-family: var(--jp); font-size: clamp(.85rem, 1.6vw, 1.05rem); color: var(--cream); letter-spacing: .4em; margin-top: 1.1rem; opacity: .9; }
.hero p.sub { max-width: 560px; margin-top: 1.4rem; color: #efe3ca; font-weight: 300; }
.hero p.sub .jp-line { display: block; font-family: var(--jp); font-size: .78rem; letter-spacing: .18em; color: var(--gold); margin-top: .7rem; }
.hero .cred { font-size: .8rem; color: #d9c8a8; margin-top: 2.2rem; font-style: italic; font-family: var(--serif); font-size: 1rem; }

/* ============ FEATURE CARDS ============ */
.grid { display: grid; gap: 1.6rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.feature-card { background: var(--ivory); border: 1px solid var(--line); text-align: center; padding: 2.4rem 1.4rem 0; transition: transform .3s, box-shadow .3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-circle {
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
}
.icon-circle svg { width: 26px; height: 26px; stroke: var(--ivory); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card .f-jp { font-family: var(--jp); letter-spacing: .4em; color: var(--gold); font-size: .72rem; display: block; margin: .35rem 0 .8rem; }
.feature-card h3 { font-size: 1.3rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; font-size: .85rem; }
.feature-card p { font-size: .88rem; color: #5a4c40; margin: .7rem 0 1.4rem; }
.feature-card img { margin-top: auto; }

/* product card */
.card {
  background: var(--ivory); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .3s, box-shadow .3s; position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { background: var(--paper); position: relative; }
.card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.25rem; }
.card-jp { font-family: var(--jp); font-size: .72rem; letter-spacing: .3em; color: var(--gold); margin: .25rem 0 .6rem; }
.card-note { font-size: .85rem; color: #5a4c40; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; gap: .6rem; }
.price { font-family: var(--serif); font-size: 1.15rem; color: var(--espresso); }
.badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .8rem; }
.badge {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .22rem .55rem; border-radius: 2px; border: 1px solid var(--line); color: var(--gold);
  background: rgba(246,231,200,.4);
}
.badge--sig { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.badge--seasonal { background: var(--matcha); color: var(--ivory); border-color: var(--matcha); }
.badge--savory { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.fav-btn { background: none; border: none; cursor: pointer; font-size: 1.05rem; color: var(--gold); opacity: .55; transition: opacity .2s, transform .2s; line-height: 1; }
.fav-btn:hover { opacity: 1; transform: scale(1.15); }
.fav-btn.active { opacity: 1; color: var(--burgundy); }
.call-ask { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--burgundy); border-bottom: 1px solid var(--line); padding-bottom: .1rem; white-space: nowrap; }

/* ============ CAROUSEL ============ */
.carousel-outer { position: relative; }
.carousel { display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel .card { min-width: 250px; scroll-snap-align: start; }
.card--simple .card-body { text-align: center; align-items: center; }
.card--simple .badges { justify-content: center; margin-top: .55rem; }
.card--simple .price { display: block; margin-top: .15rem; }
.car-btn {
  position: absolute; top: 40%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--ivory); color: var(--espresso); font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow); transition: background .2s;
}
.car-btn:hover { background: var(--cream); }
.car-btn--prev { left: -18px; } .car-btn--next { right: -18px; }

/* ============ EDITORIAL SPLIT ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split .v-jp {
  writing-mode: vertical-rl; font-family: var(--jp); color: var(--gold);
  letter-spacing: .5em; font-size: .8rem; opacity: .75; align-self: start;
}
.split-img { position: relative; }
.split-img img { border: 1px solid var(--line); }
.split-img::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--line); z-index: -1;
}

/* review theme strip */
.themes-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.theme-cell { text-align: center; padding: 1.8rem 1.1rem; border: 1px solid var(--line); background: var(--ivory); }
.theme-cell .t-ico {
  font-family: var(--jp); color: var(--gold); font-size: 1.05rem;
  width: 54px; height: 54px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto .95rem;
}
.theme-cell p { font-size: .82rem; color: #4c4038; font-style: italic; font-family: var(--serif); font-size: .95rem; }
.theme-cell .t-src { display: block; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: .8rem; font-family: var(--sans); font-style: normal; }

/* location strip */
.loc-strip { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.loc-strip .loc-item { display: flex; gap: .8rem; align-items: baseline; }
.loc-item .l-label { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.loc-item .l-val { font-family: var(--serif); font-size: 1.05rem; }

/* ============ MENU PAGE ============ */
.toolbar { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-bottom: 2.2rem; }
.toolbar input[type="search"], .toolbar select {
  font-family: var(--sans); font-size: .85rem; padding: .7rem 1rem;
  border: 1px solid var(--line); border-radius: 2px; background: var(--ivory); color: var(--charcoal);
  outline: none; min-width: 200px;
}
.toolbar input[type="search"]:focus, .toolbar select:focus { border-color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.chip {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--espresso); cursor: pointer; transition: all .2s;
  font-family: var(--sans);
}
.chip .chip-jp { font-family: var(--jp); text-transform: none; letter-spacing: .2em; color: var(--gold); margin-left: .4rem; font-weight: 300; }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.chip.active .chip-jp { color: var(--cream); }
.menu-count { font-size: .78rem; color: #8a7a60; margin-bottom: 1.4rem; font-style: italic; }
.menu-cat-head { grid-column: 1 / -1; margin-top: 1.6rem; }
.menu-cat-head h2 { font-size: 1.7rem; }
.menu-cat-head .jp { display: block; margin-top: .2rem; }
.disclaimer {
  font-size: .78rem; color: #8a7a60; border: 1px dashed var(--line);
  padding: 1rem 1.3rem; margin-top: 3rem; background: rgba(246,231,200,.25);
}

/* ============ MODAL / LIGHTBOX ============ */
.modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.open { display: flex; }
.modal-back { position: absolute; inset: 0; background: rgba(23, 16, 9, 0.72); }
.modal-box {
  position: relative; background: var(--ivory); max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto; border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr 1fr;
}
.modal-box .m-img { background: var(--paper); }
.modal-box .m-img img { width: 100%; height: 100%; object-fit: cover; }
.m-body { padding: 2.2rem; }
.m-body h3 { font-size: 1.7rem; }
.m-close { position: absolute; top: .8rem; right: .8rem; z-index: 5; background: var(--ivory); border: 1px solid var(--line); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1rem; color: var(--espresso); }
.lightbox { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; background: rgba(23,16,9,.88); padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(920px, 90vw); max-height: 80vh; border: 1px solid rgba(246,231,200,.25); }
.lightbox .lb-cap { position: absolute; bottom: 2.2rem; left: 0; right: 0; text-align: center; color: var(--cream); font-family: var(--serif); font-size: 1.05rem; letter-spacing: .06em; }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: 1px solid rgba(246,231,200,.4); color: var(--cream); width: 42px; height: 42px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; }

/* ============ FAQ ============ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.15rem; color: var(--espresso);
  padding: 1.3rem .2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--gold); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-in { padding: 0 .2rem 1.4rem; font-size: .92rem; color: #4c4038; max-width: 720px; }

/* ============ GALLERY ============ */
.masonry { columns: 3; column-gap: 1.4rem; }
.masonry figure { break-inside: avoid; margin-bottom: 1.4rem; border: 1px solid var(--line); background: var(--ivory); cursor: zoom-in; transition: box-shadow .3s; }
.masonry figure:hover { box-shadow: var(--shadow); }
.masonry figcaption { padding: .8rem 1rem 1rem; font-size: .8rem; color: #5a4c40; }
.masonry figcaption .cap-jp { display: block; font-family: var(--jp); font-size: .68rem; letter-spacing: .25em; color: var(--gold); margin-top: .15rem; }

/* ============ ARTICLES ============ */
.article-card { background: var(--ivory); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img { aspect-ratio: 16/10; object-fit: cover; }
.article-card .a-body { padding: 1.4rem 1.5rem 1.7rem; }
.article-card h3 { font-size: 1.25rem; }
.article-card h3 a { color: var(--espresso); }
.article-card h3 a:hover { color: var(--burgundy); }
.article-card p { font-size: .85rem; color: #5a4c40; margin-top: .6rem; }
.a-meta { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; display: block; }

/* article body pages */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.7rem; margin: 2.6rem 0 1rem; }
.article-body p { margin-bottom: 1.2rem; color: #3c332c; }
.article-body img { border: 1px solid var(--line); margin: 2rem 0; }
.article-hero { text-align: center; max-width: 780px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }

/* prose page (about, editorial) */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 1.3rem; color: #3c332c; font-size: 1.02rem; }
.prose h2 { font-size: 1.8rem; margin: 3rem 0 1rem; }
.prose h2 .jp { display: block; font-size: .75rem; margin-top: .3rem; }
.drop::first-letter { font-family: var(--serif); font-size: 3.4em; float: left; line-height: .85; padding-right: .12em; color: var(--burgundy); }

/* breadcrumbs */
.crumbs { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #8a7a60; padding: 1.2rem 0 0; }
.crumbs a { color: #8a7a60; }
.crumbs a:hover { color: var(--burgundy); }
.crumbs span[aria-current] { color: var(--gold); }

/* source cards */
.src-card { border: 1px solid var(--line); background: var(--ivory); padding: 1.8rem; display: flex; flex-direction: column; }
.src-card .s-rating { font-family: var(--serif); font-size: 2.2rem; color: var(--burgundy); }
.src-card .s-stars { color: var(--gold); letter-spacing: .18em; font-size: .85rem; }
.src-card .s-name { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; margin-bottom: .8rem; color: var(--espresso); }
.src-card p { font-size: .85rem; color: #5a4c40; flex: 1; margin: .8rem 0 1rem; }
.src-card .s-count { font-size: .72rem; color: #8a7a60; }
.src-card a { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }

/* map card */
.map-card { border: 1px solid var(--line); background: var(--ivory); overflow: hidden; }
.map-card img { width: 100%; }

/* info table */
.info-list { list-style: none; }
.info-list li { display: flex; gap: 1.2rem; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.info-list .i-label { min-width: 130px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); padding-top: .25rem; }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
label.f-label { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
input[type="text"], input[type="email"], textarea, select {
  width: 100%; font-family: var(--sans); font-size: .9rem; padding: .8rem 1rem;
  border: 1px solid var(--line); border-radius: 2px; background: var(--ivory); color: var(--charcoal); outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .78rem; color: #8a7a60; margin-top: 1rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--charcoal); color: #cbb9a0; font-size: .85rem; }
.footer-in { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 3rem; padding: 4.5rem 0 3rem; }
.site-footer h4 { color: var(--cream); font-family: var(--sans); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 500; }
.site-footer a { color: #cbb9a0; }
.site-footer a:hover { color: var(--cream); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.f-brand-en { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .2em; color: var(--cream); }
.f-brand-jp { display: block; font-family: var(--jp); font-size: .68rem; letter-spacing: .4em; color: var(--gold); margin: .3rem 0; }
.f-brand-th { display: block; font-size: .68rem; letter-spacing: .14em; color: #9b8567; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(246,231,200,.12); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .72rem; color: #8a7a60; }
.social-note { font-size: .68rem; color: #8a7a60; margin-top: .8rem; font-style: italic; }

/* floating call button (mobile) */
.float-cta { display: none; position: fixed; bottom: 1.2rem; left: 1rem; right: 1rem; z-index: 250; gap: .7rem; }
.float-cta a { flex: 1; text-align: center; padding: .95rem; border-radius: 3px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; box-shadow: 0 8px 30px rgba(23,16,9,.3); }
.float-cta .f-call { background: var(--burgundy); color: var(--cream); }
.float-cta .f-dir { background: var(--espresso); color: var(--cream); }

/* micro copy */
.micro { font-size: .72rem; color: #8a7a60; }
.micro .jp { letter-spacing: .2em; font-size: .95em; }

/* stars */
.stars { color: var(--gold); letter-spacing: .2em; }

/* page hero (interior pages) */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 4.2rem 0 3.4rem; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); max-width: 860px; }
.page-hero .lede { max-width: 660px; margin-top: 1.2rem; color: #4c4038; }

/* skip link */
.skip { position: absolute; left: -9999px; top: 0; background: var(--espresso); color: var(--cream); padding: .8rem 1.2rem; z-index: 500; }
.skip:focus { left: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .themes-row { grid-template-columns: repeat(2, 1fr); }
  .footer-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 3.6rem 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .masonry { columns: 2; }
  .modal-box { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .float-cta { display: flex; }
  body { padding-bottom: 4.6rem; }
  .hero { min-height: 76vh; }
  .car-btn--prev { left: 4px; } .car-btn--next { right: 4px; }
}
@media (max-width: 520px) {
  .grid--4 { grid-template-columns: 1fr; }
  .themes-row { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer-in { grid-template-columns: 1fr; gap: 2rem; }
}
