/* =========================================================================
   CHINA ODYSSEY — design system (rebuilt)
   Light-dominant · cinematic video · bold type · real media
   Fonts: Archivo (display) · Inter (text) · Space Mono (labels)
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root {
  --bg: #0a0a0c; --bg-2: #0f0f12; --bg-3: #15151a; --elev: #1a1a20;
  --ink: #f6f3ec; --ink-soft: rgba(246,243,236,0.66); --ink-faint: rgba(246,243,236,0.42);
  --line: rgba(246,243,236,0.12); --line-2: rgba(246,243,236,0.20);
  --red: #f2402b; --red-2: #ff5740; --red-deep: #c52b1a; --gold: #d9b779;
  --light: #f1ece2; --light-2: #e7e0d2; --on-light: #14130f; --on-light-soft: #5b554a;
  --display: 'Archivo', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --maxw: 1280px; --maxw-wide: 1500px; --gut: clamp(20px, 5vw, 72px); --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

.display, h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; }
.mono { font-family: var(--mono); }
.eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--red); display: inline-block; }
.eyebrow.on-light { color: var(--on-light-soft); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--ink-soft); max-width: 56ch; }
.accent { color: var(--red); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.container.wide { max-width: var(--maxw-wide); }
.section { padding-block: clamp(72px, 11vw, 168px); position: relative; }
.section.tight { padding-block: clamp(56px, 7vw, 96px); }
.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }
.light-sec { background: var(--light); color: var(--on-light); }
.light-sec .lede { color: var(--on-light-soft); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(2.1rem, 5.2vw, 4.4rem); margin: 20px 0 0; }
.section-head .lede { margin-top: 22px; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }

/* buttons */
.btn { --bg-btn: var(--ink); --fg-btn: var(--bg); display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 600; font-size: 0.98rem; padding: 15px 26px; border-radius: 100px; border: 1px solid transparent; background: var(--bg-btn); color: var(--fg-btn); cursor: pointer; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s; white-space: nowrap; }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arr { transform: translateX(4px); }
.btn-red { --bg-btn: var(--red); --fg-btn: #fff; box-shadow: 0 8px 30px -10px var(--red); }
.btn-red:hover { --bg-btn: var(--red-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); transition: gap .3s var(--ease), color .3s; }
.link-arrow .arr { color: var(--red); transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 14px; }
.link-arrow.on-light { color: var(--on-light); }

/* reveal */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; } }

