﻿/* ============================================================
   ANJIA  //  Chongqing flagship site
   Cyberpunk-premium theme.  100% local, no external CDN/fonts.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root{
  --bg:        #07070e;
  --bg-2:      #0c0c17;
  --panel:     #11111f;
  --panel-2:   #161628;
  --line:      rgba(140,160,220,.16);
  --line-soft: rgba(140,160,220,.10);

  --ink:       #eaf0ff;
  --muted:     #9aa3c4;
  --muted-2:   #8a93b8;  /* #80 a11y: lifted from #6f7796 to clear WCAG AA on dark cards */

  --cyan:      #18e0ff;
  --magenta:   #ff2d8f;
  --purple:    #b15cff;
  --gold:      #ffd36b;

  --grad:      linear-gradient(100deg, var(--cyan), var(--magenta));
  --grad-soft: linear-gradient(100deg, rgba(24,224,255,.18), rgba(255,45,143,.18));

  --maxw: 1180px;
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,.8);
  --glow-cyan: 0 0 24px rgba(24,224,255,.45);
  --glow-mag:  0 0 24px rgba(255,45,143,.40);

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft JhengHei", "Noto Sans CJK SC", sans-serif;
  --mono: "Cascadia Code", "Consolas", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- Reset ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
:focus-visible{ outline:2px solid var(--cyan); outline-offset:4px; }
.skip-link{ position:fixed; left:16px; top:12px; z-index:100; transform:translateY(-140%); background:var(--cyan); color:#05050a; padding:10px 14px; border-radius:8px; font-weight:800; transition:transform .2s ease; }
.skip-link:focus{ transform:none; }
section{ position:relative; }

/* subtle global grid backdrop */
body::before{
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(140,160,220,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,160,220,.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.section{ padding:96px 0; }
.section.tight{ padding:64px 0; }
.center{ text-align:center; }
.grid{ display:grid; gap:24px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--mono); font-size:12.5px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--cyan);
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--grad); display:inline-block; }

h1,h2,h3{ line-height:1.12; letter-spacing:-.02em; font-weight:800; }
h2.title{ font-size:clamp(28px,4.4vw,46px); margin-bottom:14px; }
.lead{ color:var(--muted); font-size:clamp(15px,1.6vw,18px); max-width:62ch; }
.section-head{ margin-bottom:48px; }
.section-head .lead{ margin-top:6px; }
.grad-text{
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  padding:14px 26px; border-radius:999px; font-weight:700; font-size:15px;
  transition:transform .18s ease, box-shadow .25s ease, background .25s ease; white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--grad); color:#08080f; box-shadow:var(--glow-cyan); }
.btn-primary:hover{ box-shadow:0 0 34px rgba(24,224,255,.6); transform:translateY(-2px); }
.btn-ghost{ border:1px solid var(--line); color:var(--ink); background:rgba(255,255,255,.02); }
.btn-ghost:hover{ border-color:var(--cyan); box-shadow:var(--glow-cyan); transform:translateY(-2px); }
.btn-wa{ background:#1faa53; color:#fff; }
.btn-wa:hover{ box-shadow:0 0 26px rgba(31,170,83,.55); transform:translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(14px); background:rgba(7,7,14,.66);
  border-bottom:1px solid transparent; transition:border-color .3s, background .3s;
}
.nav.scrolled{ border-bottom-color:var(--line); background:rgba(7,7,14,.86); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:70px; }
.brand{ display:flex; align-items:center; gap:11px; font-weight:800; letter-spacing:.04em; }
.brand .dot{ width:11px; height:11px; border-radius:50%; background:var(--grad); box-shadow:var(--glow-mag); }
.brand b{ font-size:19px; white-space:nowrap; }
.brand span{ font-family:var(--mono); font-size:10.5px; letter-spacing:.2em; color:var(--muted-2); display:block; margin-top:-3px; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:14.5px; color:var(--muted); font-weight:600; transition:color .2s; position:relative; }
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; background:var(--grad); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; width:42px; height:42px; border:1px solid var(--line); border-radius:10px; }
.nav-toggle span{ display:block; width:18px; height:2px; background:var(--ink); margin:3px auto; transition:.25s; }
.nav-toggle.open span:nth-child(1){ transform:translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:clamp(620px,78vh,780px); display:flex; align-items:center;
  padding:112px 0 72px;
  background:
    linear-gradient(180deg, rgba(7,7,14,.55) 0%, rgba(7,7,14,.78) 55%, var(--bg) 100%),
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(255,45,143,.22), transparent 60%),
    url("../images/cq-hero.jpg") center/cover no-repeat;
}
.hero::after{ /* scanline sheen */
  content:""; position:absolute; inset:0; pointer-events:none;
  background:repeating-linear-gradient(180deg, transparent 0 3px, rgba(0,0,0,.05) 3px 4px);
  mix-blend-mode:overlay;
}
.hero-inner{ max-width:760px; }
.hero h1{
  font-size:clamp(36px,6vw,68px); margin:18px 0 20px;
  text-shadow:0 0 40px rgba(24,224,255,.25);
}
.hero h1 .glow{ color:var(--cyan); text-shadow:0 0 26px rgba(24,224,255,.7); }
.hero p.lead{ font-size:clamp(16px,1.8vw,20px); color:#cdd5ee; max-width:60ch; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
/* ---------- Stat strip ---------- */
.stats{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-2); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ padding:34px 22px; text-align:center; border-left:1px solid var(--line-soft); }
.stat:first-child{ border-left:none; }
.stat .num{ font-size:40px; font-weight:800; line-height:1; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl{ margin-top:8px; font-size:13.5px; color:var(--muted); }

/* ---------- Feature / story split ---------- */
.split{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.split .media{ position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); }
.split .media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3.4; transition:transform .6s ease; }
.split .media:hover img{ transform:scale(1.05); }
.split .media .frame{ position:absolute; inset:0; box-shadow:inset 0 0 0 1px rgba(24,224,255,.25), inset 0 0 60px rgba(255,45,143,.12); pointer-events:none; }
.split .media .tag{ position:absolute; left:16px; bottom:16px; font-family:var(--mono); font-size:11.5px; letter-spacing:.16em; color:var(--cyan); background:rgba(7,7,14,.7); border:1px solid var(--line); padding:6px 11px; border-radius:8px; }
.feature-list{ margin-top:24px; display:grid; gap:14px; }
.feature-list li{ display:flex; gap:13px; color:var(--muted); }
.feature-list .ic{ flex:0 0 auto; width:24px; height:24px; border-radius:7px; background:var(--grad-soft); display:grid; place-items:center; color:var(--cyan); }
.feature-list b{ color:var(--ink); }

