:root {
  --ink: #15352f;
  --ink-2: #285048;
  --paper: #f6f0e4;
  --paper-deep: #ede3d1;
  --white: #fffdf8;
  --red: #d44b32;
  --red-dark: #a93224;
  --gold: #d3a850;
  --jade: #1f7568;
  --sky: #dce9e3;
  --line: rgba(21, 53, 47, .16);
  --muted: #63726d;
  --shadow: 0 24px 60px rgba(21, 53, 47, .14);
  --shadow-soft: 0 12px 32px rgba(21, 53, 47, .09);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .44;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.82), transparent 26%),
    radial-gradient(circle at 85% 32%, rgba(31,117,104,.08), transparent 24%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(21,53,47,.012) 6px);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { color: var(--paper); background: var(--ink); }
.section-white { background: rgba(255,253,248,.78); }
.section-jade { color: var(--white); background: var(--jade); }
.rule { height: 1px; background: var(--line); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--red-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-jade .eyebrow { color: #f7c979; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.03; }
h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 7vw, 6.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 4vw, 4.35rem); }
h3 { margin-bottom: 12px; font-size: 1.24rem; line-height: 1.25; }
.lead { max-width: 680px; color: #4f625d; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.section-dark .lead, .section-jade .lead { color: rgba(255,255,255,.75); }
.measure { max-width: 700px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(21,53,47,.1);
  background: rgba(246,240,228,.9);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-seal {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--red);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  transform: rotate(-2deg);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .01em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.desktop-nav a { position: relative; color: #36554e; font-size: .9rem; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
.mobile-panel { display: none; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(21,53,47,.15); }
.btn-red { border-color: var(--red); background: var(--red); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-light { border-color: var(--paper); color: var(--ink); background: var(--paper); }
.btn-small { min-height: 42px; padding: 9px 16px; font-size: .86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red-dark); font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.announcement { color: #f8ead0; background: var(--ink); }
.announcement .container { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 10px; text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .025em; }
.announcement a { color: #fff; }

.hero { position: relative; min-height: 720px; overflow: hidden; }
.hero::after {
  content: "中";
  position: absolute;
  right: -70px;
  bottom: -160px;
  z-index: -1;
  color: rgba(212,75,50,.055);
  font-family: var(--serif);
  font-size: 36rem;
  line-height: 1;
}
.hero-grid { display: grid; min-height: 680px; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 60px; padding: 66px 0 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { color: var(--red); font-style: italic; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 26px; color: #536660; font-size: .86rem; font-weight: 650; }
.hero-note .dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--jade); box-shadow: 0 0 0 6px rgba(31,117,104,.12); }
.hero-visual { position: relative; min-height: 570px; }
.hero-image {
  position: absolute;
  inset: 0 0 38px 30px;
  width: calc(100% - 30px);
  height: calc(100% - 38px);
  border-radius: 190px 190px 28px 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-stamp {
  position: absolute;
  right: -22px;
  bottom: 0;
  width: 178px;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  transform: rotate(6deg);
}
.hero-stamp strong { display: block; margin-top: 18px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.05; }
.hero-stamp small { display: block; margin-top: 8px; font-size: .7rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
.hero-card {
  position: absolute;
  bottom: 28px;
  left: -8px;
  width: 216px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 18px;
  background: rgba(255,253,248,.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.hero-card .mini-label { color: var(--red-dark); }
.hero-card strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 1.1rem; line-height: 1.15; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,253,248,.45); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 23px 14px; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: block; margin-bottom: 5px; color: var(--red); font-size: 1.05rem; }
.trust-item strong { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

.section-heading { max-width: 790px; margin-bottom: 42px; }
.destination-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 20px; }
.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.destination-large { grid-row: span 2; min-height: 740px; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.destination-card:hover img { transform: scale(1.045); }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,24,21,.05), rgba(8,24,21,.82)); }
.destination-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 28px; }
.destination-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: #f8ce7e;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.destination-copy h3 { color: #fff; font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.35rem); font-weight: 500; }
.destination-copy p { margin-bottom: 0; color: rgba(255,255,255,.78); font-size: .9rem; }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.pain-list { display: grid; gap: 14px; }
.pain-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,253,248,.54); }
.pain-number { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: #fff; background: var(--jade); font-family: var(--serif); font-size: 1.15rem; }
.pain-item h3 { margin-bottom: 4px; }
.pain-item p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 300px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.feature-card::after { content: attr(data-number); position: absolute; right: -7px; bottom: -42px; color: rgba(21,53,47,.055); font-family: var(--serif); font-size: 10rem; line-height: 1; }
.feature-card .icon-box { display: grid; width: 46px; height: 46px; margin-bottom: 45px; place-items: center; border-radius: 13px; color: var(--paper); background: var(--ink); font-weight: 900; }
.feature-card p { position: relative; z-index: 2; color: var(--muted); }

.product-spotlight { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 34px; background: var(--ink); box-shadow: var(--shadow); }
.product-copy { padding: clamp(38px, 6vw, 76px); color: var(--paper); }
.product-copy h2 { font-size: clamp(2.5rem, 4.8vw, 4.7rem); }
.product-copy p { color: rgba(255,255,255,.7); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin: 26px 0; }
.product-price strong { font-family: var(--serif); font-size: 3rem; font-weight: 500; }
.product-price span { color: rgba(255,255,255,.55); font-size: .82rem; }
.product-visual { position: relative; min-height: 620px; overflow: hidden; background: #1a4a45; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.product-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(21,53,47,.05), rgba(21,53,47,.8)); }
.mock-guide {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 300px;
  height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 9px solid rgba(255,255,255,.15);
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 35px 80px rgba(0,0,0,.38);
  transform: translate(-50%, -50%) rotate(5deg);
}
.mock-guide::before { content: "FIRST-TIME"; font-size: .7rem; font-weight: 900; letter-spacing: .2em; }
.mock-guide strong { font-family: var(--serif); font-size: 3rem; font-weight: 500; line-height: .94; }
.mock-guide small { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.check-list { display: grid; gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.section-white .check-list li::before, .card .check-list li::before { color: var(--jade); }

.route-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.route-map { position: relative; min-height: 460px; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.78), rgba(220,233,227,.4)); }
.route-map::before { content: ""; position: absolute; inset: 17%; border: 2px dashed rgba(31,117,104,.32); border-radius: 46% 54% 44% 56%; transform: rotate(-12deg); }
.city-dot { position: absolute; display: grid; width: 98px; height: 98px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); box-shadow: var(--shadow-soft); font-family: var(--serif); font-weight: 700; text-align: center; }
.city-dot::after { content: attr(data-days); position: absolute; top: 70px; padding: 2px 8px; border-radius: 99px; color: #fff; background: var(--red); font-family: var(--sans); font-size: .62rem; }
.city-1 { top: 14%; left: 24%; }
.city-2 { top: 43%; right: 18%; }
.city-3 { bottom: 9%; left: 20%; }
.route-line { position: absolute; width: 32%; height: 3px; background: var(--gold); transform-origin: left; }
.line-1 { top: 35%; left: 39%; transform: rotate(21deg); }
.line-2 { top: 59%; left: 39%; transform: rotate(133deg); }

.route-photo-stack { position: relative; min-height: 560px; }
.stack-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 10px solid var(--white);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.stack-photo img { width: 100%; height: 100%; object-fit: cover; }
.stack-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,253,248,.88);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stack-main { inset: 0 12% 12% 0; }
.stack-side-a { right: 0; bottom: 2%; width: 42%; height: 34%; transform: rotate(3deg); }
.stack-side-b { top: 8%; right: 1%; width: 38%; height: 30%; transform: rotate(-4deg); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.process-step { position: relative; padding: 34px 28px 16px 0; }
.process-step::before { content: ""; position: absolute; top: -5px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.process-step span { display: block; margin-bottom: 26px; color: #f4c779; font-family: var(--serif); font-size: 2.3rem; }
.process-step h3 { color: #fff; }
.process-step p { color: rgba(255,255,255,.62); font-size: .9rem; }

.quote-block { display: grid; grid-template-columns: 160px 1fr; gap: 38px; align-items: start; }
.quote-mark { color: var(--red); font-family: var(--serif); font-size: 9rem; line-height: .65; }
blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 3.6rem); line-height: 1.16; }
.quote-caption { margin-top: 22px; color: var(--muted); font-family: var(--sans); font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; grid-template-columns: 1fr 34px; align-items: center; gap: 24px; padding: 24px 0; border: 0; color: var(--ink); background: transparent; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question span:last-child { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 720px; padding: 0 42px 25px 0; color: var(--muted); }
.faq-answer.open { display: block; }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: var(--paper); background: var(--red); }
.cta-band::after { content: "易"; position: absolute; right: 2%; top: -72px; color: rgba(255,255,255,.11); font-family: var(--serif); font-size: 18rem; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 45px; }
.cta-grid h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4vw, 4.1rem); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.page-hero { position: relative; overflow: hidden; padding: 90px 0 78px; border-bottom: 1px solid var(--line); }
.page-hero::after { content: attr(data-mark); position: absolute; right: 4%; top: -32px; z-index: -1; color: rgba(212,75,50,.065); font-family: var(--serif); font-size: 17rem; }
.page-hero h1 { max-width: 920px; font-size: clamp(3.3rem, 7vw, 6.7rem); }
.page-hero .lead { max-width: 760px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.filter-btn { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; font-size: .84rem; font-weight: 800; cursor: pointer; }
.filter-btn.active { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { position: relative; display: flex; min-height: 440px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .2s ease; }
.product-card:hover { transform: translateY(-5px); }
.product-card.hidden { display: none; }
.product-art { position: relative; height: 185px; overflow: hidden; background: var(--ink); }
.product-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-art img { transform: scale(1.04); }
.product-art.abstract { display: grid; place-items: center; background: linear-gradient(135deg, #163b36, #286e63); }
.product-art.abstract::before, .product-art.abstract::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.product-art.abstract::before { width: 170px; height: 170px; }
.product-art.abstract::after { width: 100px; height: 100px; }
.art-character { position: relative; z-index: 2; color: rgba(255,255,255,.88); font-family: var(--serif); font-size: 4.5rem; }
.product-badge { position: absolute; top: 16px; left: 16px; z-index: 3; padding: 6px 10px; border-radius: 99px; color: var(--ink); background: #f8ce7e; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.product-body .mini-label { color: var(--red-dark); }
.product-body p { color: var(--muted); font-size: .9rem; }
.product-footer { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.price strong { display: block; font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.price small { color: var(--muted); font-size: .67rem; }
.mini-label { font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing-card { display: flex; min-height: 590px; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.pricing-card.featured { color: var(--paper); background: var(--ink); transform: translateY(-12px); }
.pricing-card.featured p, .pricing-card.featured .pricing-meta { color: rgba(255,255,255,.66); }
.pricing-card.featured .check-list li::before { color: var(--gold); }
.pricing-tag { align-self: flex-start; padding: 5px 9px; border-radius: 99px; color: var(--red-dark); background: #f4cf83; font-size: .63rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.pricing-card h3 { margin-top: 24px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.pricing-amount { margin: 8px 0 20px; font-family: var(--serif); font-size: 3.4rem; line-height: 1; }
.pricing-amount small { font-family: var(--sans); font-size: .72rem; }
.pricing-meta { color: var(--muted); font-size: .84rem; }
.pricing-card .btn { margin-top: auto; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scope-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.58); }
.scope-card.yes { border-top: 5px solid var(--jade); }
.scope-card.no { border-top: 5px solid var(--red); }

.story-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 75px; align-items: center; }
.story-visual { position: relative; min-height: 520px; }
.story-visual img { position: absolute; inset: 0 46px 50px 0; width: calc(100% - 46px); height: calc(100% - 50px); border-radius: 34px; object-fit: cover; box-shadow: var(--shadow); }
.story-card { position: absolute; right: 0; bottom: 0; width: 230px; padding: 22px; border-radius: 20px; color: var(--paper); background: var(--red); box-shadow: var(--shadow-soft); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border-top: 1px solid rgba(255,255,255,.25); }
.value-card span { display: block; margin-bottom: 30px; color: var(--gold); font-family: var(--serif); font-size: 2.2rem; }
.value-card p { color: rgba(255,255,255,.62); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.gallery-card img { width: 100%; height: 260px; object-fit: cover; }
.gallery-card h3, .gallery-card p { padding-inline: 26px; }
.gallery-card h3 { margin-top: 24px; }
.gallery-card p { margin-bottom: 28px; color: var(--muted); font-size: .92rem; }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-card { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,253,248,.56); }
.contact-card strong { display: block; margin-bottom: 5px; }
.contact-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.form-card { padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .77rem; font-weight: 850; letter-spacing: .045em; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(21,53,47,.24); border-radius: 11px; color: var(--ink); background: #fffdf8; }
.field textarea { min-height: 130px; resize: vertical; }
.field-help { color: var(--muted); font-size: .72rem; }
.check-field { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .8rem; }
.check-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--jade); }
.form-status { display: none; margin-top: 18px; padding: 15px; border-radius: 11px; background: var(--sky); font-size: .86rem; }
.form-status.show { display: block; }

.checklist-wrap { display: grid; grid-template-columns: 270px 1fr; gap: 50px; align-items: start; }
.checklist-nav { position: sticky; top: 115px; }
.progress-shell { height: 8px; overflow: hidden; border-radius: 99px; background: rgba(21,53,47,.12); }
.progress-bar { width: 0; height: 100%; border-radius: inherit; background: var(--red); transition: width .25s ease; }
.progress-copy { margin-top: 9px; color: var(--muted); font-size: .78rem; }
.check-section { margin-bottom: 36px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.check-section h2 { font-family: var(--sans); font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; }
.check-row { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.check-row input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--jade); }
.check-row label { cursor: pointer; }
.check-row small { display: block; margin-top: 4px; color: var(--muted); }

.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.legal-nav a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; font-size: .78rem; font-weight: 800; text-decoration: none; }
.legal-section { padding: 36px 0; border-top: 1px solid var(--line); }
.legal-section h2 { font-family: var(--sans); font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.legal-section h3 { margin-top: 28px; }
.legal-section p, .legal-section li { color: #53635f; }

.site-footer { padding: 65px 0 28px; color: rgba(255,255,255,.72); background: #102a25; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr .8fr; gap: 48px; padding-bottom: 50px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.52); }
.footer-brand p { max-width: 380px; margin-top: 20px; font-size: .9rem; }
.footer-col h3 { margin-bottom: 17px; color: #fff; font-family: var(--sans); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: rgba(255,255,255,.68); font-size: .86rem; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.footer-bottom p { margin: 0; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(7,25,21,.72); backdrop-filter: blur(7px); }
.modal-backdrop.open { display: grid; }
.modal { position: relative; width: min(100%, 560px); max-height: 90vh; overflow: auto; padding: 38px; border-radius: var(--radius); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.modal-close { position: absolute; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
.modal h2 { padding-right: 40px; font-size: 2.4rem; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 200; max-width: 360px; padding: 16px 19px; border-radius: 14px; color: #fff; background: var(--ink); box-shadow: var(--shadow); transform: translateY(150%); transition: transform .25s ease; }
.toast.show { transform: none; }

@media (max-width: 980px) {
  .desktop-nav, .site-header .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-panel.open { display: grid; padding: 4px 20px 22px; border-top: 1px solid var(--line); }
  .mobile-panel a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 800; text-decoration: none; }
  .mobile-panel .btn { margin-top: 16px; }
  .hero-grid, .intro-grid, .product-spotlight, .route-wrap, .story-grid, .form-layout, .cta-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 52px; }
  .hero-copy { max-width: 730px; }
  .hero-visual { min-height: 540px; }
  .hero-image { inset-left: 0; width: 100%; }
  .destination-grid { grid-template-columns: 1fr 1fr; }
  .destination-large { grid-row: auto; grid-column: 1 / -1; min-height: 520px; }
  .feature-grid, .product-grid, .pricing-grid, .value-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .product-visual { min-height: 520px; }
  .route-photo-stack { min-height: 520px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { justify-content: flex-start; }
  .form-layout { gap: 36px; }
  .contact-aside { position: static; }
  .checklist-wrap { grid-template-columns: 1fr; }
  .checklist-nav { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .announcement .container { min-height: 48px; }
  .nav-wrap { min-height: 68px; }
  .brand-copy small { display: none; }
  h1 { font-size: clamp(3.05rem, 14vw, 4.6rem); }
  .hero { min-height: auto; }
  .hero-grid { gap: 44px; padding-bottom: 64px; }
  .hero-visual { min-height: 430px; }
  .hero-image { inset: 0 0 30px; width: 100%; height: calc(100% - 30px); border-radius: 130px 130px 24px 24px; }
  .hero-stamp { right: -4px; width: 132px; padding: 15px; }
  .hero-stamp strong { margin-top: 13px; font-size: 1.05rem; }
  .hero-card { left: 4px; bottom: 0; width: 185px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:last-child { grid-column: 1 / -1; }
  .intro-grid { gap: 42px; }
  .destination-grid, .feature-grid, .product-grid, .pricing-grid, .value-grid, .scope-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
  .destination-card, .destination-large { min-height: 420px; }
  .product-copy { padding: 40px 26px; }
  .product-visual { min-height: 450px; }
  .mock-guide { width: 250px; height: 360px; }
  .route-map { min-height: 360px; }
  .route-photo-stack { min-height: 430px; }
  .stack-main { inset: 0 0 22% 0; }
  .stack-side-a { width: 48%; height: 28%; }
  .stack-side-b { top: auto; bottom: 8%; width: 46%; height: 26%; }
  .city-dot { width: 82px; height: 82px; font-size: .86rem; }
  .city-dot::after { top: 59px; }
  .process-grid { border-top: 0; }
  .process-step { border-top: 1px solid rgba(255,255,255,.22); }
  .quote-block { grid-template-columns: 1fr; gap: 16px; }
  .quote-mark { font-size: 6rem; }
  .page-hero { padding: 64px 0 58px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .story-visual { min-height: 420px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-card { padding: 25px 20px; }
  .check-section { padding: 24px 19px; }
  .cta-grid { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .modal { padding: 30px 22px; }
}

@media print {
  .site-header, .announcement, .site-footer, .button-row, .cta-band, .checklist-nav .btn { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 20px 0; }
  .checklist-wrap { display: block; }
  .check-section { break-inside: avoid; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
