:root {
  --off-white: #FAF8F5;
  --cream:     #F6F0E6;
  --cream-2:   #EDE4D3;
  --sand:      #E2D3B6;
  --beige:     #D9C9AC;
  --warm:      #C9B58F;
  --ink:       #2B2A26;
  --ink-soft:  #4A463E;
  --ink-mute:  #6E6757; /* WCAG AA 確保のため微調整（旧 #7A7468 はクリーム背景で約4.2:1で不足） */
  --moss:      #8A9A85;
  --moss-deep: #6B8F71;
  --moss-dark: #5F7259;
  --moss-soft: #C4D0BD;
  --line:      rgba(43, 42, 38, 0.12);

  --serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --jp-serif: "Noto Serif JP", "Cormorant Garamond", serif;
  --jp-sans: "Noto Sans JP", system-ui, sans-serif;

  --h1: clamp(30px, 4.2vw, 62px);
  --h2: clamp(26px, 3vw, 44px);
  --h3: clamp(18px, 1.4vw, 22px);
  --sub: clamp(14px, 1.15vw, 19px);
  --eyebrow: clamp(10px, .78vw, 12px);
  --cta: clamp(13px, .95vw, 15px);
  --body: clamp(14px, 1vw, 16px);

  --pad-x: clamp(20px, 5vw, 90px);
  --pad-y: clamp(72px, 9vw, 140px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--jp-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* =========================
   Section primitives
   ========================= */
section { padding: var(--pad-y) var(--pad-x); position: relative; }

.eyebrow {
  font-family: var(--jp-sans);
  font-size: var(--eyebrow);
  letter-spacing: .5em;
  color: var(--moss-deep);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }

.section-title {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: var(--h2);
  line-height: 1.5;
  letter-spacing: .08em;
  margin: 18px 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss-deep);
  font-weight: 400;
}
.section-lead {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: var(--sub);
  line-height: 2;
  letter-spacing: .12em;
  color: var(--ink-soft);
  max-width: 620px;
}
.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { justify-content: center; }
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* CTA button */
.cta {
  display: inline-flex; align-items: center; gap: 18px;
  padding: clamp(16px, 1.4vw, 22px) clamp(28px, 2.4vw, 40px);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--jp-sans);
  font-size: var(--cta);
  letter-spacing: .28em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.cta:hover { background: var(--moss-deep); transform: translateY(-1px); }
.cta .arrow {
  width: clamp(22px, 2vw, 32px); height: 1px; background: currentColor; position: relative;
}
.cta .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.cta.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.cta.ghost:hover { background: var(--ink); color: var(--cream); }

/* =========================
   Header
   ========================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 1.4vw, 22px) var(--pad-x);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .3s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom-color: var(--line);
  padding-top: clamp(10px, 1vw, 16px);
  padding-bottom: clamp(10px, 1vw, 16px);
}
.brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.7vw, 28px);
  letter-spacing: .12em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 12px;
}
.brand .leaf {
  width: 14px; height: 14px;
  color: var(--moss-deep);
  flex-shrink: 0;
  transform: translateY(2px);
}
.brand small {
  display: inline-block;
  font-family: var(--jp-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(9px, .6vw, 10px);
  letter-spacing: .38em;
  color: var(--moss-deep);
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid rgba(43, 42, 38, 0.18);
}
.nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(20px, 2.4vw, 38px);
  font-family: var(--jp-sans);
  font-size: clamp(12px, .85vw, 13px);
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--ink);
}
.nav-list li { position: relative; }
.nav-list a { transition: color .2s ease; padding: 6px 0; }
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--moss-deep);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .25s ease;
}
.nav-list a:hover { color: var(--moss-deep); }
.nav-list a:hover::after { transform: scaleX(1); }
.header .phone {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 18px);
  letter-spacing: .1em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.header .phone::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%;
  background: var(--moss-deep);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / 60%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / 60%;
}
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  background: rgba(250,248,245,.95);
  color: var(--ink);
  border: 1px solid rgba(43,42,38,.2);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}
.menu-btn span {
  display: block; width: 16px; height: 1px; background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  transition: all .25s ease;
}
.menu-btn.open span { box-shadow: none; transform: rotate(45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 45;
  background: var(--off-white);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 28px;
  text-align: center;
  font-family: var(--jp-serif);
  font-size: 20px; letter-spacing: .2em;
  color: var(--ink);
}
.mobile-drawer .drawer-brand {
  position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
}

/* =========================
   Hero (variant B — full-bleed photo + glass panel)
   ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: var(--off-white);
  overflow: hidden;
  color: var(--ink);
  padding: 0;
}
.hero .photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(72%, calc(100vh * 1.25));
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, rgba(250,248,245,0) 22%);
  pointer-events: none;
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(250,248,245,.35) 0%, rgba(250,248,245,0) 35%),
    linear-gradient(180deg, rgba(36,33,28,.12) 0%, rgba(36,33,28,0) 30%);
  pointer-events: none;
}
.hero .panel {
  position: absolute;
  left: var(--pad-x);
  top: calc(50% + 30px);
  transform: translateY(-50%);
  width: min(680px, 44vw);
  padding: clamp(40px, 4.5vw, 84px) clamp(32px, 4vw, 76px) clamp(36px, 4vw, 72px);
  background: rgba(250,248,245,.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 40px 80px -30px rgba(36,33,28,.4);
}
.hero .panel .eyebrow { margin-bottom: clamp(22px, 2vw, 40px); }
.hero h1 {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: var(--h1);
  line-height: 1.45;
  letter-spacing: .04em;
  margin: 0 0 clamp(18px, 1.8vw, 32px);
  color: var(--ink);
  word-break: keep-all;
  line-break: strict;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss-deep);
  font-weight: 300;
}
.hero .sub {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: var(--sub);
  line-height: 2;
  letter-spacing: .12em;
  color: var(--ink-soft);
  margin: 0 0 clamp(28px, 3vw, 52px);
}
.hero .cta-note {
  margin-top: 14px;
  font-family: var(--jp-sans);
  font-size: clamp(11px, .78vw, 12px);
  letter-spacing: .22em;
  color: var(--ink-soft);
  opacity: .85;
}
.hero .badge {
  position: absolute; right: clamp(24px, 4vw, 100px); bottom: clamp(40px, 6vw, 80px);
  width: clamp(120px, 12vw, 200px); height: clamp(120px, 12vw, 200px);
  border-radius: 50%;
  background: var(--moss-deep);
  color: var(--cream);
  display: grid; place-items: center; text-align: center;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(12px, .9vw, 18px);
  line-height: 1.4; letter-spacing: .1em;
  transform: rotate(-8deg);
  box-shadow: 0 20px 50px -10px rgba(36,33,28,.35);
}
.hero .badge b {
  display: block; font-family: var(--serif); font-style: normal;
  font-size: clamp(28px, 2.4vw, 44px); font-weight: 400; letter-spacing: .04em; margin: 4px 0 2px;
}
.hero .badge small {
  display: block; font-family: var(--jp-sans); font-style: normal;
  font-size: clamp(8px, .55vw, 10px); letter-spacing: .3em; opacity: .85;
}

/* =========================
   Concept
   ========================= */
.concept { background: var(--off-white); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.concept-text h2 { margin-top: 14px; }
.concept-text p {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: var(--sub);
  line-height: 2.1;
  letter-spacing: .1em;
  color: var(--ink-soft);
  margin: 18px 0;
}
.concept-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 8px 8px / 38% 38% 4% 4%;
  overflow: hidden;
  background: url("images/concept.webp") center / cover;
  box-shadow: 0 30px 60px -20px rgba(43,42,38,.25);
}
.concept-visual::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(250,248,245,.6);
  border-radius: inherit;
  pointer-events: none;
}
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px; margin: clamp(60px, 7vw, 96px) auto 0;
  padding-top: clamp(50px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.pillar { text-align: center; }
.pillar .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--moss-deep);
  border: 1px solid var(--moss-soft);
}
.pillar h3 {
  font-family: var(--jp-serif);
  font-weight: 400; font-size: var(--h3);
  letter-spacing: .14em;
  margin: 6px 0 10px;
  color: var(--ink);
}
.pillar p {
  font-family: var(--jp-sans);
  font-size: 13px; line-height: 1.9; letter-spacing: .08em;
  color: var(--ink-mute);
  margin: 0;
}

