:root {
  --green: #174c3a;
  --green-deep: #0d3328;
  --red: #9f2f2a;
  --red-deep: #74211f;
  --ivory: #f6f0e5;
  --cream: #fffaf0;
  --wood: #8c5b3f;
  --gold: #c7a66a;
  --ink: #1e211d;
  --muted: #62655f;
  --line: rgba(30, 33, 29, 0.16);
  --max: 1200px;
  --shadow: 0 24px 60px rgba(12, 41, 31, 0.16);
  --serif: "STSong", "Songti SC", "SimSun", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
}
::selection { background: var(--red); color: white; }
section[id] { scroll-margin-top: 78px; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: 0; }
h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 54px); font-weight: 600; white-space: nowrap; }
h3 { font-size: 22px; }
p { margin: 0; }

.sr-only, .skip-link:not(:focus) {
  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:focus { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; background: white; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 50px);
  color: white;
  transition: 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 240, 229, 0.96);
  color: var(--green-deep);
  box-shadow: 0 8px 30px rgba(13, 51, 40, 0.08);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled .brand-seal { background: var(--green); color: white; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-seal {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "STSong", "SimSun", serif; font-size: 20px; letter-spacing: 0; }
.brand small { margin-top: 1px; font-size: 10px; opacity: 0.74; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); font-size: 14px; }
.site-nav a { opacity: 0.82; }
.site-nav a:hover, .site-nav a.is-current { opacity: 1; }
.site-nav a.is-current { box-shadow: inset 0 -1px currentColor; }
.nav-cta {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.site-header.is-scrolled .nav-cta { border-color: var(--red); background: var(--red); color: white; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: min(78svh, 780px);
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
  color: white;
}
.hero-slides { position: absolute; inset: 0; display: flex; transition: transform 0.65s ease; }
.hero-slide { min-width: 100%; height: 100%; margin: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 27, 20, 0.86), rgba(6, 27, 20, 0.36) 55%, rgba(6, 27, 20, 0.08)), linear-gradient(0deg, rgba(6, 27, 20, 0.74), transparent 48%);
}
.hero-content { position: relative; z-index: 1; width: min(720px, calc(100% - 36px)); margin: 0 0 clamp(64px, 8vw, 94px) max(18px, calc((100vw - var(--max)) / 2)); }
.kicker { margin: 0 0 14px; color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.kicker.light { color: #e6c98d; }
.hero h1 { font-family: var(--serif); font-size: clamp(58px, 8vw, 100px); font-weight: 500; }
.hero-slogan { margin-top: 8px; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 36px); }
.hero-copy { max-width: 610px; margin-top: 18px; color: rgba(255,255,255,0.84); font-size: clamp(15px, 1.4vw, 18px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--red); color: white; }
.button.primary:hover { background: var(--red-deep); }
.button.outline-light { border-color: rgba(255,255,255,0.7); color: white; }
.button.ivory { background: var(--ivory); color: var(--green-deep); }
.button:disabled { cursor: wait; opacity: 0.65; }
.carousel-controls { display: flex; z-index: 3; align-items: center; gap: 12px; }
.carousel-controls button { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.carousel-controls span { min-width: 54px; font-family: Georgia, serif; font-size: 12px; text-align: center; }
.hero-controls { position: absolute; right: clamp(18px, 4vw, 56px); bottom: 28px; color: white; }

.band { width: 100%; }
.manifesto { padding: 30px clamp(18px, 8vw, 110px); background: var(--red); color: white; text-align: center; }
.manifesto p { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 31px); }
.experience-nav { display: grid; grid-template-columns: repeat(4, 1fr); width: min(var(--max), calc(100% - 36px)); margin: 0 auto; border-inline: 1px solid var(--line); }
.experience-nav > * { display: grid; min-width: 0; padding: 22px 24px; border: 0; border-right: 1px solid var(--line); background: rgba(255,250,240,.38); color: var(--ink); cursor: pointer; text-align: left; transition: background .2s ease, color .2s ease; }
.experience-nav > *:last-child { border-right: 0; }
.experience-nav > *:hover { background: var(--green); color: white; }
.experience-nav span { color: var(--red); font-family: Georgia, serif; font-size: 10px; }
.experience-nav > *:hover span { color: var(--gold); }
.experience-nav strong { margin-top: 12px; font-family: var(--serif); font-size: 21px; }
.experience-nav small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.experience-nav > *:hover small { color: rgba(255,255,255,.7); }
.section { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: clamp(54px, 6vw, 82px) 0; }
.section-heading { max-width: 740px; }
.section-heading > p:not(.kicker) { margin-top: 22px; color: var(--muted); }
.section-heading.light, .section-heading.light > p:not(.kicker) { color: white; }
.section-heading.light > p:not(.kicker) { color: rgba(255,255,255,0.7); }
.centered { margin-inline: auto; text-align: center; }

.story-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(38px, 8vw, 110px); align-items: start; }
.story-copy { padding-top: 48px; }
.story-copy .lead { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); line-height: 1.55; }
.story-copy > p + p { margin-top: 22px; color: var(--muted); }
.story-math { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.story-math div { padding: 24px 18px 0 0; }
.story-math strong, .story-math span { display: block; }
.story-math strong { color: var(--green); font-family: Georgia, serif; font-size: 34px; }
.story-math span { color: var(--muted); font-size: 13px; }

.founder-band { display: grid; grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr); min-height: 560px; background: var(--green); color: white; }
.founder-band figure { min-height: 560px; margin: 0; }
.founder-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.founder-band > div { align-self: center; max-width: 760px; padding: clamp(40px, 6vw, 80px); }
.founder-band h2 { font-size: clamp(29px, 2.7vw, 36px); }
.founder-band p:not(.kicker) { margin-top: 28px; color: rgba(255,255,255,0.74); }
.founder-band blockquote { margin: 42px 0 0; padding-left: 22px; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: clamp(20px, 2.3vw, 30px); }