/* header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(10,10,12,0.78); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border-bottom-color: var(--line); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 34px; height: 34px; border-radius: 8px; background: var(--red); display: grid; place-items: center; flex: none; font-family: var(--display); font-weight: 800; color: #fff; font-size: 1.15rem; box-shadow: 0 6px 20px -8px var(--red); }
.brand .wm { font-family: var(--display); font-weight: 800; font-size: 1.06rem; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; }
.brand .wm small { display: block; font-family: var(--mono); font-weight: 400; font-size: 0.56rem; letter-spacing: 0.24em; color: var(--ink-faint); margin-top: 4px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: color .25s; position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--red); transition: width .3s var(--ease); }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang { position: relative; }
.lang-toggle { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; color: var(--ink-soft); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; cursor: pointer; padding: 8px; transition: color .25s; }
.lang-toggle:hover { color: var(--ink); } .lang-toggle .globe { width: 15px; height: 15px; }
.lang-menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--elev); border: 1px solid var(--line); border-radius: 12px; padding: 7px; min-width: 178px; max-height: 72vh; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease); list-style: none; box-shadow: 0 24px 50px -16px rgba(0,0,0,0.6); }
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a { display: flex; justify-content: space-between; gap: 16px; padding: 9px 12px; border-radius: 8px; font-size: 0.9rem; color: var(--ink-soft); transition: background .2s, color .2s; }
.lang-menu a span { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-faint); }
.lang-menu a:hover { background: var(--bg-3); color: var(--ink); } .lang-menu a.current { color: var(--red); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: var(--bg); padding: 100px var(--gut) 40px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .5s var(--ease); visibility: hidden; }
.nav-open .mobile-nav { transform: none; visibility: visible; }
.mobile-nav a { font-family: var(--display); font-weight: 700; font-size: 2rem; letter-spacing: -0.02em; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 24px; justify-content: center; font-size: 1.1rem; }
.mobile-nav .m-langs { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-nav .m-langs a { font-family: var(--mono); font-size: 0.7rem; border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px; }

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; animation: kenburns 24s var(--ease) infinite alternate; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; transform: scale(1.06); } }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.48) 30%, rgba(10,10,12,0.1) 60%, rgba(10,10,12,0) 82%),
  linear-gradient(to right, rgba(10,10,12,0.4), rgba(10,10,12,0) 46%),
  linear-gradient(to bottom, rgba(10,10,12,0.5), rgba(10,10,12,0) 14%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw-wide); margin-inline: auto; padding: 0 var(--gut) clamp(48px, 8vh, 110px); }
.hero h1 { font-size: clamp(3rem, 9vw, 8.6rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; text-transform: uppercase; max-width: 16ch; text-shadow: 0 2px 44px rgba(0,0,0,0.42); }
.hero h1 .accent { color: var(--red); }
.hero .sub { margin-top: 28px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(246,243,236,0.9); max-width: 50ch; line-height: 1.5; text-shadow: 0 1px 24px rgba(0,0,0,0.65); }
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-top { position: absolute; top: clamp(96px, 14vh, 150px); left: var(--gut); z-index: 2; }
.hero-meta { position: absolute; right: var(--gut); bottom: clamp(48px, 8vh, 110px); z-index: 2; text-align: right; display: flex; flex-direction: column; gap: 4px; }
.hero-meta b { font-family: var(--display); font-size: 2rem; font-weight: 800; }
.hero-meta span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--red), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* marquee (light) */
.marquee { border-top: 1px solid rgba(20,19,15,0.12); border-bottom: 1px solid rgba(20,19,15,0.12); overflow: hidden; padding: 20px 0; background: var(--light); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scrollx 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em; color: rgba(20,19,15,0.34); display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--red); font-size: 0.9rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* statement (media-backed) */
.statement { padding-block: clamp(96px, 16vw, 220px); position: relative; overflow: hidden; color: #fff; }
.statement .stmt-bg { position: absolute; inset: 0; z-index: 0; }
.statement .stmt-bg img, .statement .stmt-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.statement .stmt-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(8,8,12,0.93) 22%, rgba(8,8,12,0.6) 64%, rgba(242,64,43,0.3)),
  linear-gradient(to top, rgba(8,8,12,0.55), rgba(8,8,12,0) 46%); }
.statement .container { position: relative; z-index: 2; }
.statement .eyebrow { color: rgba(255,255,255,0.85); }
.statement .foot p { color: rgba(255,255,255,0.82); }
.statement .link-arrow { color: #fff; }
.statement h2 { font-size: clamp(2.4rem, 7vw, 6.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; max-width: 18ch; }
.statement h2 .dim { color: rgba(255,255,255,0.4); }
.statement h2 .accent { color: var(--red); }
.statement .foot { margin-top: 44px; display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.statement .foot p { max-width: 44ch; font-size: 1.05rem; }

/* big destination list */
.dest-list { border-top: 1px solid var(--line); }
.dest-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(20px, 3.2vw, 40px) 0; border-bottom: 1px solid var(--line); position: relative; cursor: pointer; transition: padding-left .4s var(--ease), color .3s; }
.dest-row .idx { font-family: var(--mono); font-size: 0.8rem; color: var(--ink-faint); width: 48px; flex: none; transition: color .3s; }
.dest-row .name { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 6.5vw, 5.4rem); letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; flex: 1; transition: transform .4s var(--ease), color .3s; }
.dest-row .meta { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.dest-row .go { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; transition: background .3s, border-color .3s, transform .4s var(--ease); color: var(--ink); }
.dest-row:hover { padding-left: 18px; }
.dest-row:hover .name, .dest-row:hover .idx { color: var(--red); }
.dest-row:hover .go { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(-45deg); }
.dest-hover { position: fixed; top: 0; left: 0; width: 300px; height: 380px; border-radius: 12px; overflow: hidden; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.9); transition: opacity .35s var(--ease), transform .35s var(--ease); z-index: 60; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7); }
.dest-hover.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.dest-hover img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none) { .dest-hover { display: none; } }