/* =========================
   Menu
   ========================= */
.menu { background: var(--cream); }
.menu-list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: clamp(22px, 2.4vw, 32px) 8px;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .info h3 {
  font-family: var(--jp-serif);
  font-weight: 400; font-size: clamp(17px, 1.3vw, 21px);
  letter-spacing: .12em;
  margin: 0 0 6px;
  color: var(--ink);
}
.menu-item .info h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss-deep);
  font-size: .82em;
  margin-left: 12px;
  letter-spacing: .1em;
  font-weight: 400;
}
.menu-item .info p {
  margin: 0;
  font-family: var(--jp-sans);
  font-size: 13px; letter-spacing: .08em;
  color: var(--ink-mute);
  line-height: 1.8;
}
.menu-item .price {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .04em;
  white-space: nowrap;
}
.menu-item .price small {
  font-family: var(--jp-sans);
  font-size: 11px; letter-spacing: .14em;
  color: var(--ink-mute);
  margin-left: 4px;
}
.menu-note {
  text-align: center;
  margin-top: clamp(36px, 4vw, 56px);
  font-family: var(--jp-sans);
  font-size: 12px; letter-spacing: .14em;
  color: var(--ink-mute);
}

/* =========================
   Gallery
   ========================= */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  max-width: 1280px; margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .5s ease;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,42,38,0) 60%, rgba(43,42,38,.4) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* =========================
   Staff
   ========================= */