/* ---------- Experience cards ---------- */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.xcard{
  position:relative; border-radius:var(--radius); overflow:hidden; min-height:300px;
  border:1px solid var(--line); background:var(--panel);
  display:flex; flex-direction:column; justify-content:flex-end;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
  isolation:isolate;
}
.xcard:hover{ transform:translateY(-6px); border-color:rgba(24,224,255,.5); box-shadow:0 30px 60px -30px rgba(24,224,255,.35); }
.xcard .bg{ position:absolute; inset:0; z-index:-2; }
.xcard .bg img{ width:100%; height:100%; object-fit:cover; }
.xcard .bg.placeholder{ background:
   radial-gradient(120% 90% at 20% 10%, rgba(177,92,255,.5), transparent 55%),
   radial-gradient(120% 90% at 90% 90%, rgba(24,224,255,.45), transparent 55%),
   linear-gradient(150deg,#15122a,#0b1320); }
.xcard::after{ content:""; position:absolute; inset:0; z-index:-1;
   background:linear-gradient(180deg, transparent 25%, rgba(7,7,14,.55) 60%, rgba(7,7,14,.94) 100%); }
.xcard .body{ padding:22px; }
.xcard .kicker{ font-family:var(--mono); font-size:11px; letter-spacing:.18em; color:var(--cyan); text-transform:uppercase; }
.xcard h3{ font-size:21px; margin:7px 0 8px; }
.xcard p{ font-size:14px; color:#c5cce6; }
.xcard .pin{ position:absolute; top:14px; left:14px; z-index:1; font-family:var(--mono); font-size:11px; letter-spacing:.08em;
   background:rgba(7,7,14,.65); border:1px solid var(--line); padding:5px 10px; border-radius:7px; color:var(--gold); }
.badge-unesco{ color:var(--gold); border-color:rgba(255,211,107,.4); }

/* ---------- Tour cards ---------- */
.tours{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tour{
  border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--panel),var(--bg-2));
  padding:28px; display:flex; flex-direction:column; transition:transform .25s, border-color .25s, box-shadow .25s;
}
.tour:hover{ transform:translateY(-5px); border-color:rgba(255,45,143,.45); box-shadow:0 30px 60px -30px rgba(255,45,143,.3); }
.tour .dur{ font-family:var(--mono); font-size:12px; letter-spacing:.14em; color:var(--magenta); text-transform:uppercase; }
.tour h3{ font-size:22px; margin:9px 0 10px; }
.tour p{ color:var(--muted); font-size:14.5px; flex-grow:0; }
.tour .hl{ margin:18px 0; display:grid; gap:9px; }
.tour .hl li{ font-size:13.5px; color:#c5cce6; display:flex; gap:10px; align-items:flex-start; }
.tour .hl li::before{ content:""; flex:0 0 auto; width:7px; height:7px; margin-top:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 12px rgba(24,224,255,.65); }
.tour .foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:18px; border-top:1px solid var(--line-soft); }
.tour .price{ font-size:13px; color:var(--muted); }
.tour .price b{ display:block; font-size:24px; color:var(--ink); }
.tour .price b span{ font-size:13px; color:var(--muted); font-weight:500; }

/* ---------- Itinerary (tours page) ---------- */
.journey{ border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--panel),var(--bg-2)); overflow:hidden; margin-bottom:34px; }
.journey-head{ display:grid; grid-template-columns:1.4fr .6fr; gap:20px; padding:30px; border-bottom:1px solid var(--line-soft); align-items:center; }
.journey-head .dur{ font-family:var(--mono); font-size:12px; letter-spacing:.14em; color:var(--magenta); text-transform:uppercase; }
.journey-head h3{ font-size:clamp(22px,3vw,30px); margin:8px 0 10px; }
.journey-head p{ color:var(--muted); font-size:15px; }
.journey-head .pricebox{ text-align:right; }
.journey-head .pricebox .from{ font-size:12px; color:var(--muted); font-family:var(--mono); letter-spacing:.1em; }
.journey-head .pricebox .amt{ font-size:34px; font-weight:800; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.journey-head .pricebox .per{ font-size:12px; color:var(--muted); }
.days{ padding:14px 30px 8px; }
.day{ display:grid; grid-template-columns:84px 1fr; gap:18px; padding:18px 0; border-bottom:1px solid var(--line-soft); }
.day:last-child{ border-bottom:none; }
.day .d{ font-family:var(--mono); font-size:12px; letter-spacing:.1em; color:var(--cyan); padding-top:3px; }
.day .d b{ display:block; font-size:26px; color:var(--ink); }
.day h4{ font-size:17px; margin-bottom:5px; }
.day p{ color:var(--muted); font-size:14px; }
.incl{ display:grid; grid-template-columns:1fr 1fr; gap:8px 30px; padding:22px 30px 30px; }
.incl .col h5{ font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); font-family:var(--mono); margin-bottom:10px; }
.incl li{ font-size:13.5px; color:#c5cce6; display:flex; gap:9px; margin-bottom:6px; }
.incl .yes::before{ content:"+"; color:var(--cyan); font-weight:800; }
.incl .no::before{ content:"-"; color:var(--muted-2); font-weight:800; }
.journey-foot{ padding:0 30px 30px; }

/* ---------- Why / value band ---------- */
.values{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value{ border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--panel); padding:26px; transition:border-color .25s, transform .25s; }
.value:hover{ border-color:rgba(24,224,255,.4); transform:translateY(-4px); }
.value .ic{ width:46px; height:46px; border-radius:12px; background:var(--grad-soft); display:grid; place-items:center; color:var(--cyan); margin-bottom:16px; }
.value h3{ font-size:18px; margin-bottom:8px; }
.value p{ color:var(--muted); font-size:14px; }

/* ---------- Trust band ---------- */
.trust{ background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:center; }
.trust-item{ text-align:center; padding:14px; }
.trust-item .big{ font-size:15px; font-weight:700; color:var(--ink); }
.trust-item .sm{ font-size:12.5px; color:var(--muted); font-family:var(--mono); letter-spacing:.06em; }

/* ---------- FAQ ---------- */
.faq{ max-width:820px; margin:0 auto; }
.qa{ border:1px solid var(--line); border-radius:var(--radius-sm); margin-bottom:12px; background:var(--panel); overflow:hidden; }
.qa button{ width:100%; text-align:left; padding:20px 22px; display:flex; justify-content:space-between; align-items:center; gap:18px; font-size:16px; font-weight:600; }
.qa button .pm{ flex:0 0 auto; color:var(--cyan); font-size:22px; transition:transform .25s; }
.qa.open button .pm{ transform:rotate(45deg); }
.qa .ans{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.qa .ans p{ padding:0 22px 20px; color:var(--muted); font-size:14.5px; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; overflow:hidden; border-radius:var(--radius); border:1px solid var(--line);
   background:linear-gradient(110deg, rgba(24,224,255,.12), rgba(255,45,143,.12)), var(--panel);
   padding:56px 40px; text-align:center; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 120%, rgba(177,92,255,.3), transparent 60%); }
.cta-band h2{ font-size:clamp(26px,4vw,40px); position:relative; }
.cta-band p{ color:var(--muted); margin:12px auto 26px; max-width:54ch; position:relative; }
.cta-band .hero-cta{ justify-content:center; position:relative; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero{ padding:130px 0 56px; border-bottom:1px solid var(--line);
   background:linear-gradient(180deg, rgba(255,45,143,.08), transparent 70%); }
.page-hero h1{ font-size:clamp(32px,5vw,54px); margin:14px 0 14px; }

/* ---------- Forms (contact) ---------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:44px; align-items:start; }
.form{ border:1px solid var(--line); border-radius:var(--radius); background:var(--panel); padding:30px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; color:var(--muted); margin-bottom:7px; font-weight:600; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:10px; background:var(--bg); border:1px solid var(--line);
  color:var(--ink); font-family:inherit; font-size:15px; transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--cyan); box-shadow:var(--glow-cyan); }
.field textarea{ min-height:120px; resize:vertical; }
.field.two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:0; }
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ display:inline-flex; align-items:center; gap:7px; padding:9px 14px; border:1px solid var(--line); border-radius:999px; font-size:13.5px; color:var(--muted); cursor:pointer; transition:.2s; }
.chip input{ accent-color:var(--cyan); }
.chip:hover{ border-color:var(--cyan); color:var(--ink); }
.form-note{ font-size:12.5px; color:var(--muted-2); margin-top:10px; }
.form-ok{ display:none; padding:16px; border-radius:10px; background:var(--grad-soft); border:1px solid rgba(24,224,255,.35); color:var(--ink); font-size:14.5px; margin-bottom:18px; }
.contact-side .card{ border:1px solid var(--line); border-radius:var(--radius); background:var(--panel); padding:26px; margin-bottom:18px; }
.contact-side h3{ font-size:18px; margin-bottom:14px; }
.contact-row{ display:flex; gap:13px; align-items:flex-start; margin-bottom:15px; font-size:14.5px; }
.contact-row .ic{ flex:0 0 auto; width:38px; height:38px; border-radius:10px; background:var(--grad-soft); display:grid; place-items:center; color:var(--cyan); }
.contact-row .lbl{ font-size:12px; color:var(--muted); display:block; }
.contact-row b{ font-size:15px; }

/* ---------- Footer ---------- */
.footer{ border-top:1px solid var(--line); background:var(--bg-2); padding:56px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:30px; }
.footer .brand{ margin-bottom:14px; }
.footer p.about{ color:var(--muted); font-size:14px; max-width:34ch; }
.footer .endorse{ display:inline-block; margin-top:14px; font-family:var(--mono); font-size:11.5px; letter-spacing:.08em; color:var(--cyan); border:1px solid var(--line); padding:6px 11px; border-radius:8px; }
.footer h4{ font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); font-family:var(--mono); margin-bottom:16px; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:var(--muted); font-size:14px; transition:color .2s; }
.footer-links a:hover{ color:var(--cyan); }
.footer-contact li{ color:var(--muted); font-size:14px; margin-bottom:11px; display:flex; gap:10px; align-items:center; }
.footer-bottom{ border-top:1px solid var(--line-soft); margin-top:40px; padding-top:22px; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; color:var(--muted-2); font-size:12.5px; }
.footer-bottom .legal{ max-width:70ch; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .split{ grid-template-columns:1fr; gap:34px; }
  .cards, .tours, .values{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .stat:nth-child(3){ border-left:none; }
  .stat:nth-child(odd){ border-left:none; }
  .trust-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .journey-head{ grid-template-columns:1fr; }
  .journey-head .pricebox{ text-align:left; }
  .hero{ background-attachment:scroll; }
}
@media (max-width: 900px){
  .nav-links, .nav-cta .btn{ display:none; }
  .nav-toggle{ display:block; }
  .nav-links.show{
    display:flex; flex-direction:column; gap:0; position:absolute; top:70px; left:0; right:0;
    background:rgba(7,7,14,.97); border-bottom:1px solid var(--line); padding:8px 24px 18px;
  }
  .nav-links.show a{ padding:14px 0; border-bottom:1px solid var(--line-soft); width:100%; }
  .nav-links.show a.active::after{ display:none; }
}
@media (max-width: 640px){
  .wrap{ padding:0 18px; }
  .hero{ min-height:auto; padding:104px 0 72px; background-position:center top; }
  .hero-cta .btn{ width:100%; justify-content:center; }
  .btn{ white-space:normal; text-align:center; }
  .section{ padding:64px 0; }
  .cards, .tours, .values, .stats-grid, .trust-grid, .footer-grid, .incl, .field.two{ grid-template-columns:1fr; }
  .stat{ border-left:none; border-top:1px solid var(--line-soft); }
  .stat:first-child{ border-top:none; }
  .day{ grid-template-columns:60px 1fr; gap:12px; }
  .cta-band{ padding:40px 22px; }
}

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




/* ---------- Conversion additions ---------- */
.proof-bar{ background:rgba(12,12,23,.96); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.proof-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.proof-item{ padding:18px 20px; border-left:1px solid var(--line-soft); }
.proof-item:first-child{ border-left:none; }
.proof-item span{ display:block; color:var(--muted); font-size:12px; font-family:var(--mono); letter-spacing:.08em; text-transform:uppercase; }
.proof-item b{ display:block; margin-top:4px; color:var(--ink); font-size:15px; }
.founder-perks{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:20px 0 4px; }
.founder-perks span{ border:1px solid var(--line); background:rgba(7,7,14,.44); border-radius:999px; padding:8px 12px; color:#c5cce6; font-size:13px; }
.compact-faq{ max-width:900px; }
.floating-cta{ position:fixed; right:18px; bottom:18px; z-index:70; display:flex; gap:8px; padding:8px; border:1px solid var(--line); border-radius:999px; background:rgba(7,7,14,.82); backdrop-filter:blur(14px); box-shadow:0 18px 50px -24px rgba(0,0,0,.9); }
.floating-cta a{ display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 16px; border-radius:999px; font-size:13px; font-weight:800; }
.float-wa{ background:#1faa53; color:#fff; }
.float-plan{ background:var(--grad); color:#08080f; }
@media (max-width: 960px){
  .proof-grid{ grid-template-columns:1fr 1fr; }
  .proof-item:nth-child(odd){ border-left:none; }
  .proof-item:nth-child(n+3){ border-top:1px solid var(--line-soft); }
}
@media (max-width: 640px){
  body{ padding-bottom:70px; }
  .proof-grid{ grid-template-columns:1fr; }
  .proof-item{ border-left:none; border-top:1px solid var(--line-soft); padding:15px 0; }
  .proof-item:first-child{ border-top:none; }
  .floating-cta{ left:12px; right:12px; bottom:12px; justify-content:stretch; border-radius:8px; }
  .floating-cta a{ flex:1; border-radius:8px; }
  .founder-perks{ justify-content:stretch; }
  .founder-perks span{ width:100%; text-align:center; }
}

/* ---------- UX expansion blocks ---------- */
.planner-flow{ background:var(--bg); border-top:1px solid var(--line); }
.process-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.process-step{ position:relative; border:1px solid var(--line); border-radius:8px; background:linear-gradient(180deg,var(--panel),rgba(12,12,23,.82)); padding:26px; min-height:190px; }
.process-step::after{ content:""; position:absolute; left:26px; right:26px; bottom:0; height:2px; background:var(--grad); opacity:.8; }
.step-num{ font-family:var(--mono); font-size:12px; letter-spacing:.16em; color:var(--cyan); }
.process-step h3{ font-size:20px; margin:14px 0 8px; }
.process-step p{ color:var(--muted); font-size:14px; }
.route-chooser{ background:var(--bg); border-bottom:1px solid var(--line); }
.route-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.route-tile{ border:1px solid var(--line); border-radius:8px; background:linear-gradient(180deg,var(--panel),var(--bg-2)); padding:22px; min-height:210px; transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.route-tile:hover{ transform:translateY(-4px); border-color:rgba(24,224,255,.45); box-shadow:0 22px 46px -28px rgba(24,224,255,.45); }
.route-tile span{ display:inline-block; font-family:var(--mono); color:var(--magenta); font-size:11px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:12px; }
.route-tile h3{ font-size:19px; margin-bottom:9px; }
.route-tile p{ color:var(--muted); font-size:13.5px; }
.mini-timeline{ display:grid; gap:14px; }
.mini-timeline div{ display:grid; grid-template-columns:34px 1fr; gap:12px; align-items:start; }
.mini-timeline span{ width:34px; height:34px; border-radius:8px; display:grid; place-items:center; background:var(--grad-soft); color:var(--cyan); font-family:var(--mono); font-weight:800; }
.mini-timeline p{ color:var(--muted); font-size:14px; }
.mini-timeline b{ color:var(--ink); }
@media (max-width: 960px){
  .process-grid{ grid-template-columns:1fr; }
  .route-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px){
  .route-grid{ grid-template-columns:1fr; }
  .process-step, .route-tile{ min-height:auto; }
}

/* ---------- Full benchmark implementation ---------- */
.sample-night{ background:linear-gradient(180deg,var(--bg),var(--bg-2)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.night-plan{ border:1px solid var(--line); border-radius:8px; background:var(--panel); padding:24px; display:grid; gap:14px; }
.night-plan div{ display:grid; grid-template-columns:72px 1fr; gap:14px; align-items:start; padding-bottom:14px; border-bottom:1px solid var(--line-soft); }
.night-plan div:last-child{ border-bottom:none; padding-bottom:0; }
.night-plan span{ font-family:var(--mono); color:var(--cyan); font-weight:800; }
.night-plan p{ color:var(--muted); font-size:14px; }
.night-plan b{ color:var(--ink); }
.service-levels{ background:var(--bg); border-top:1px solid var(--line); }
.level-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.level-card{ border:1px solid var(--line); border-radius:8px; background:linear-gradient(180deg,var(--panel),var(--bg-2)); padding:26px; }
.level-card.featured{ border-color:rgba(255,45,143,.45); box-shadow:0 24px 60px -34px rgba(255,45,143,.55); }
.level-card span{ font-family:var(--mono); color:var(--magenta); letter-spacing:.12em; text-transform:uppercase; font-size:11px; }
.level-card h3{ margin:12px 0 9px; font-size:21px; }
.level-card p{ color:var(--muted); font-size:14px; }
.journey-facts{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-bottom:1px solid var(--line-soft); background:rgba(7,7,14,.32); }
.journey-facts span{ padding:14px 18px; border-left:1px solid var(--line-soft); color:var(--muted); font-size:13px; }
.journey-facts span:first-child{ border-left:none; }
.journey-facts b{ display:block; color:var(--cyan); font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:3px; }
.proof-assets{ background:var(--bg); border-top:1px solid var(--line); }
.asset-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.asset-card{ border:1px dashed rgba(140,160,220,.32); border-radius:8px; padding:22px; background:rgba(255,255,255,.02); }
.asset-card span{ font-family:var(--mono); color:var(--cyan); font-size:12px; }
.asset-card h3{ font-size:18px; margin:10px 0 8px; }
.asset-card p{ color:var(--muted); font-size:13.5px; }
.guide-layout{ display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:30px; align-items:start; }
.guide-main{ min-width:0; max-width:100%; border:1px solid var(--line); border-radius:8px; background:var(--panel); padding:32px; }
.guide-side{ min-width:0; max-width:100%; }
.guide-main h2{ font-size:24px; margin:0 0 12px; }
.guide-main h2:not(:first-child){ margin-top:28px; }
.guide-main p, .guide-list li{ color:var(--muted); }
.guide-list{ display:grid; gap:12px; list-style:none; margin-top:12px; }
.guide-list li{ position:relative; padding-left:20px; }
.guide-list li::before{ content:""; position:absolute; left:0; top:.75em; width:7px; height:7px; border-radius:50%; background:var(--cyan); box-shadow:0 0 12px rgba(24,224,255,.55); }
.guide-cta{ margin-top:32px; border-top:1px solid var(--line-soft); padding-top:24px; }
.guide-side{ display:grid; gap:16px; position:sticky; top:92px; }
.compact-card{ border:1px solid var(--line); border-radius:8px; background:var(--panel); padding:22px; }
.compact-card h3{ font-size:18px; margin-bottom:8px; }
.compact-card p{ color:var(--muted); font-size:14px; }
@media (max-width: 960px){
  .level-grid, .asset-grid{ grid-template-columns:1fr 1fr; }
  .journey-facts{ grid-template-columns:1fr 1fr; }
  .journey-facts span:nth-child(odd){ border-left:none; }
  .journey-facts span:nth-child(n+3){ border-top:1px solid var(--line-soft); }
  .guide-layout{ grid-template-columns:1fr; }
  .guide-side{ position:static; }
}
@media (max-width: 640px){
  .level-grid, .asset-grid{ grid-template-columns:1fr; }
  .night-plan div{ grid-template-columns:1fr; gap:4px; }
  .journey-facts{ grid-template-columns:1fr; }
  .journey-facts span{ border-left:none; border-top:1px solid var(--line-soft); }
  .journey-facts span:first-child{ border-top:none; }
  .guide-main{ padding:24px; }
}
/* Printable trip brochure */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brochure-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,241,232,0.78));
  padding: 22px;
}

.brochure-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brochure-card h2,
.brochure-card h3 {
  margin: 0 0 10px;
}

.brochure-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.brochure-card li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .brochure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brochure-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .nav,
  .floating-cta,
  .btn,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section,
  .hero {
    padding: 28px 0;
  }

  .brochure-card,
  .proof-item,
  .route-card,
  .service-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
/* Official licence display */
.licence-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 32px 0 20px;
}

.licence-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 60px -38px rgba(0,0,0,0.85);
}

.licence-card a {
  display: block;
  background: #f4f2ec;
}

.licence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
}

.licence-card figcaption {
  padding: 16px 18px 18px;
}

.licence-card figcaption b,
.licence-card figcaption span {
  display: block;
}

.licence-card figcaption span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.verified-grid .asset-card {
  border-style: solid;
}

@media (max-width: 760px) {
  .licence-showcase {
    grid-template-columns: 1fr;
  }
}


/* Conversion optimization additions */
.price-guide{ background:var(--bg); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.price-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.price-card{ border:1px solid var(--line); border-radius:8px; padding:24px; background:linear-gradient(180deg,var(--panel),var(--bg-2)); }
.price-card.featured{ border-color:rgba(24,224,255,.48); box-shadow:0 24px 70px -38px rgba(24,224,255,.6); }
.price-card span,.quote-strip span{ font-family:var(--mono); color:var(--cyan); font-size:11px; letter-spacing:.11em; text-transform:uppercase; }
.price-card h3{ margin:10px 0 8px; font-size:30px; }
.price-card p,.quote-strip p{ color:var(--muted); font-size:14px; }
.price-card a{ display:inline-block; margin-top:16px; color:var(--cyan); font-weight:800; }
.quote-helper{ border:1px solid var(--line-soft); border-radius:8px; padding:14px 16px; background:rgba(24,224,255,.06); color:var(--muted); font-size:13px; }
.quote-helper b,.quote-helper span{ display:block; }
.quote-helper b{ color:var(--ink); margin-bottom:5px; }
.quote-strip{ margin:24px 0 4px; border:1px solid var(--line); border-radius:8px; background:rgba(255,255,255,.03); padding:18px; }
.quote-strip b{ display:block; margin:8px 0 4px; font-size:24px; color:var(--ink); }
.mobile-conversion-bar{ display:none; }

@media (max-width: 860px){
  .price-grid{ grid-template-columns:1fr; }
}

@media (max-width: 640px){
  .floating-cta{ display:none; }
  .mobile-conversion-bar{ position:fixed; left:0; right:0; bottom:0; z-index:80; display:grid; grid-template-columns:1fr 1fr; gap:1px; padding:8px; background:rgba(7,7,14,.94); border-top:1px solid var(--line); backdrop-filter:blur(14px); }
  .mobile-conversion-bar a{ min-height:46px; display:flex; align-items:center; justify-content:center; border-radius:8px; font-weight:900; font-size:14px; }
  .mobile-conversion-bar a:first-child{ background:#1faa53; color:#fff; }
  .mobile-conversion-bar a:last-child{ background:var(--grad); color:#08080f; }
}


/* Prototype image upgrade: temporary local visuals for review before licensed final assets. */
.journey-visual{
  height:clamp(210px,32vw,360px);
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
  overflow:hidden;
  background:#090a12;
}
.journey-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.08) contrast(1.04);
}
.journey:hover .journey-visual img{ transform:scale(1.025); transition:transform .7s ease; }
.story-grid img,
.image-card img,
.bg img{
  filter:saturate(1.08) contrast(1.04);
}
@media (max-width:700px){
  .journey-visual{ height:220px; }
}


.hotel-standard-strip{ padding-top:18px; }
.hotel-visual-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.hotel-visual{
  margin:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
}
.hotel-visual img{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.04);
}
.hotel-visual figcaption{
  padding:14px 16px 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
@media (max-width:760px){
  .hotel-visual-grid{ grid-template-columns:1fr; }
}


/* Conversion content round */
.simplified-form .field{ margin-bottom:18px; }
.response-helper{ margin:4px 0 18px; }
.response-card{ border-color:rgba(24,224,255,.42); box-shadow:0 24px 70px -42px rgba(24,224,255,.55); }
.price-explainer{ margin:30px 0; border:1px solid var(--line); border-radius:8px; padding:22px; background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02)); }
.price-explainer h2{ margin:8px 0 16px; font-size:clamp(22px,3vw,32px); }
.price-tier-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.price-tier-grid div{ border:1px solid var(--line-soft); border-radius:8px; padding:16px; background:rgba(7,7,14,.35); }
.price-tier-grid b,.price-tier-grid strong{ display:block; }
.price-tier-grid b{ color:var(--cyan); font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.price-tier-grid strong{ margin:7px 0; color:var(--ink); font-size:18px; }
.price-tier-grid p,.price-note{ color:var(--muted); font-size:14px; line-height:1.7; }
.price-note{ margin:16px 0 0; }
.trust-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin:24px 0; }
.trust-grid div{ border:1px solid var(--line-soft); border-radius:8px; padding:18px; background:rgba(255,255,255,.035); }
.trust-grid b{ display:block; color:var(--ink); margin-bottom:6px; }
.trust-grid p{ margin:0; color:var(--muted); font-size:14px; line-height:1.7; }
.content-table{ width:100%; border-collapse:collapse; margin:22px 0 28px; border:1px solid var(--line); border-radius:8px; overflow:hidden; display:table; }
.content-table th,.content-table td{ border:1px solid var(--line-soft); padding:13px 14px; text-align:left; vertical-align:top; font-size:14px; line-height:1.55; }
.content-table th{ color:var(--cyan); font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; background:rgba(24,224,255,.06); }
.content-table td{ color:var(--muted); }
.text-link{ display:inline-block; margin-top:14px; color:var(--cyan); font-weight:800; }
@media (max-width:760px){
  .price-tier-grid,.trust-grid{ grid-template-columns:1fr; }
  .content-table{ display:block; overflow-x:auto; white-space:normal; }
}


.price-tier-grid.two-tier{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (max-width:760px){
  .price-tier-grid.two-tier{ grid-template-columns:1fr; }
}


.local-dmc-note{
  margin:30px 0;
  border:1px solid rgba(24,224,255,.34);
  border-radius:8px;
  padding:22px;
  background:linear-gradient(180deg,rgba(24,224,255,.08),rgba(255,255,255,.025));
}
.local-dmc-note h2{ margin:8px 0 10px; }
.local-dmc-note p{ color:var(--muted); line-height:1.75; margin:0; }
.moat-link-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:22px 0 0;
}
.moat-link-grid a{
  display:block;
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:16px;
  background:rgba(255,255,255,.035);
  color:var(--ink);
}
.moat-link-grid span{ display:block; color:var(--cyan); font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:6px; }
.moat-link-grid b{ display:block; margin-bottom:6px; }
.moat-link-grid p{ margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
@media (max-width:860px){ .moat-link-grid{ grid-template-columns:1fr; } }

/* ===== Real office & team photos (added 2026-06-29) ===== */
.real-grid{ display:grid; gap:18px; margin-top:8px; }
.real-grid.office{ grid-template-columns:repeat(3,1fr); }
.real-grid.team{ grid-template-columns:repeat(4,1fr); }
.photo-card{ position:relative; margin:0; border:1px solid var(--line); border-radius:8px; overflow:hidden; background:var(--panel); box-shadow:0 22px 60px -38px rgba(0,0,0,.85); }
.photo-card img{ display:block; width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.photo-card:hover img{ transform:scale(1.04); }
.photo-card figcaption{ position:absolute; left:0; right:0; bottom:0; padding:16px 14px 12px; background:linear-gradient(to top, rgba(7,7,14,.92), rgba(7,7,14,0)); }
.photo-card figcaption b{ display:block; color:var(--ink); font-size:14px; }
.photo-card figcaption span{ display:block; margin-top:3px; color:var(--cyan); font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; }
.real-grid.office .photo-card img{ aspect-ratio:4/3; }
.real-grid.team .photo-card img{ aspect-ratio:3/4; }
@media(max-width:820px){
  .real-grid.office{ grid-template-columns:1fr 1fr; }
  .real-grid.team{ grid-template-columns:repeat(2,1fr); }
}

/* gallery (guests) + fleet (vehicles) - added 2026-06-29 round2 */
.real-grid.gallery{ grid-template-columns:repeat(4,1fr); }
.real-grid.gallery .photo-card img{ aspect-ratio:1/1; }
.real-grid.fleet{ grid-template-columns:repeat(3,1fr); }
.real-grid.fleet .photo-card img{ aspect-ratio:4/3; }
@media(max-width:820px){
  .real-grid.gallery{ grid-template-columns:repeat(2,1fr); }
  .real-grid.fleet{ grid-template-columns:1fr 1fr; }
}

/* ============================================================
   #80 Accessibility tuning (2026-06-29) - keep cyberpunk DNA,
   fix the senior-readability defects from the 10-expert roundtable.
   ref: _workflow-outputs/anjia-cyberpunk-senior-roundtable.md
   ============================================================ */

/* Fix 4: primary descriptive copy >= 16px (body base already 16px) */
body{ font-size:16px; }
.lead{ font-size:clamp(16px,1.6vw,18px); }

/* Fix 3a: lift the smallest mono tech-labels off 11px (decorative, keep the look) */
.eyebrow{ font-size:13px; }
.xcard .kicker,.tour .dur,.journey-head .dur,.route-tile span,.level-card span,
.price-card span,.quote-strip span,.proof-item span,.price-tier-grid b,
.moat-link-grid span,.journey-facts b{ font-size:13px; }

/* Fix 3b: informational labels -> sentence case + readable size (drop ALL-CAPS) */
.footer h4,.incl .col h5,.content-table th{ text-transform:none; font-size:14px; letter-spacing:.04em; }

/* Fix 2: soften text glow (halation for cataract/astigmatism) - faint decorative trace only */
.hero h1{ text-shadow:0 0 22px rgba(24,224,255,.13); }
.hero h1 .glow{ text-shadow:0 0 16px rgba(24,224,255,.42); }

/* ============================================================
   #80 mid-tier (2026-06-29): light reading panel for conversion zones
   (dark ambient + light transaction - Bulgari/Black Tomato pattern).
   Pilot = contact form. Add class "read-light" to convert a block.
   ============================================================ */
.form.read-light{
  background:#f6f7fb;
  border:1px solid rgba(120,140,200,.35);
  box-shadow:0 26px 64px -30px rgba(0,0,0,.9);
  position:relative; overflow:hidden;
}
.form.read-light::before{ content:""; position:absolute; left:0; right:0; top:0; height:3px; background:var(--grad); }
.read-light .field label{ color:#333a4d; }
.read-light .field input,.read-light .field select,.read-light .field textarea{
  background:#ffffff; color:#15161e; border:1.5px solid #c2c8d8;
}
.read-light .field input::placeholder,.read-light .field textarea::placeholder{ color:#6f7588; }
.read-light .field input:focus,.read-light .field select:focus,.read-light .field textarea:focus{
  border-color:#0bb6d6; box-shadow:0 0 0 3px rgba(24,224,255,.22);
}
.read-light .quote-helper,.read-light .response-helper{ background:#eef1f8; border:1px solid #d3d9e8; color:#3a3d4d; }
.read-light .quote-helper b{ color:#15161e; }
.read-light .form-note{ color:#5b6173; }

/* #80 mid-tier rollout (2026-06-29): extend .read-light to pricing + credential cards */
.price-card.read-light,.asset-card.read-light{
  background:#f6f7fb; color:#23263a;
  border:1px solid rgba(120,140,200,.32);
  position:relative; overflow:hidden;
}
.price-card.read-light::before,.asset-card.read-light::before{
  content:""; position:absolute; left:0; right:0; top:0; height:3px; background:var(--grad);
}
.read-light h2,.read-light h3,.read-light h4,.read-light h5{ color:#14151f; }
.read-light p,.read-light li{ color:#3a3d4d; }
.read-light a:not(.btn){ color:#0a5fb4; font-weight:700; }
.read-light .grad-text{ background:none; -webkit-text-fill-color:#14151f; color:#14151f; }
.price-card.read-light span,.asset-card.read-light span{ color:#2f4fa0; }

/* ============================================================
   #81 Language switcher (client-side i18n: EN / Simplified / Traditional)
   Injected into .nav-cta by js/i18n.js. Cyberpunk-matched.
   ============================================================ */
.lang-switch{ position:relative; flex:none; }
.lang-btn{
  display:inline-flex; align-items:center; gap:7px;
  height:38px; padding:0 12px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.02);
  color:var(--muted); font-family:var(--mono); font-size:12.5px; letter-spacing:.04em;
  transition:border-color .2s, color .2s, box-shadow .25s;
}
.lang-btn:hover,.lang-switch.open .lang-btn{ color:var(--ink); border-color:var(--cyan); box-shadow:var(--glow-cyan); }
.lang-globe{ color:var(--cyan); flex:none; display:block; }
.lang-cur{ font-weight:700; }
.lang-caret{ color:var(--muted-2); flex:none; transition:transform .2s; }
.lang-switch.open .lang-caret{ transform:rotate(180deg); }
.lang-menu{
  position:absolute; top:calc(100% + 10px); right:0; min-width:172px;
  display:none; flex-direction:column; padding:6px; gap:2px;
  background:rgba(12,12,23,.98); border:1px solid var(--line); border-radius:12px;
  box-shadow:var(--shadow); backdrop-filter:blur(14px); z-index:60;
}
.lang-switch.open .lang-menu{ display:flex; }
.lang-menu button{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  width:100%; padding:10px 12px; border-radius:8px;
  color:var(--muted); font-size:14px; font-weight:600; text-align:left; line-height:1.3;
  transition:background .15s, color .15s;
}
.lang-menu button:hover{ background:rgba(255,255,255,.05); color:var(--ink); }
.lang-menu button.active{ color:var(--ink); background:var(--grad-soft); }
.lang-menu button.active::after{ content:"\2713"; color:var(--cyan); font-weight:800; font-size:13px; }
@media (max-width: 900px){
  .lang-btn{ height:42px; }
}
@media (max-width: 360px){
  .lang-cur{ display:none; }
}

/* ============================================================
   #80 mid-tier (cont.): light reading panel for the day-by-day
   itinerary block (.days). Dark journey card + light inset reading
   zone with a neon top edge - Bulgari/Black Tomato double layer.
   Senior-readable dark text on light; reversible (one class on .days).
   ============================================================ */
.days.read-light{
  background:#f6f7fb; color:#23263a;
  margin:18px 22px 12px; padding:6px 22px;
  border:1px solid rgba(120,140,200,.32); border-radius:10px;
  position:relative; overflow:hidden;
  box-shadow:0 18px 44px -28px rgba(0,0,0,.85);
}
.days.read-light::before{ content:""; position:absolute; left:0; right:0; top:0; height:3px; background:var(--grad); }
.days.read-light .day{ border-bottom-color:rgba(120,140,200,.22); }
.days.read-light .day .d{ color:#2f4fa0; }     /* DAY label -> readable blue accent */
.days.read-light .day .d b{ color:#14151f; }   /* big day number -> near-black */
/* h4/p inherit dark colors from the generic .read-light rules above */
@media (max-width: 640px){
  .days.read-light{ margin:14px 10px 10px; padding:4px 14px; }
}
