:root {
  --navy: #071525;
  --navy-2: #0e2748;
  --gold: #c8a35a;
  --gold-2: #e8d5a3;
  --paper: #f4efe6;
  --ink: #1c2430;
  --muted: #5b6573;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1160px, 92%); margin: 0 auto; }

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold); z-index: 40;
}

.header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(7,21,37,.92);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header.scrolled { box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; position: relative; }
.logo { display: flex; align-items: center; gap: 12px; }
.mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--gold); color: var(--navy);
  font-family: "Noto Serif SC", serif; font-size: 22px; font-weight: 700;
}
.logo b { display: block; font-size: 16px; letter-spacing: 2px; }
.logo small { display: block; font-size: 10px; letter-spacing: 2px; opacity: .55; }
.nav nav { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav nav a:hover, .nav nav a.on { color: var(--gold); }
.btn-nav {
  padding: 8px 16px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}
.menu-btn {
  display: none; background: none; border: 0; width: 32px; cursor: pointer;
}
.menu-btn i { display: block; height: 2px; background: #fff; margin: 6px 0; }

.hero {
  position: relative; min-height: 92vh; color: #fff;
  display: grid; align-items: center;
  overflow: hidden;
}
.hero-slides, .hs { position: absolute; inset: 0; }
.hs {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.hs.on { opacity: 1; }
.hero-ctrls {
  position: absolute; right: max(4%, calc((100% - 1160px) / 2));
  bottom: 36px; z-index: 2;
  display: flex; align-items: center; gap: 12px; color: #fff; font-size: 13px;
}
.hero-ctrls button {
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: #fff; padding: 6px 14px; cursor: pointer;
}
.hero-ctrls button:hover { border-color: var(--gold); color: var(--gold); }
.drop { position: relative; }
.drop .panel {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 168px; background: #071525; padding: 10px 0;
  border: 1px solid rgba(200,163,90,.3);
}
.drop:hover .panel, .drop:focus-within .panel { display: grid; }
.drop .panel a { padding: 8px 18px; font-size: 13px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .4;
}
.hero-inner { position: relative; padding: 120px 0 80px; }
.eyebrow {
  letter-spacing: 6px; font-size: 12px; color: var(--gold); margin-bottom: 18px;
}
.hero h1 {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2; margin-bottom: 22px;
}
.lead { max-width: 640px; font-size: 17px; font-weight: 300; opacity: .9; }
.hero-actions { display: flex; gap: 14px; margin: 36px 0 56px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); border: 0;
  padding: 12px 26px; cursor: pointer; font-weight: 500;
}
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.hero-stats {
  list-style: none; display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 860px;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 28px;
}
.hero-stats strong {
  display: block; font-family: "Noto Serif SC", serif; font-size: 28px; color: var(--gold-2);
}
.hero-stats span { font-size: 13px; opacity: .7; }

.strip { background: var(--gold); color: var(--navy); }
.strip-inner {
  display: flex; align-items: center; gap: 18px 28px;
  flex-wrap: wrap; padding: 18px 0; font-size: 14px;
}
.strip span { opacity: .7; }
.strip b { font-weight: 700; margin-right: 18px; }

section { padding: 100px 0; }
section.alt { background: var(--paper); }
.sec-head { margin-bottom: 40px; }
.sec-head p {
  color: var(--gold); letter-spacing: 5px; font-size: 12px; margin-bottom: 8px;
}
.sec-head h2 {
  font-family: "Noto Serif SC", serif; font-size: clamp(28px, 3vw, 40px);
}
.sec-head span { display: block; color: var(--muted); margin-top: 10px; }

.about-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start;
}
.about-copy h3 {
  font-family: "Noto Serif SC", serif; font-size: 26px; margin-bottom: 18px;
}
.about-copy p { margin-bottom: 16px; color: #334; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tags em {
  font-style: normal; border: 1px solid #d9d0c3; padding: 6px 12px; font-size: 13px;
}
.dossier {
  background: var(--navy); color: #fff; padding: 36px 32px;
  box-shadow: 24px 24px 0 #e8d5a3;
}
.dossier h4 { color: var(--gold); letter-spacing: 3px; font-size: 12px; margin-bottom: 18px; }
.dossier dl div {
  display: grid; grid-template-columns: 92px 1fr;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px;
}
.dossier dt { opacity: .55; }

.biz {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px;
}
.biz article {
  background: #fff; padding: 32px 28px; min-height: 210px;
  border: 1px solid #eadfce; transition: transform .25s, box-shadow .25s;
}
.biz article:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7,21,37,.08); }
.biz .featured {
  grid-row: span 2; background:
    linear-gradient(180deg, rgba(7,21,37,.82), rgba(7,21,37,.9)),
    url("https://images.unsplash.com/photo-1441986300916-42174cd478d4?auto=format&fit=crop&w=1000&q=80") center/cover;
  color: #fff; border: 0;
}
.biz .no { display: block; color: var(--gold); letter-spacing: 2px; font-size: 13px; margin-bottom: 14px; }
.biz h3 { font-family: "Noto Serif SC", serif; font-size: 22px; margin-bottom: 10px; }
.biz .featured ul { margin-top: 18px; padding-left: 18px; opacity: .9; }

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px;
}
.pillars b { color: var(--gold); font-family: "Noto Serif SC", serif; font-size: 28px; }
.pillars h3 { margin: 10px 0 8px; }
.pillars p { color: var(--muted); font-size: 14px; }
.flow {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--navy); color: #fff;
}
.flow li { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.1); }
.flow li:last-child { border: 0; }
.flow span { color: var(--gold); display: block; margin-bottom: 8px; font-size: 13px; }
.flow p { opacity: .7; font-size: 14px; margin-top: 6px; }