.staff { background: var(--cream); }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  max-width: 1200px; margin: 0 auto;
}
.staff-card { text-align: center; }
.staff-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--cream-2);
}
.staff-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.staff-card:hover .staff-photo img { transform: scale(1.05); }
.staff-role {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; letter-spacing: .26em;
  color: var(--moss-deep);
  margin-bottom: 8px;
}
.staff-name {
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: .14em;
  color: var(--ink);
  margin: 0 0 16px;
}
.staff-name span {
  font-family: var(--serif); font-style: italic;
  font-size: .7em; color: var(--ink-mute);
  margin-left: 10px; letter-spacing: .1em;
}
.staff-comment {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: 14px; line-height: 2;
  letter-spacing: .08em;
  color: var(--ink-soft);
  max-width: 280px; margin: 0 auto;
}

/* =========================
   Reviews
   ========================= */
.reviews { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 36px);
  max-width: 1200px; margin: 0 auto;
}
.review-card {
  background: #fff;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
}
.review-card::before {
  content: "“";
  position: absolute; top: 8px; left: 22px;
  font-family: var(--serif); font-style: italic;
  font-size: 80px; line-height: 1;
  color: var(--moss-soft);
}
.review-stars {
  display: flex; gap: 4px;
  color: var(--moss-deep);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: 14px; line-height: 2;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex: 1;
}
.review-meta {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--jp-sans);
  font-size: 12px; letter-spacing: .14em;
  color: var(--ink-mute);
}
.review-meta b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: .16em;
}