/* journey cards */
.j-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.jcard { position: relative; grid-column: span 4; border-radius: var(--radius); overflow: hidden; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; isolation: isolate; color: #fff; }
.jcard.tall { min-height: 560px; } .jcard.span6 { grid-column: span 6; } .jcard.span8 { grid-column: span 8; }
.jcard .img { position: absolute; inset: 0; z-index: -2; }
.jcard .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.jcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,8,10,0.95) 0%, rgba(8,8,10,0.78) 28%, rgba(8,8,10,0.32) 58%, rgba(8,8,10,0.05) 100%); }
.jcard:hover .img img { transform: scale(1.07); }
.jcard .top { position: absolute; top: 22px; left: 22px; right: 22px; display: flex; justify-content: space-between; align-items: flex-start; }
.jcard .badge { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); padding: 6px 11px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.16); }
.jcard .region { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.jcard h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.jcard p { margin-top: 12px; color: rgba(246,243,236,0.78); font-size: 0.96rem; max-width: 42ch; }
.jcard .jfoot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); }
.jcard .price { font-size: 0.9rem; color: rgba(246,243,236,0.78); }
.jcard .price b { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: #fff; }
.jcard .tags { display: flex; gap: 7px; margin-top: 14px; flex-wrap: wrap; }
.jcard .tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; padding: 4px 10px; }

/* experiences — editorial / borderless */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.exp { background: none; padding: 30px 0 0; border-top: 1.5px solid var(--line); transition: border-color .3s; }
.exp .num { font-family: var(--mono); font-size: 0.74rem; color: var(--red); letter-spacing: 0.1em; }
.exp .ico { width: 30px; height: 30px; color: var(--ink); margin: 20px 0 16px; stroke-width: 1.5; }
.exp h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; transition: color .3s; }
.exp:hover h3 { color: var(--red); }
.exp p { margin-top: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.exp .link-arrow { margin-top: 18px; }

/* service / team */
.team-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.team-list { margin-top: 36px; display: flex; flex-direction: column; }
.team-item { display: flex; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); }
.team-item:last-child { border-bottom: 1px solid var(--line); }
.team-item .n { font-family: var(--mono); font-size: 0.85rem; color: var(--red); flex: none; padding-top: 4px; }
.team-item h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.team-item p { margin-top: 7px; color: var(--ink-soft); font-size: 0.98rem; }
.team-visual { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 520px; display: flex; align-items: flex-end; padding: 34px; color: #fff; }
.team-visual img, .team-visual video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.team-visual::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,8,10,0.85), rgba(8,8,10,0.1)); }
.team-visual blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.9rem); letter-spacing: -0.02em; line-height: 1.15; }
.team-visual cite { display: block; margin-top: 16px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246,243,236,0.7); font-style: normal; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
.stat { border-top: 2px solid var(--red); padding-top: 20px; }
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -0.04em; line-height: 1; display: block; }
.stat span { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 0.92rem; }

/* guide (light) */
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.gcard { background: #fff; border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; min-height: 240px; border: 1px solid rgba(0,0,0,0.06); transition: transform .4s var(--ease), box-shadow .4s; }
.gcard:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.25); }
.gcard .kicker { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.gcard h3 { font-family: var(--display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.02em; color: var(--on-light); margin-top: 14px; line-height: 1.1; }
.gcard p { margin-top: 10px; color: var(--on-light-soft); font-size: 0.94rem; flex: 1; }
.gcard .link-arrow { margin-top: 18px; color: var(--on-light); }

/* testimonials */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.tcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--bg-2); display: flex; flex-direction: column; }
.tcard .stars { color: var(--red); letter-spacing: 3px; font-size: 0.9rem; }
.tcard blockquote { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.25; margin: 18px 0 22px; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--red); flex: none; }
.tcard .who b { display: block; font-size: 0.95rem; }
.tcard .who span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.owner-note { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.04em; }