.journal-section { overflow: hidden; padding-bottom: clamp(54px, 6vw, 82px); background: #102d24; color: white; }
.journal-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 34px; }
.journal-heading .section-heading > p:not(.kicker) { color: rgba(255,255,255,.68); }
.journal-note { flex: 0 0 auto; padding-bottom: 5px; color: var(--gold); font-size: 11px; }
.journal-rail { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 14px; width: min(1400px, calc(100% - 36px)); margin: 0 auto; }
.journal-card { position: relative; min-height: 510px; overflow: hidden; background: #0b211a; }
.journal-card figure { height: 510px; margin: 0; overflow: hidden; }
.journal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.journal-card::after { position: absolute; inset: 38% 0 0; background: linear-gradient(0deg, rgba(5,18,14,.96), rgba(5,18,14,0)); content: ""; }
.journal-card > div { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 28px; }
.journal-card span { color: var(--gold); font-size: 11px; font-weight: 800; }
.journal-card h3 { margin-top: 8px; font-family: var(--serif); font-size: 29px; }
.journal-card p { margin-top: 10px; color: rgba(255,255,255,.7); font-size: 13px; }
.journal-card:hover img { transform: scale(1.035); }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.pillar-grid article { min-height: 220px; padding: 28px; border: 1px solid var(--line); background: var(--cream); }
.pillar-grid span { color: var(--red); font-family: Georgia, serif; font-size: 13px; }
.pillar-grid h3 { margin-top: 64px; font-family: var(--serif); font-size: 30px; }
.pillar-grid p { margin-top: 12px; color: var(--muted); }

.audience-section { border-top: 1px solid var(--line); }
.moment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 38px; }
.moment-grid article { min-height: 230px; padding: 24px; border: 1px solid var(--line); background: var(--cream); }
.moment-grid span { color: var(--red); font-size: 12px; font-weight: 800; }
.moment-grid h3 { margin-top: 48px; font-family: var(--serif); font-size: 25px; }
.moment-grid p { margin-top: 10px; color: var(--muted); font-size: 13px; }

