:root {
  --canvas: #f7f6f2;
  --paper: #eeebe5;
  --paper-2: #e4dfd8;
  --warm: #d5cbbf;
  --ink: #272621;
  --muted: #77736c;
  --blue: #596587;
  --blue-deep: #465273;
  --clay: #b77a61;
  --white: #fcfbf8;
  --line: rgba(39, 38, 33, 0.15);
  --max: 1320px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "IBM Plex Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 99;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 10px clamp(20px, 4.8vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.91);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.wordmark span,
.footer-brand span {
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.wordmark small,
.footer-brand small {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.top-nav { display: flex; gap: clamp(18px, 2.6vw, 34px); }

.top-nav a,
.book-link {
  font-family: "Manrope", "IBM Plex Sans TC", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.top-nav a {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.top-nav a:hover,
.top-nav a:focus-visible { color: var(--ink); border-color: var(--ink); }

.book-link {
  justify-self: end;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: 180ms ease;
}

.book-link:hover,
.book-link:focus-visible { background: var(--ink); color: var(--white); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 80px);
  min-height: 720px;
  padding: clamp(44px, 6vw, 88px) clamp(22px, 6vw, 96px) clamp(76px, 8vw, 124px);
  overflow: hidden;
  background: var(--canvas);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 18px;
}

.hero-copy::after { display: none; }

.eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 440px);
  margin-bottom: clamp(60px, 8vw, 118px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "Manrope", "IBM Plex Sans TC", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.hero h1 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.hero-en {
  max-width: 34em;
  margin: 28px 0 12px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.hero-summary {
  max-width: 31em;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 9px 19px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: "IBM Plex Sans TC", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-light { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.button-outline { background: transparent; color: var(--ink); }

.text-link {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 590px;
  margin: 14px 0 0 -2vw;
  overflow: hidden;
  border-radius: 160px 18px 18px 18px;
  background: var(--warm);
  box-shadow: 0 28px 80px rgba(67, 56, 44, 0.1);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(25, 24, 22, 0.32));
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  padding: 10px 12px;
  border-radius: 2px;
  background: rgba(252, 251, 248, 0.86);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.14em;
  backdrop-filter: blur(10px);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: auto;
  display: flex;
  gap: 34px;
  padding: 12px 15px;
  border-radius: 2px;
  background: rgba(252, 251, 248, 0.88);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.ticker {
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.ticker > div {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  min-width: max-content;
  padding: 0 20px;
  font-family: "Manrope", "IBM Plex Sans TC", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.ticker i { color: var(--clay); font-style: normal; }

.quick-facts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: clamp(28px, 6vw, 88px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 64px);
  background: transparent;
}

.quick-facts > * {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.quick-facts > *:nth-child(2) { transform: translateY(30px); }
.quick-facts a:hover span { color: var(--blue); }
.quick-facts b {
  margin-bottom: auto;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.quick-facts span { font-size: clamp(0.98rem, 1.35vw, 1.18rem); font-weight: 400; line-height: 1.65; }
.quick-facts em { margin-top: 8px; color: var(--blue); font-size: 0.74rem; font-style: normal; }

.manifesto {
  position: relative;
  min-height: 600px;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 120px);
  overflow: hidden;
  background: var(--paper-2);
  color: var(--ink);
}

.manifesto-kicker {
  margin-left: 54%;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.manifesto h2 {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 66px 0 54px 8%;
  font-size: clamp(1.95rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.manifesto > p {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin: 0 6% 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
}

.orbital-mark {
  position: absolute;
  left: -70px;
  bottom: -150px;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 101, 135, 0.38);
  border-radius: 50%;
}

.orbital-mark::before,
.orbital-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(89, 101, 135, 0.24);
  border-radius: 50%;
}
.orbital-mark::before { inset: 18%; }
.orbital-mark::after { inset: 38%; }
.orbital-mark span { position: absolute; top: 4%; right: 12%; color: var(--clay); font-size: 1.7rem; }

.services {
  padding: clamp(100px, 11vw, 168px) clamp(24px, 6vw, 92px);
  background: var(--canvas);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.35fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto clamp(62px, 8vw, 112px);
}

.section-head > span,
.space-heading > span,
.visit-copy > span {
  color: var(--muted);
  font-family: "Manrope", "IBM Plex Sans TC", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.section-head h2,
.space-heading h2,
.visit-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.section-head > p {
  grid-column: 2;
  max-width: 34em;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 100px;
  gap: 22px;
  align-items: start;
  width: 78%;
  min-height: 210px;
  padding: 34px 12px 44px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.service-card:nth-child(even) { margin-left: auto; }
.service-card:last-child { border-bottom: 1px solid var(--line); }
.service-card.featured,
.service-card.orange,
.service-card.dark { background: transparent; color: var(--ink); }
.service-no {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.service-en {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}
.service-card h3 { margin: 0 0 13px; font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 500; line-height: 1.42; }
.service-card p:last-child { max-width: 36em; margin: 0; color: var(--muted); font-size: 0.9rem; }
.service-card > a {
  position: static;
  align-self: end;
  justify-self: end;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.advisor {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(420px, 1.28fr);
  min-height: 620px;
  max-width: var(--max);
  margin: 0 auto clamp(100px, 11vw, 160px);
  overflow: hidden;
  border-radius: 28px;
  background: #e7e9e3;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(64, 62, 55, 0.08);
}

.advisor-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 86px);
  overflow: hidden;
}

.advisor-intro::after {
  content: "AI";
  position: absolute;
  right: -18px;
  bottom: -58px;
  color: rgba(89, 101, 135, 0.09);
  font-family: "Manrope", sans-serif;
  font-size: clamp(9rem, 16vw, 15rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}

.advisor-intro > span { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; }
.advisor-intro h2 { position: relative; z-index: 1; margin: 36px 0 24px; font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 400; line-height: 1.42; letter-spacing: -0.025em; }
.advisor-intro > p { position: relative; z-index: 1; max-width: 28em; margin: 0; color: var(--muted); font-size: 0.92rem; }
.advisor-intro .advisor-note { margin-top: 30px; color: var(--blue); font-size: 0.7rem; font-weight: 400; }

.advisor-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
  background: rgba(252, 251, 248, 0.44);
}

.advisor-step { margin-bottom: 16px; }
.advisor-step label { display: flex; gap: 12px; margin-bottom: 8px; color: var(--muted); }
.advisor-step label b { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 0.68rem; font-weight: 500; }
.advisor-step label span { font-size: 0.82rem; font-weight: 400; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; top: 50%; right: 18px; color: var(--blue); font-size: 1rem; pointer-events: none; transform: translateY(-58%); }
.advisor select {
  width: 100%;
  padding: 14px 44px 14px 17px;
  border: 1px solid rgba(39, 38, 33, 0.1);
  border-radius: 12px;
  outline: 0;
  background: rgba(252, 251, 248, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  appearance: none;
}
.advisor select:focus-visible { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(89,101,135,.12); }
.advisor-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
}
.advisor-submit span { font-size: 1.1rem; }
.advisor-submit:hover,
.advisor-submit:focus-visible { background: var(--blue-deep); }
.advisor-form.has-result { display: none; }

.advisor-result {
  align-self: center;
  margin: clamp(34px, 5vw, 68px);
  padding: clamp(32px, 4vw, 54px);
  border-radius: 20px;
  background: rgba(252, 251, 248, 0.9);
  color: var(--ink);
  outline: 0;
}
.advisor-result[hidden] { display: none; }
.result-topline { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: "Manrope", sans-serif; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.13em; }
.result-label { margin: 30px 0 9px; color: var(--blue); font-size: 0.68rem; }
.advisor-result h3 { margin: 0 0 18px; font-size: clamp(1.8rem, 3vw, 2.55rem); font-weight: 500; line-height: 1.3; }
#result-reason { max-width: 38em; margin: 0; color: var(--muted); font-size: 0.92rem; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 34px 0 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.result-grid b { display: block; margin-bottom: 9px; font-size: 0.7rem; font-weight: 500; }
.result-grid p,
.result-grid ul { margin: 0; color: var(--muted); font-size: 0.82rem; }
.result-grid ul { padding-left: 1.2em; }
.result-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
#advisor-reset { padding: 8px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-size: 0.74rem; cursor: pointer; }
.result-disclaimer { margin: 22px 0 0; color: var(--muted); font-size: 0.68rem; }

.space {
  position: relative;
  padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 92px);
  overflow: hidden;
  background: var(--paper);
}

.space-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto 76px;
}

.space-main {
  width: 78%;
  max-width: 980px;
  margin: 0 4% 0 auto;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(70, 61, 51, 0.1);
}

.space-main img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; }
.space-main figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 13px 16px; color: var(--white); font-family: "Manrope", "IBM Plex Sans TC", sans-serif; font-size: 0.64rem; letter-spacing: 0.08em; }

.space-notes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  width: 78%;
  max-width: 980px;
  margin: -100px auto 0 2%;
  align-items: end;
}

.space-image-small { overflow: hidden; border-radius: 130px 4px 4px 4px; box-shadow: 0 24px 65px rgba(70, 61, 51, 0.12); }
.space-image-small img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.space-copy { position: relative; min-height: 330px; padding: clamp(34px, 5vw, 62px); border-radius: 4px; background: rgba(252,251,248,.96); color: var(--ink); overflow: hidden; }
.giant-number { position: absolute; top: -30px; right: 16px; color: rgba(89, 101, 135, 0.1); font-family: "Manrope", sans-serif; font-size: clamp(5rem, 11vw, 9rem); font-weight: 600; line-height: 1; }
.space-copy h3 { position: relative; margin: 0 0 20px; font-size: clamp(1.45rem, 2.5vw, 2.1rem); font-weight: 400; line-height: 1.45; }
.space-copy p { position: relative; max-width: 29em; margin: 0; color: var(--muted); font-size: 0.9rem; }
.space-copy .micro { position: absolute; right: 22px; bottom: 14px; color: var(--muted); font-size: 0.65rem; }

.process {
  padding: clamp(100px, 11vw, 155px) clamp(24px, 6vw, 92px) clamp(120px, 13vw, 190px);
  background: var(--blue);
  color: var(--white);
}
.section-head.light > span { color: rgba(255,255,255,.65); }
.section-head.light { grid-template-columns: minmax(130px, .45fr) minmax(0, 1.35fr); }
.section-head.light h2 { color: var(--white); }

.process-list {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  flex: 1;
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.process-list li:nth-child(even) { transform: translateY(32px); }
.process-list b { color: rgba(255,255,255,.58); font-family: "Manrope", sans-serif; font-size: 0.68rem; font-weight: 500; }
.process-list h3 { margin: 54px 0 12px; font-size: 1.1rem; font-weight: 500; }
.process-list p { margin: 0; color: rgba(255,255,255,.72); font-size: 0.82rem; }

.visit {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(46px, 7vw, 104px);
  padding: clamp(100px, 11vw, 168px) clamp(24px, 7vw, 106px);
  background: var(--canvas);
  color: var(--ink);
}

.visit-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 180px 20px 20px 20px;
  background: var(--paper);
}

.visit-map::before,
.visit-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(89,101,135,.2);
  border-radius: 50%;
}
.visit-map::before { inset: 14%; }
.visit-map::after { inset: 31%; border-color: rgba(89,101,135,.45); }
.map-line { position: absolute; z-index: 1; display: block; background: var(--ink); opacity: 0.45; }
.line-a { top: -10%; left: 41%; width: 6px; height: 120%; transform: rotate(18deg); }
.line-b { top: 51%; left: -10%; width: 120%; height: 5px; transform: rotate(-7deg); background: var(--blue); }
.map-street { position: absolute; z-index: 2; padding: 3px 7px; background: var(--paper); color: var(--muted); font-size: 0.64rem; }
.street-a { top: 45%; right: 10%; transform: rotate(-7deg); }
.street-b { top: 12%; left: 48%; transform: rotate(18deg); }
.station { position: absolute; z-index: 3; left: 16%; bottom: 16%; padding: 9px 11px; border-radius: 2px; background: var(--ink); color: #fff; font-size: 0.62rem; font-weight: 500; line-height: 1.3; letter-spacing: 0.07em; }
.pin { position: absolute; z-index: 4; top: 58%; left: 48%; padding: 10px 13px; border-radius: 2px; background: var(--clay); color: var(--white); font-size: 0.68rem; font-weight: 500; line-height: 1.4; letter-spacing: 0.04em; transform: translate(-50%,-50%); }
.pin i { display: block; width: 9px; height: 9px; margin: 0 auto 7px; border: 2px solid var(--white); border-radius: 50%; }

.visit-copy { align-self: center; }
.visit-copy h2 { margin: 24px 0 42px; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 0 0 34px; }
.visit-details div { min-height: 118px; padding: 14px 0; border-top: 1px solid var(--line); }
.visit-details dt { margin-bottom: 10px; color: var(--muted); font-size: 0.66rem; font-weight: 400; letter-spacing: 0.1em; }
.visit-details dd { margin: 0; font-size: 0.9rem; font-weight: 400; line-height: 1.7; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.faq {
  padding: clamp(100px, 11vw, 160px) clamp(24px, 7vw, 106px);
  background: var(--white);
}
.faq-list { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 4px; cursor: pointer; font-size: clamp(0.98rem, 1.4vw, 1.15rem); font-weight: 400; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--blue); font-size: 1.05rem; font-style: normal; transition: transform .2s ease; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: -4px 0 26px; padding: 0 4px; color: var(--muted); font-size: 0.88rem; }
.updated { max-width: 960px; margin: 20px auto 0; color: var(--muted); font-size: 0.68rem; }

.final-cta {
  padding: clamp(92px, 12vw, 166px) 24px;
  text-align: center;
  background: var(--paper-2);
  color: var(--ink);
}
.final-cta > p { color: var(--muted); font-family: "Manrope", sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.15em; }
.final-cta h2 { margin: 18px 0 36px; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.35; letter-spacing: -0.025em; }
.final-cta > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 46px clamp(24px, 6vw, 92px);
  background: var(--ink);
  color: var(--white);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.footer-brand small { color: rgba(255,255,255,.55); }
.footer-info p { margin: 0 0 4px; color: rgba(255,255,255,.72); font-size: 0.82rem; }
.footer-links { display: flex; justify-content: flex-end; align-items: flex-start; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 0.7rem; font-weight: 400; text-underline-offset: 4px; }

.mobile-actions { display: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 0.86fr 1.14fr; min-height: 650px; }
  .hero-visual { min-height: 520px; border-radius: 120px 16px 16px 16px; }
  .advisor { margin-right: 24px; margin-left: 24px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .top-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-bottom: 84px; }
  .hero-copy { padding-right: 8vw; }
  .eyebrow { margin-bottom: 54px; }
  .hero-visual { min-height: 560px; margin: 20px 0 0 9vw; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts > *:nth-child(2) { transform: none; }
  .quick-facts > *:first-child { grid-column: 1 / -1; }
  .section-head,
  .space-heading { grid-template-columns: 120px minmax(0, 1fr); }
  .service-card { width: 88%; }
  .advisor { grid-template-columns: 1fr; }
  .advisor-intro { min-height: 420px; }
  .advisor-form { min-height: 570px; }
  .advisor-result { margin: 44px; }
  .space-main { width: 88%; }
  .space-notes { width: 88%; margin-top: -60px; }
  .process-list { display: grid; grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(even) { transform: translateY(20px); }
  .visit { grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { padding-bottom: 58px; }
  .site-header { min-height: 66px; padding: 9px 18px; }
  .wordmark small { display: none; }
  .book-link { padding: 7px 12px; font-size: 0.64rem; }
  .hero { padding: 40px 18px 68px; }
  .hero-copy { padding: 0; }
  .eyebrow { margin-bottom: 42px; }
  .hero h1 { max-width: 9em; font-size: 2.45rem; }
  .hero-en { margin-top: 22px; }
  .hero-summary { font-size: 0.9rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero-visual { min-height: 430px; margin: 28px 0 0 10vw; border-radius: 84px 12px 12px 12px; }
  .hero-visual > img { object-position: 62% center; }
  .hero-caption { right: 12px; bottom: 12px; gap: 15px; font-size: 0.54rem; }
  .hero-stamp { top: 12px; right: 12px; }
  .ticker > div { justify-content: flex-start; }
  .quick-facts { grid-template-columns: 1fr; padding: 64px 22px 84px; }
  .quick-facts > *:first-child { grid-column: auto; }
  .quick-facts > * { min-height: 132px; }
  .manifesto { min-height: 570px; padding: 84px 22px 100px; }
  .manifesto-kicker { margin-left: 42%; }
  .manifesto h2 { margin: 52px 0 40px; font-size: 2rem; }
  .manifesto > p { margin: 0 0 0 15%; }
  .orbital-mark { left: -160px; bottom: -165px; }
  .services { padding: 86px 22px 100px; }
  .section-head,
  .section-head.light,
  .space-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 54px; }
  .section-head > p { grid-column: auto; }
  .section-head h2,
  .space-heading h2,
  .visit-copy h2 { font-size: 2rem; }
  .service-card,
  .service-card:nth-child(even) { grid-template-columns: 42px 1fr; width: 100%; margin-left: 0; padding: 28px 0 36px; }
  .service-card > a { grid-column: 2; justify-self: start; }
  .advisor { margin: 0 14px 92px; border-radius: 20px; }
  .advisor-intro { min-height: 390px; padding: 52px 26px; }
  .advisor-intro h2 { font-size: 2.1rem; }
  .advisor-form { min-height: 530px; padding: 42px 20px; }
  .advisor-result { margin: 22px 14px 38px; padding: 28px 20px; }
  .result-grid { grid-template-columns: 1fr; }
  .space { padding: 86px 18px 106px; }
  .space-main { width: 92%; margin-right: 0; }
  .space-main img { aspect-ratio: 4 / 5; }
  .space-main figcaption { flex-direction: column; gap: 3px; }
  .space-notes { grid-template-columns: 1fr; width: 88%; margin: -38px auto 0 0; }
  .space-image-small { border-radius: 74px 3px 3px 3px; }
  .space-image-small img { min-height: 330px; }
  .space-copy { min-height: 300px; padding: 38px 26px; }
  .process { padding: 86px 18px 120px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 195px; }
  .process-list li:nth-child(even) { transform: none; }
  .process-list h3 { margin-top: 38px; }
  .visit { grid-template-columns: 1fr; padding: 86px 18px 100px; }
  .visit-map { min-height: 420px; border-radius: 105px 14px 14px 14px; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-details div { min-height: 100px; }
  .faq { padding: 86px 22px 100px; }
  .faq summary { padding: 21px 2px; }
  .final-cta { padding: 92px 22px; }
  .final-cta h2 { font-size: 2.25rem; }
  footer { grid-template-columns: 1fr; padding: 42px 22px 72px; }
  .footer-links { grid-column: auto; justify-content: flex-start; }
  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    min-height: 58px;
    background: rgba(252,251,248,.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a { display: flex; justify-content: center; align-items: center; border-right: 1px solid var(--line); font-size: 0.72rem; font-weight: 500; text-decoration: none; }
  .mobile-actions a:last-child { border-right: 0; }
  .mobile-actions .primary { background: var(--blue); color: #fff; }
}

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