/* CTA */
.cta { position: relative; overflow: hidden; padding-block: clamp(90px, 14vw, 200px); text-align: center; }
.cta h2 { font-size: clamp(2.6rem, 8vw, 7rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; text-transform: uppercase; }
.cta p { margin: 26px auto 0; max-width: 52ch; color: var(--ink-soft); font-size: 1.1rem; }
.cta .cta-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .reassure { margin-top: 24px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); display: inline-flex; gap: 8px; align-items: center; }
.cta .reassure svg { color: var(--red); }
.cta .container { position: relative; z-index: 1; }
.cta-glow { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%); width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; background: radial-gradient(circle, rgba(242,64,43,0.22), transparent 65%); z-index: 0; pointer-events: none; }
.cta-media { color: #fff; }
.cta-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cta-bg video { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(ellipse 62% 58% at 50% 50%, rgba(8,8,12,0.72), rgba(8,8,12,0.2) 80%),
  linear-gradient(rgba(8,8,12,0.26), rgba(8,8,12,0.46)),
  radial-gradient(circle at 50% 42%, rgba(242,64,43,0.32), transparent 60%); }
.cta-media h2 { text-shadow: 0 2px 44px rgba(0,0,0,0.5); }
.cta-media p { text-shadow: 0 1px 24px rgba(0,0,0,0.6); }
.cta-media h2, .cta-media p { color: #fff; }
.cta-media .eyebrow { color: rgba(255,255,255,0.85); }
.cta-media .reassure { color: rgba(255,255,255,0.82); }
.cta-media .reassure svg { color: #fff; }
.cta-media .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-media .btn-ghost:hover { background: #fff; color: var(--bg); border-color: #fff; }

/* footer */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand p { margin: 18px 0 22px; color: var(--ink-soft); max-width: 36ch; font-size: 0.96rem; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.92rem; transition: color .25s; }
.footer-contact a:hover { color: var(--red); } .footer-contact .ico { width: 16px; height: 16px; flex: none; }
.footer-col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--ink-soft); font-size: 0.95rem; transition: color .25s; } .footer-col a:hover { color: var(--ink); }
.footer-langs { display: flex; flex-wrap: wrap; gap: 8px; padding: 26px 0; border-top: 1px solid var(--line); }
.footer-langs a { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; transition: all .25s; }
.footer-langs a:hover, .footer-langs a.current { border-color: var(--red); color: var(--ink); }
.footer-wm { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 15vw, 15rem); letter-spacing: -0.05em; line-height: 0.82; text-transform: uppercase; color: var(--ink); padding: 10px 0 0; overflow: hidden; white-space: nowrap; }
.footer-wm .accent { color: var(--red); }
.footer-note { color: var(--ink-faint); font-size: 0.78rem; line-height: 1.6; max-width: 100ch; padding: 30px 0; border-top: 1px solid var(--line); margin-top: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0 40px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-faint); }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; } .footer-bottom a:hover { color: var(--ink); }

/* page hero (subpages) */
.page-hero { position: relative; padding: clamp(140px, 20vh, 220px) 0 clamp(56px, 7vw, 90px); overflow: hidden; }
.page-hero .crumbs { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.page-hero .crumbs a:hover { color: var(--red); }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; text-transform: uppercase; }
.page-hero p { margin-top: 22px; max-width: 56ch; color: var(--ink-soft); font-size: 1.1rem; }
.page-hero .article-meta { margin-top: 22px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

/* filter + tours */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(32px, 4vw, 52px); }
.chip { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line-2); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.tours-grid .jcard { grid-column: auto; min-height: 460px; }