.origin-section { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 78px); align-items: center; }
.origin-copy { padding: 0; }
.origin-copy h2 { font-size: clamp(30px, 3.4vw, 44px); }
.origin-copy p:not(.kicker) { margin-top: 20px; color: var(--muted); }
.origin-copy .fact-note { padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }
.carousel-shell { position: relative; overflow: hidden; background: var(--green-deep); }
.carousel-track { display: flex; height: 100%; transition: transform 0.55s ease; }
.carousel-slide { position: relative; min-width: 100%; height: 100%; margin: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide figcaption { position: absolute; left: 16px; bottom: 14px; padding: 6px 10px; background: rgba(13,51,40,0.82); color: white; font-size: 12px; }
.origin-carousel { height: 420px; }
.origin-carousel .carousel-slide:nth-child(1) img { object-position: center 52%; }
.origin-carousel .carousel-slide:nth-child(2) img { object-position: center 65%; }
.origin-carousel .carousel-slide:nth-child(3) img { object-position: center 58%; }
.carousel-controls.compact { position: absolute; right: 14px; bottom: 12px; color: white; }
.carousel-controls.compact button { width: 34px; height: 34px; background: rgba(13,51,40,0.65); }

.menu-section { padding-bottom: clamp(58px, 7vw, 88px); background: var(--green-deep); }
.coffee-grid { display: grid; grid-template-columns: repeat(3, 1fr); width: min(1400px, calc(100% - 36px)); margin: 0 auto; gap: 12px; }
.coffee-grid article { overflow: hidden; background: var(--cream); }
.coffee-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.coffee-grid article > div { padding: 24px; }
.coffee-grid span { color: var(--red); font-size: 11px; font-weight: 800; }
.coffee-grid h3 { margin-top: 8px; font-family: var(--serif); font-size: 27px; }
.coffee-grid p { margin-top: 10px; color: var(--muted); font-size: 14px; }

.gifts-section .section-heading { max-width: 820px; }
.gift-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; margin-top: 40px; }
.gift-visual { margin: 0; }
.gift-visual img { width: 100%; height: 480px; object-fit: cover; }
.gift-visual figcaption { margin-top: 8px; color: var(--muted); font-size: 11px; }
.gift-list { display: grid; align-content: start; }
.gift-list article { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.gift-list span { color: var(--red); font-family: Georgia, serif; font-size: 12px; }
.gift-list h3 { font-family: var(--serif); font-size: 24px; }
.gift-list p { margin-top: 5px; color: var(--muted); font-size: 13px; }
.gift-list .button { justify-self: start; margin-top: 26px; }

.space-carousel { height: 500px; margin-top: 36px; }
.space-carousel .carousel-slide { cursor: zoom-in; }
.space-carousel .carousel-slide img { object-position: center; }

.first-visit-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 7vw, 92px); align-items: start; border-top: 1px solid var(--line); }
.first-visit-intro > p:not(.kicker) { margin-top: 20px; color: var(--muted); }
.first-visit-intro .button { margin-top: 26px; }
.visit-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.visit-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.visit-steps span { color: var(--red); font-family: Georgia, serif; font-size: 12px; }
.visit-steps h3 { font-family: var(--serif); font-size: 23px; }
.visit-steps p { margin-top: 5px; color: var(--muted); font-size: 13px; }

.events-section { background: var(--green); color: white; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.event-grid article { display: flex; min-height: 320px; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,0.22); }
.event-grid span { color: var(--gold); font-size: 12px; }
.event-grid h3 { margin-top: 48px; font-family: var(--serif); font-size: 28px; }
.event-grid p { margin-top: 16px; color: rgba(255,255,255,0.7); }
.event-grid button { align-self: flex-start; margin-top: auto; padding: 8px 0; border: 0; border-bottom: 1px solid var(--gold); background: transparent; color: white; cursor: pointer; }