.navy { background: var(--navy-2); color: #fff; }
.gov { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.gov h2 { font-family: "Noto Serif SC", serif; font-size: 40px; margin: 8px 0 16px; }
.gov-lead { max-width: 460px; opacity: .88; margin-bottom: 28px; }
.person { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.avatar {
  width: 76px; height: 76px; border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-family: "Noto Serif SC", serif; font-size: 32px;
}
.checks { list-style: none; }
.checks li {
  padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,.1);
}
.checks li:before {
  content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; background: var(--gold);
}
.equity {
  background: rgba(0,0,0,.2); padding: 48px 36px; text-align: center;
  border: 1px solid rgba(200,163,90,.35);
}
.ring { position: relative; width: 180px; height: 180px; margin: 0 auto 22px; }
.ring svg { width: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 10; }
.ring circle:first-child { stroke: rgba(255,255,255,.12); }
.ring circle:last-child {
  stroke: var(--gold); stroke-dasharray: 289; stroke-dashoffset: 0;
}
.ring div {
  position: absolute; inset: 0; display: grid; place-content: center;
}
.ring strong { font-size: 34px; font-family: "Noto Serif SC", serif; line-height: 1; }
.bar { height: 6px; background: rgba(255,255,255,.12); margin: 16px 0 8px; }
.bar i { display: block; height: 100%; background: var(--gold); }

.office { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.office-card {
  background: #fff; padding: 36px 32px; border-left: 6px solid var(--gold);
  box-shadow: 0 20px 50px rgba(7,21,37,.06);
}
.map-tag { color: var(--gold); letter-spacing: 3px; font-size: 12px; }
.office-card h3 { font-family: "Noto Serif SC", serif; font-size: 32px; margin: 8px 0 12px; }
.office-card dl div { padding: 14px 0; border-bottom: 1px solid #eee; }
.office-card dt { font-size: 12px; color: var(--muted); }
.map {
  min-height: 420px; position: relative; overflow: hidden; color: #fff;
  background:
    linear-gradient(180deg, rgba(7,21,37,.25), rgba(7,21,37,.72)),
    url("https://images.unsplash.com/photo-1526483360412-f4dbaf016988?auto=format&fit=crop&w=1200&q=80") center/cover;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.pin { position: absolute; top: 28%; left: 50%; transform: translateX(-50%); text-align: center; }
.pin span {
  width: 18px; height: 18px; background: var(--gold); border-radius: 50%;
  display: block; margin: 0 auto 8px; box-shadow: 0 0 0 10px rgba(200,163,90,.35);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { to { box-shadow: 0 0 0 22px rgba(200,163,90,0); } }
.map ul { list-style: none; padding: 22px; background: rgba(7,21,37,.72); }
.map li { display: flex; gap: 12px; font-size: 14px; padding: 4px 0; }
.map strong { width: 42px; color: var(--gold); font-weight: 500; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid #ddd3c4; }
.contact-list span { display: block; font-size: 12px; color: var(--muted); }
form {
  background: #fff; padding: 32px; display: grid; gap: 16px;
  box-shadow: 0 18px 50px rgba(7,21,37,.06);
}
label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
input, select, textarea {
  border: 1px solid #ddd3c4; padding: 12px 14px; background: #fff; color: var(--ink);
}
.form-note { font-size: 13px; color: #2d6a4f; min-height: 1em; }

footer { background: var(--navy); color: #9aa6b8; padding: 56px 0 28px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px; margin-bottom: 36px; color: #fff;
}
.foot-grid .logo { color: #fff; }
.foot-grid h4 { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; font-weight: 500; }
.foot-grid a, .foot-grid p { display: block; font-size: 14px; color: #9aa6b8; margin: 8px 0; }
.foot-grid a:hover { color: var(--gold); }
.copy { display: flex; justify-content: space-between; font-size: 13px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }

.marquee { background: var(--navy); color: var(--gold); overflow: hidden; border-top: 1px solid rgba(200,163,90,.25); }
.marquee-track { display: flex; gap: 48px; width: max-content; padding: 16px 0; animation: slide 28s linear infinite; }
.marquee-track span { letter-spacing: 4px; font-size: 13px; white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }

.mosaic {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px;
}
.tile { position: relative; overflow: hidden; color: #fff; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.tile:hover img { transform: scale(1.08); }
.tile div {
  position: absolute; inset: auto 0 0; padding: 22px;
  background: linear-gradient(transparent, rgba(7,21,37,.85));
}
.tile em { color: var(--gold); font-size: 12px; letter-spacing: 2px; font-style: normal; }
.tile h3 { font-family: "Noto Serif SC", serif; font-size: 22px; }
.t1 { grid-row: span 2; }
.t6 { grid-column: span 2; }

.scenes { background: var(--navy); color: #fff; }
.scenes .sec-head span { color: #9aa6b8; }

.text-link { display: inline-block; margin-top: 22px; color: #8a6d2f; font-weight: 500; }

.dual { background: var(--navy); color: #fff; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dual article { padding: 64px 48px; border: 1px solid rgba(255,255,255,.08); }
.dual h3 { font-family: "Noto Serif SC", serif; font-size: 28px; margin: 8px 0 14px; }
.dual ul { margin-top: 18px; padding-left: 18px; opacity: .8; }

.notice-sec { padding: 72px 0; }
.notice { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.notice h2 { font-family: "Noto Serif SC", serif; font-size: 32px; margin: 8px 0 12px; }
.notice p { max-width: 720px; color: var(--muted); }

.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid #eadfce; padding: 8px 0; }
.faq summary { cursor: pointer; font-size: 18px; padding: 16px 0; list-style: none; font-family: "Noto Serif SC", serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); padding-bottom: 16px; }

.cta {
  background:
    linear-gradient(90deg, rgba(7,21,37,.88), rgba(7,21,37,.55)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff; text-align: center;
}
.cta-inner h2 { font-family: "Noto Serif SC", serif; font-size: 36px; margin-bottom: 8px; }
.cta-inner p { opacity: .8; margin-bottom: 24px; }

.page-hero {
  background:
    linear-gradient(100deg, rgba(7,21,37,.92), rgba(7,21,37,.5)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff; padding: 120px 0 72px;
}
.page-hero h1 { font-family: "Noto Serif SC", serif; font-size: clamp(32px, 5vw, 52px); margin: 10px 0; }
.crumb { font-size: 13px; opacity: .7; }
.crumb a:hover { color: var(--gold); }

.jump {
  display: flex; flex-wrap: wrap; gap: 10px; padding: 28px 0;
}
.jump a { border: 1px solid #eadfce; padding: 8px 14px; font-size: 13px; }
.jump a:hover { background: var(--navy); color: var(--gold); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story h2 { font-family: "Noto Serif SC", serif; font-size: 32px; margin-bottom: 18px; }
.story p { margin-bottom: 14px; }
.story-pic img { width: 100%; height: 420px; object-fit: cover; display: block; }
.story-pic p { font-size: 13px; color: var(--muted); margin-top: 10px; }

.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.roles article { background: #fff; padding: 32px 28px; border-top: 3px solid var(--gold); }
.roles span { color: var(--gold); letter-spacing: 2px; font-size: 12px; }
.roles h3 { font-family: "Noto Serif SC", serif; margin: 10px 0; }

.nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.nums strong { display: block; font-family: "Noto Serif SC", serif; font-size: 40px; color: var(--navy); }
.nums span { color: var(--gold); letter-spacing: 2px; font-size: 12px; }
.nums p { color: var(--muted); font-size: 13px; margin-top: 8px; }

.cat { padding: 72px 0; }
.cat-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.cat-grid.rev { grid-template-columns: .9fr 1.1fr; }
.cat-grid.rev img { order: 2; }
.cat img { width: 100%; height: 380px; object-fit: cover; }
.cat em { color: var(--gold); letter-spacing: 2px; font-size: 12px; font-style: normal; }
.cat h2 { font-family: "Noto Serif SC", serif; font-size: 36px; margin: 8px 0 14px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chips li { border: 1px solid #d9d0c3; padding: 6px 12px; font-size: 13px; }

.visit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.visit article { background: #fff; padding: 32px; }
.visit h3 { font-family: "Noto Serif SC", serif; margin-bottom: 10px; }

.reveal { opacity: 0; transform: translateY(24px); animation: up .8s ease forwards; }
@keyframes up { to { opacity: 1; transform: none; } }

.top {
  position: fixed; right: 22px; bottom: 22px; z-index: 20;
  width: 42px; height: 42px; border: 0; background: var(--gold); color: var(--navy);
  cursor: pointer; display: none; font-size: 16px;
}
.top.show { display: grid; place-items: center; }

::selection { background: var(--gold); color: var(--navy); }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.serve-grid article { background: #fff; padding: 28px 24px; }
.serve-grid b { color: var(--gold); font-family: "Noto Serif SC", serif; font-size: 22px; }
.serve-grid h3 { margin: 8px 0; }
.quote {
  margin: 0;
  background: var(--gold); color: var(--navy);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(22px, 3.4vw, 36px);
  text-align: center; padding: 72px 8%;
}
.notice-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn.ghost.dark { color: var(--navy); border-color: var(--navy); }
.btn.dark { background: var(--navy); color: var(--gold); }
.mapbox iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-links { display: flex; gap: 28px; padding: 18px 0 8px; }
.map-links a:hover { color: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { cursor: pointer; overflow: hidden; }
.gallery img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { padding: 10px 2px 8px; font-size: 13px; color: var(--muted); }
.lb {
  position: fixed; inset: 0; z-index: 50; background: rgba(7,21,37,.94);
  display: none; place-content: center; padding: 40px; text-align: center;
}
.lb.on { display: grid; }
.lb img { max-width: min(1100px, 90vw); max-height: 78vh; }
.lb p { color: #fff; margin-top: 12px; }
.sheet { width: 100%; border-collapse: collapse; }
.sheet th, .sheet td { text-align: left; padding: 16px 8px; border-bottom: 1px solid #eadfce; vertical-align: top; }
.sheet th { width: 160px; color: var(--muted); font-weight: 500; }
.sheet-note { color: var(--muted); margin: 28px 0 20px; max-width: 720px; }

@media (max-width: 960px) {
  .hero-stats, .pillars, .flow, .biz, .about-grid, .gov, .office, .contact,
  .mosaic, .dual-grid, .foot-grid, .story, .roles, .nums, .cat-grid, .cat-grid.rev, .visit,
  .serve-grid, .gallery {
    grid-template-columns: 1fr;
  }
  .t1, .t6 { grid-row: auto; grid-column: auto; }
  .mosaic { grid-template-rows: none; }
  .biz .featured { grid-row: auto; }
  .flow li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .dossier { box-shadow: 12px 12px 0 #e8d5a3; }
  .foot-grid, .copy, .notice, .cat-grid.rev img { flex-direction: column; align-items: flex-start; order: 0; }
  .notice, .copy { flex-direction: column; }
  .dual article { padding: 40px 28px; }
  .menu-btn { display: block; }
  .nav nav {
    display: none; position: absolute; left: 0; right: 0; top: 78px;
    background: var(--navy); flex-direction: column; padding: 16px 24px 28px; gap: 16px;
  }
  .nav nav.open { display: flex; }
  .drop .panel { display: grid; position: static; border: 0; min-width: 0; padding: 4px 0 8px 12px; }
  .hero-ctrls { right: 4%; bottom: 18px; }
}