/* plan form */
.plan-wrap { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 48px); }
.form-step { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.form-step:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-h { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.step-h .n { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--mono); font-size: 0.85rem; display: grid; place-items: center; flex: none; }
.step-h h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 13px 15px; color: var(--ink); font-family: var(--sans); font-size: 0.98rem; transition: border-color .25s, background .25s; width: 100%; }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: var(--bg-3); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f6f3ec' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-select { font-size: 0.9rem; padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line-2); cursor: pointer; transition: all .2s; user-select: none; color: var(--ink-soft); }
.chip-select:hover { border-color: var(--ink); color: var(--ink); }
.chip-select.on { background: var(--red); border-color: var(--red); color: #fff; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: clamp(40px,6vw,80px) 30px; }
.form-success.show { display: block; }
.form-success .mark { width: 56px; height: 56px; border-radius: 14px; background: var(--red); display: grid; place-items: center; margin: 0 auto 24px; }
.form-success h3 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.form-success p { margin-top: 14px; color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.aside-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 100px; }
.aside-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 22px; }
.aside-step { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.aside-step:first-of-type { border-top: none; padding-top: 0; }
.aside-step .dot { font-family: var(--mono); font-size: 0.8rem; color: var(--red); flex: none; }
.aside-step b { font-size: 0.98rem; }
.aside-step p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 3px; }
.aside-trust { margin-top: 18px; background: var(--red); color: #fff; border-radius: var(--radius); padding: 26px; }
.aside-trust .stars { letter-spacing: 3px; }
.aside-trust b { display: block; margin-top: 10px; font-family: var(--display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.aside-trust p { margin-top: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.88); }

/* article */
.article { max-width: 760px; margin-inline: auto; }
.article > p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
.article > p.intro { font-size: 1.35rem; line-height: 1.55; color: var(--ink); font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; margin-bottom: 36px; }
.article h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin: 48px 0 18px; }
.article .bullets { list-style: none; margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.article .bullets li { padding-left: 26px; position: relative; color: var(--ink-soft); line-height: 1.6; }
.article .bullets li::before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; background: var(--red); border-radius: 2px; }
.article .bullets b { color: var(--ink); }
.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 40px; }
.toc h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.toc a { color: var(--ink-soft); font-size: 0.98rem; transition: color .2s, padding-left .25s; }
.toc a:hover { color: var(--red); padding-left: 6px; }
.callout { border-left: 2px solid var(--red); background: var(--bg-2); border-radius: 0 12px 12px 0; padding: 22px 26px; margin: 30px 0; }
.callout p { color: var(--ink-soft); } .callout b { color: var(--ink); }
.table-wrap { margin: 8px 0 30px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.guide-table { width: 100%; border-collapse: collapse; font-size: 0.96rem; min-width: 520px; }
.guide-table thead th { text-align: left; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); background: var(--bg-2); padding: 14px 18px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.guide-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); color: var(--ink-soft); line-height: 1.5; vertical-align: top; }
.guide-table tbody tr:last-child td { border-bottom: 0; }
.guide-table td:first-child { font-family: var(--mono); font-size: 0.82rem; color: var(--ink); white-space: nowrap; }
.guide-table td.hl { color: var(--red); font-weight: 700; }
.guide-table tbody tr:hover td { background: rgba(242,64,43,0.03); }