.good-section { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(36px, 7vw, 90px); align-items: center; }
.good-copy > p:not(.kicker) { margin-top: 24px; color: var(--muted); }
.status-badge { display: inline-block; margin-top: 28px; padding: 8px 12px; border: 1px solid var(--red); color: var(--red); font-size: 13px; font-weight: 800; }
.record-placeholder { padding: clamp(32px, 5vw, 60px); border: 1px solid var(--line); background: var(--cream); }
.record-placeholder span { color: var(--red); font-size: 12px; }
.record-placeholder strong { display: block; margin-top: 70px; font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); }
.record-placeholder p { margin-top: 12px; color: var(--muted); }

.membership-section { overflow: hidden; background: var(--green-deep); color: white; }
.membership-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(30px, 6vw, 84px); align-items: end; padding-bottom: 42px; }
.membership-intro .section-heading { max-width: 760px; }
.membership-intro .section-heading > p:last-child { max-width: 700px; margin-top: 18px; color: rgba(255,255,255,.72); }
.membership-note { padding: 20px 22px; border: 1px solid rgba(255,255,255,.2); border-left: 3px solid var(--gold); background: rgba(255,255,255,.05); }
.membership-note strong { color: var(--gold); font-size: 13px; }
.membership-note p { margin-top: 9px; color: rgba(255,255,255,.68); font-size: 13px; }
.member-plan-grid { display: grid; width: min(var(--max), calc(100% - 36px)); margin: 0 auto; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.16); }
.member-plan-card { display: flex; min-height: 430px; flex-direction: column; padding: clamp(24px, 3vw, 34px); border-right: 1px solid rgba(255,255,255,.16); background: #f4ede1; color: var(--ink); }
.member-plan-card:last-child { border-right: 0; }
.member-plan-card.is-featured { background: var(--red); color: white; }
.member-plan-card header > span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.member-plan-card.is-featured header > span { color: #f3d7a1; }
.member-plan-card h3 { margin-top: 10px; font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); }
.plan-price { display: grid; margin-top: 30px; }
.plan-price small { color: var(--muted); font-size: 11px; }
.member-plan-card.is-featured .plan-price small { color: rgba(255,255,255,.68); }
.plan-price strong { margin-top: 3px; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 48px); font-weight: 500; }
.member-plan-card ul { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.member-plan-card li { padding-bottom: 10px; border-bottom: 1px solid rgba(30,33,29,.13); font-size: 14px; }
.member-plan-card.is-featured li { border-color: rgba(255,255,255,.18); }
.member-plan-card > button { align-self: flex-start; margin-top: auto; padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green-deep); cursor: pointer; font-weight: 900; }
.member-plan-card.is-featured > button { color: white; }
.styling-benefit { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(34px, 7vw, 88px); align-items: center; }
.styling-benefit figure { position: relative; height: 440px; overflow: hidden; }
.styling-benefit img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }
.styling-benefit figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 11px 14px; background: rgba(9,31,24,.84); color: rgba(255,255,255,.68); font-size: 11px; }
.styling-benefit h3 { max-width: 680px; margin-top: 10px; font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); line-height: 1.16; }
.styling-benefit > div > p:not(.kicker) { max-width: 720px; margin-top: 20px; color: rgba(255,255,255,.7); }
.styling-benefit ol { display: grid; margin: 28px 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; }
.styling-benefit li { display: grid; gap: 4px; padding: 0 16px; border-left: 1px solid rgba(255,255,255,.18); }
.styling-benefit li:first-child { padding-left: 0; border-left: 0; }
.styling-benefit li span { color: var(--gold); font-size: 11px; }
.styling-benefit li strong { font-size: 14px; }
.styling-benefit li small { color: rgba(255,255,255,.58); line-height: 1.5; }
.membership-terms { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 0 0 46px; color: rgba(255,255,255,.5); font-size: 11px; }

.cooperation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 46px 0 30px; }
.cooperation-grid article { min-height: 220px; padding: 24px; border-top: 3px solid var(--green); background: var(--cream); }
.cooperation-grid span { color: var(--red); font-size: 12px; }
.cooperation-grid h3 { margin-top: 40px; }
.cooperation-grid p { margin-top: 12px; color: var(--muted); font-size: 14px; }