/* =========================
   FAQ
   ========================= */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: clamp(22px, 2.4vw, 30px) 0;
  cursor: pointer;
  display: flex; align-items: center; gap: 20px;
  color: var(--ink);
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  letter-spacing: .1em;
  line-height: 1.6;
}
.faq-q .q-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--moss-deep);
  flex-shrink: 0; width: 30px;
}
.faq-q .q-text { flex: 1; }
.faq-q .q-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.faq-q .q-toggle::before, .faq-q .q-toggle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, background .3s ease;
}
.faq-q .q-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .q-toggle { background: var(--moss-deep); border-color: var(--moss-deep); }
.faq-item.open .q-toggle::before, .faq-item.open .q-toggle::after { background: #fff; }
.faq-item.open .q-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 clamp(24px, 2.6vw, 32px) 50px;
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: 14px; line-height: 2;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

/* =========================
   Access
   ========================= */
.access { background: var(--off-white); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 4vw, 64px);
  max-width: 1200px; margin: 0 auto;
  align-items: stretch;
}
.access-info dl {
  margin: 0; display: grid;
  gap: clamp(20px, 2vw, 28px);
}
.access-info dt {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; letter-spacing: .26em;
  color: var(--moss-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.access-info dd {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 15px; line-height: 1.9;
  letter-spacing: .1em;
  color: var(--ink);
}
.access-info dd small {
  display: block;
  font-family: var(--jp-sans);
  font-size: 12px; color: var(--ink-mute);
  margin-top: 6px; letter-spacing: .12em;
}
.access-map {
  position: relative;
  min-height: 360px;
  background: var(--cream-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.access-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}

/* =========================
   Contact form
   ========================= */
.contact { background: var(--cream); }
.contact-form {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: clamp(20px, 2vw, 28px);
}
.form-row {
  display: grid; gap: 8px;
}
.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 28px);
}
.form-row label {
  font-family: var(--jp-sans);
  font-size: 12px; letter-spacing: .2em;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-row label .req {
  color: var(--moss-deep);
  margin-left: 6px;
  font-family: var(--serif); font-style: italic;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-family: var(--jp-serif);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: .08em;
  transition: border-color .25s ease;
  border-radius: 0;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--moss-deep);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.8;
}
.form-submit {
  text-align: center;
  margin-top: clamp(20px, 2vw, 32px);
}

/* =========================
   Footer
   ========================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 7vw, 100px) var(--pad-x) clamp(28px, 3vw, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 4vw, 64px);
  max-width: 1200px; margin: 0 auto clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(246,240,230,.15);
}
.footer-brand { color: var(--cream); }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand .leaf { color: var(--moss-soft); }
.footer-brand .brand small {
  color: var(--moss-soft);
  border-left-color: rgba(246,240,230,.25);
}
.footer-brand p {
  margin: 24px 0 0;
  font-family: var(--jp-serif);
  font-weight: 300;
  font-size: 13px; line-height: 2;
  letter-spacing: .1em;
  color: rgba(246,240,230,.7);
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 14px;
  letter-spacing: .24em;
  color: var(--moss-soft);
  margin: 0 0 24px;
}
.footer-col h4.mt-32 { margin-top: 32px; }
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--jp-sans);
  font-size: 13px; letter-spacing: .14em;
  color: rgba(246,240,230,.85);
}
.footer-col a:hover { color: var(--moss-soft); }
.social-links {
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(246,240,230,.25);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.social-links a:hover {
  background: var(--moss-deep);
  border-color: var(--moss-deep);
  color: #fff;
}
.social-links svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--jp-sans);
  font-size: 11px; letter-spacing: .2em;
  color: rgba(246,240,230,.55);
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* =========================
   Fixed reservation button
   ========================= */
.fixed-reserve {
  position: fixed;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--moss-deep);
  color: var(--cream);
  font-family: var(--jp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(95, 114, 89, 0.5), 0 4px 10px rgba(43,42,38,.15);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: none;
}
.fixed-reserve::before {
  content: "";
  width: 18px; height: 18px;
  background-color: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") no-repeat center / contain;
}
.fixed-reserve:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(43,42,38,.4);
}

/* =========================
   Scroll reveal animation
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================
   Responsive — tablet
   ========================= */
@media (max-width: 1024px) {
  .nav-list, .header .phone { display: none; }
  .menu-btn { display: grid; }

  .hero .panel { width: min(580px, 66vw); }
  .hero .badge { display: none; }

  .concept-grid { grid-template-columns: 1fr; max-width: 600px; }
  .concept-visual { max-width: 480px; margin: 0 auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .staff-card:nth-child(3) { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================
   Responsive — mobile
   ========================= */
@media (max-width: 720px) {
  :root {
    --h1: clamp(28px, 7vw, 34px);
    --h2: clamp(24px, 6.4vw, 30px);
    --sub: 14px;
    --cta: 13px;
    --pad-x: 22px;
    --pad-y: 64px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 58vh auto;
  }
  .hero .photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
  }
  .hero .photo::before { display: none; }
  .hero .scrim {
    background: linear-gradient(180deg, rgba(36,33,28,.35) 0%, rgba(36,33,28,0) 35%);
    height: 58vh;
    inset: 0 0 auto 0;
  }
  .hero .panel {
    position: relative;
    left: auto; top: auto; transform: none;
    width: 100%;
    margin-top: -40px;
    border-radius: 28px 28px 0 0;
    padding: 36px 26px 40px;
    background: var(--off-white);
    backdrop-filter: none;
    box-shadow: 0 -20px 40px -20px rgba(36,33,28,.25);
    border: none;
  }
  .hero h1 { line-height: 1.5; letter-spacing: .04em; }

  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .staff-grid { grid-template-columns: 1fr; max-width: 320px; }
  .staff-card:nth-child(3) { grid-column: auto; max-width: none; }

  .form-row.two { grid-template-columns: 1fr; gap: 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .fixed-reserve {
    right: 14px; bottom: 14px;
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: .18em;
  }
  .fixed-reserve::before { width: 16px; height: 16px; }
}