/* light-section full component coverage */
.light-sec h1, .light-sec h2, .light-sec h3 { color: var(--on-light); }
.light-sec .eyebrow { color: var(--on-light-soft); }
.light-sec .link-arrow { color: var(--on-light); }
.light-sec .tcard { background: #fff; border-color: rgba(20,19,15,0.10); box-shadow: 0 20px 50px -34px rgba(0,0,0,0.4); }
.light-sec .tcard blockquote { color: var(--on-light); }
.light-sec .tcard .ava { background: var(--light); border-color: rgba(20,19,15,0.12); }
.light-sec .tcard .who b { color: var(--on-light); }
.light-sec .tcard .who span { color: var(--on-light-soft); }
.light-sec .owner-note { color: var(--on-light-soft); }
.light-sec .stat b { color: var(--on-light); }
.light-sec .stat span { color: var(--on-light-soft); }
.light-sec .team-item h3 { color: var(--on-light); }
.light-sec .team-item p { color: var(--on-light-soft); }
.light-sec .btn-ghost { color: var(--on-light); border-color: rgba(20,19,15,0.22); }
.light-sec .btn-ghost:hover { background: var(--on-light); color: var(--light); border-color: var(--on-light); }
.light-sec .chip { border-color: rgba(20,19,15,0.22); color: var(--on-light-soft); }
.light-sec .chip:hover { border-color: var(--on-light); color: var(--on-light); }
.light-sec .chip.active { background: var(--red); border-color: var(--red); color: #fff; }
.light-sec .exp { border-top-color: rgba(20,19,15,0.2); }
.light-sec .exp .ico, .light-sec .exp h3 { color: var(--on-light); }
.light-sec .exp p { color: var(--on-light-soft); }
.light-sec .exp .num { color: var(--red); }
.light-sec .exp:hover h3 { color: var(--red); }

/* promise / value props (light) */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 4vw, 64px); margin-top: clamp(40px, 5vw, 64px); }
.promise { border-top: 2px solid var(--on-light); padding-top: 24px; }
.promise .pn { font-family: var(--mono); font-size: 0.78rem; color: var(--red); letter-spacing: 0.12em; }
.promise h3 { font-size: clamp(1.4rem, 2.3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--on-light); margin: 16px 0 12px; }
.promise p { color: var(--on-light-soft); font-size: 1.02rem; line-height: 1.58; }

/* scroll progress + film grain */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--red); z-index: 300; }
body::after { content: ""; position: fixed; inset: 0; z-index: 250; pointer-events: none; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* hero entrance animation */
@keyframes riseIn { from { opacity: 0; transform: translateY(0.5em); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.js .hero h1 .ln { display: block; opacity: 0; animation: riseIn .95s var(--ease) forwards; }
.js .hero h1 .ln:nth-child(1) { animation-delay: .12s; }
.js .hero h1 .ln:nth-child(2) { animation-delay: .24s; }
.js .hero h1 .ln:nth-child(3) { animation-delay: .36s; }
.js .hero .sub { opacity: 0; animation: riseIn .95s var(--ease) .5s forwards; }
.js .hero-cta { opacity: 0; animation: riseIn .95s var(--ease) .64s forwards; }
.js .hero-top, .js .hero-meta { opacity: 0; animation: fadeIn 1.1s ease .85s forwards; }
.js .scroll-cue { opacity: 0; animation: fadeIn 1.1s ease 1.1s forwards; }
@media (prefers-reduced-motion: reduce) { .js .hero h1 .ln, .js .hero .sub, .js .hero-cta, .js .hero-top, .js .hero-meta, .js .scroll-cue { opacity: 1; animation: none; } }

/* ============================================================ DEEP POLISH */
/* custom scrollbar */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #2c2c33; border-radius: 10px; border: 3px solid var(--bg); }
  ::-webkit-scrollbar-thumb:hover { background: var(--red); }
}
html { scrollbar-width: thin; scrollbar-color: #2c2c33 var(--bg); }

/* keyboard focus rings */
a:focus-visible, button:focus-visible, .chip:focus-visible, .chip-select:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .dest-row:focus-visible, .jcard:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }

/* journey card hover */
.jcard { transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.jcard:hover { transform: translateY(-6px); box-shadow: 0 36px 70px -34px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.18); }
.jcard:hover .link-arrow { gap: 13px; }
.jcard:hover .link-arrow .arr { transform: translateX(3px); }
.jcard h3 { text-shadow: 0 2px 20px rgba(0,0,0,0.55); }
.jcard p, .jcard .price { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }

/* testimonial + gcard hover */
.tcard { transition: transform .45s var(--ease), border-color .45s, box-shadow .45s; }
.tcard:hover { transform: translateY(-4px); border-color: var(--line-2); }
.light-sec .tcard:hover { border-color: rgba(20,19,15,0.16); box-shadow: 0 32px 64px -36px rgba(0,0,0,0.5); }
.gcard:hover { box-shadow: 0 30px 60px -28px rgba(0,0,0,0.28); }

/* experiences hover */
.exp .ico { transition: transform .4s var(--ease), color .3s; }
.exp:hover { border-top-color: var(--red); }
.light-sec .exp:hover { border-top-color: var(--red); }
.exp:hover .ico { transform: translateX(5px); }

/* destination row hover wash */
.dest-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(242,64,43,0.08), transparent 42%); opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.dest-row:hover::before { opacity: 1; }

/* animated accent lines (stats + promise) */
.stat { border-top: none; position: relative; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform-origin: left; }
.promise { border-top: none; position: relative; }
.promise::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--on-light); transform-origin: left; }
.js .stats .stat::before, .js .promise::before { transform: scaleX(0); transition: transform .9s var(--ease); }
.js .stats.in .stat::before { transform: scaleX(1); }
.js .stats.in .stat:nth-child(2)::before { transition-delay: .1s; }
.js .stats.in .stat:nth-child(3)::before { transition-delay: .2s; }
.js .stats.in .stat:nth-child(4)::before { transition-delay: .3s; }
.js .promise.in::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .js .stat::before, .js .promise::before { transform: scaleX(1) !important; } }