.forms-section { background: #ebe1d3; }
.form-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.form-tabs button { min-height: 44px; padding: 10px 18px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-weight: 800; }
.form-tabs button.is-active { border-color: var(--green); background: var(--green); color: white; }
.form-shell { max-width: 920px; margin-top: 16px; padding: clamp(22px, 4vw, 38px); background: var(--cream); box-shadow: 0 16px 40px rgba(30,33,29,0.08); }
.lead-form { display: none; gap: 18px; }
.lead-form.is-active { display: grid; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; font-size: 14px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid rgba(30,33,29,0.25); border-radius: 2px; background: white; color: var(--ink); }
textarea { resize: vertical; }
.consent { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 400; }
.consent input { width: 17px; min-height: 17px; margin-top: 4px; }
.form-message { display: grid; gap: 3px; margin-top: 16px; padding: 14px 16px; border-left: 4px solid var(--green); background: #e4efe8; }
.form-message span { color: var(--muted); font-size: 13px; }
.form-message.error { border-color: var(--red); background: #f6dedb; }
.form-disclaimer { margin: -2px 0 0; padding: 10px 12px; border-left: 3px solid var(--gold); background: #eee4d4; color: var(--muted); font-size: 12px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; min-height: 1px !important; opacity: 0 !important; }

.visit-section { display: grid; grid-template-columns: 1.2fr 0.8fr; min-height: 650px; background: var(--green-deep); color: white; }
.visit-section > img { width: 100%; height: 100%; object-fit: cover; }
.visit-info { align-self: center; padding: clamp(44px, 7vw, 90px); }
.visit-info dl { margin: 34px 0; }
.visit-info dl div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.visit-info dt { color: var(--gold); font-size: 13px; }
.visit-info dd { margin: 0; color: rgba(255,255,255,0.75); }

.faq-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(34px, 7vw, 94px); }
.faq-list { display: grid; gap: 8px; }
.faq-list details { border: 1px solid var(--line); background: var(--cream); }
.faq-list summary { padding: 17px 20px; cursor: pointer; font-weight: 800; }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); font-size: 14px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding: 40px clamp(18px, 5vw, 60px); background: #091f18; color: white; }
.site-footer strong { font-family: var(--serif); font-size: 25px; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; }
.footer-links button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-note { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }

.lightbox { width: min(1000px, calc(100% - 30px)); padding: 0; border: 0; background: transparent; color: white; }
.lightbox::backdrop { background: rgba(4,16,12,0.9); }
.lightbox img { max-height: 80vh; margin: auto; object-fit: contain; }
.lightbox button { position: fixed; top: 16px; right: 22px; width: 44px; height: 44px; border: 1px solid white; border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 28px; }
.lightbox p { margin-top: 10px; text-align: center; }
.toast { position: fixed; right: 18px; bottom: 18px; z-index: 50; max-width: 340px; padding: 14px 18px; background: var(--green-deep); color: white; box-shadow: var(--shadow); }
.privacy-dialog { width: min(620px, calc(100% - 28px)); padding: 0; border: 0; background: var(--cream); color: var(--ink); }
.privacy-dialog::backdrop { background: rgba(4,16,12,.82); }
.privacy-heading { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.privacy-heading h2 { font-size: 32px; }
.privacy-heading button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 24px; }
.privacy-content { display: grid; gap: 16px; padding: 26px; color: var(--muted); font-size: 14px; }
.mobile-action-bar { display: none; }

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}

body.density-compact .section { padding-top: clamp(44px, 5vw, 66px); padding-bottom: clamp(44px, 5vw, 66px); }
body.density-compact .founder-band { min-height: 540px; }
body.density-compact .origin-carousel { height: 360px; }
body.density-compact .space-carousel { height: 420px; }
body.density-compact .pillar-grid article,
body.density-compact .moment-grid article { min-height: 190px; }

input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible, [role="button"]:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 960px) {
  h2 { white-space: normal; }
  .menu-toggle { display: block; width: 44px; height: 44px; padding: 8px; border: 1px solid currentColor; background: rgba(13,51,40,0.35); }
  .menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }
  .site-nav { position: fixed; top: 72px; right: 14px; display: none; width: min(320px, calc(100vw - 28px)); padding: 16px; border: 1px solid var(--line); background: var(--ivory); color: var(--green-deep); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a, .site-nav button { padding: 10px; text-align: left; }
  .story-grid, .good-section, .first-visit-section, .faq-section { grid-template-columns: 1fr; }
  .story-copy { padding-top: 0; }
  .founder-band, .origin-section, .visit-section, .gift-layout { grid-template-columns: 1fr; }
  .founder-band figure { max-height: 720px; }
  .origin-carousel { height: 460px; }
  .pillar-grid, .coffee-grid, .event-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-nav { grid-template-columns: repeat(2, 1fr); }
  .experience-nav > *:nth-child(2) { border-right: 0; }
  .experience-nav > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .journal-rail { grid-template-columns: repeat(3, minmax(250px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .journal-card { scroll-snap-align: start; }
  .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .coffee-grid article:last-child, .event-grid article:last-child { grid-column: 1 / -1; }
  .cooperation-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-intro, .styling-benefit { grid-template-columns: 1fr; }
  .member-plan-grid { grid-template-columns: repeat(2, 1fr); }
  .member-plan-card:nth-child(2) { border-right: 0; }
  .member-plan-card:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 14px; }
  .brand-seal { width: 42px; height: 42px; font-size: 13px; }
  .brand small { display: none; }
  .hero { min-height: 680px; }
  .hero-slide img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(6,27,20,0.94), rgba(6,27,20,0.25) 74%), linear-gradient(90deg, rgba(6,27,20,0.5), transparent); }
  .hero-content { margin: 0 14px 90px; }
  .hero h1 { font-size: 58px; }
  .hero-controls { right: 14px; bottom: 18px; }
  .section { width: min(var(--max), calc(100% - 28px)); padding: 62px 0; }
  .experience-nav { width: calc(100% - 28px); }
  .experience-nav > * { padding: 18px; }
  .experience-nav strong { font-size: 19px; }
  h2 { font-size: 38px; }
  .story-math { grid-template-columns: 1fr; }
  .story-math div { display: grid; grid-template-columns: 86px 1fr; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .founder-band { min-height: auto; }
  .founder-band figure { min-height: 520px; }
  .founder-band > div, .origin-copy, .visit-info { padding: 50px 22px; }
  .pillar-grid, .coffee-grid, .event-grid, .cooperation-grid, .field-grid, .gallery, .moment-grid, .member-plan-grid { grid-template-columns: 1fr; }
  .member-plan-card { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(30,33,29,.15); }
  .member-plan-card:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .styling-benefit figure { height: 380px; }
  .styling-benefit ol { grid-template-columns: 1fr; }
  .styling-benefit li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .coffee-grid article:last-child, .event-grid article:last-child { grid-column: auto; }
  .origin-carousel { height: 320px; }
  .gift-visual img { height: 300px; }
  .space-carousel { height: 340px; }
  .journal-heading { align-items: flex-start; flex-direction: column; }
  .journal-rail { display: flex; width: calc(100% - 28px); padding-bottom: 8px; }
  .journal-card { min-width: min(82vw, 330px); min-height: 460px; }
  .journal-card figure { height: 460px; }
  .form-tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
  .form-tabs button { padding-inline: 10px; }
  .visit-section > img { min-height: 300px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-note { grid-column: auto; }
  body { padding-bottom: 66px; }
  .mobile-action-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 30; display: grid; grid-template-columns: .82fr 1.18fr; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.12); background: rgba(9,31,24,.96); box-shadow: 0 -10px 30px rgba(9,31,24,.18); backdrop-filter: blur(10px); }
  .mobile-action-bar button { min-height: 48px; border: 0; background: transparent; color: white; font-weight: 800; }
  .mobile-action-bar button:last-child { border-radius: 3px; background: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