/* footer wordmark subtle hover sheen */
.footer-wm { transition: opacity .4s; }
.site-footer:hover .footer-wm { opacity: 0.92; }

/* responsive */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr; } .team-visual { min-height: 360px; }
  .stats { grid-template-columns: repeat(2, 1fr); } .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); } .tgrid { grid-template-columns: 1fr; }
  .jcard.span8, .jcard.span6, .jcard { grid-column: span 6; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-wrap { grid-template-columns: 1fr; } .aside-card { position: static; }
}
@media (max-width: 720px) {
  .nav, .header-actions .btn, .header-actions .lang { display: none; }
  .nav-toggle { display: flex; } .site-header .bar { height: 64px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); } .hero-meta { display: none; } .scroll-cue { display: none; }
  .j-grid { grid-template-columns: 1fr; } .jcard, .jcard.span6, .jcard.span8 { grid-column: 1 / -1; min-height: 400px; }
  .tours-grid { grid-template-columns: 1fr; } .exp-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; } .guide-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; } .statement .foot { flex-direction: column; gap: 20px; }
  body { font-size: 16px; }
}
@media (max-width: 480px) { .hero h1 { font-size: clamp(2.4rem, 12vw, 3.4rem); } .stats { grid-template-columns: 1fr; } }

/* ============================================================ TYPOGRAPHIC + ANCHOR POLISH */
[id] { scroll-margin-top: 92px; }
p, .lede, .hero .sub, .jcard p, .promise p, .gcard p, .exp p, .team-item p { text-wrap: pretty; }
.section-head h2, .promise h3, .gcard h3, .exp h3, .tcard blockquote, .team-item h3, .page-hero h1 { text-wrap: balance; }
.marquee { -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.dest-hover { box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.12); }
.team-visual { box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6); }

/* ============================================================ FAQ ACCORDION */
.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.light-sec .faq { border-top-color: rgba(20,19,15,0.14); }
.faq-item { border-bottom: 1px solid var(--line); }
.light-sec .faq-item { border-bottom-color: rgba(20,19,15,0.14); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 26px 0; text-align: left; font-family: var(--display); font-weight: 700; font-size: clamp(1.08rem, 1.8vw, 1.45rem); letter-spacing: -0.01em; color: var(--ink); transition: color .25s; }
.light-sec .faq-q { color: var(--on-light); }
.faq-q:hover { color: var(--red); }
.faq-q .plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-q .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-q .plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 0 28px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; max-width: 76ch; }
.light-sec .faq-a-inner { color: var(--on-light-soft); }
.faq-a-inner a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
