:root {
    --navy: #08215d;
    --navy-2: #0b2d78;
    --gold: #d5a45a;
    --gold-2: #f0c879;
    --ink: #1d2733;
    --muted: #657184;
    --line: #e3e8f0;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --shadow: 0 18px 48px rgba(8, 33, 93, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--paper);
    line-height: 1.7;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.topbar {
    width: min(1180px, calc(100% - 40px));
    height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 460px;
    max-width: 560px;
}

.brand-logo {
    width: 100%;
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    font-size: 15px;
}

.main-nav a {
    position: relative;
    color: #25334a;
    padding: 27px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-cta {
    color: #fff;
    background: var(--navy);
    padding: 10px 18px;
    font-size: 14px;
    border: 1px solid var(--navy);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
}

.hero,
.page-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero-home {
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url("assets/site-images/building-hero.jpg");
}

.hero-overlay,
.page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(5, 22, 61, 0.86), rgba(5, 22, 61, 0.42));
}

.hero-content,
.page-hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker,
.section-head span,
.consult-inner span,
.page-hero span {
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 14px 0 20px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.16;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn.primary {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.btn.primary:hover {
    background: #123986;
}

.btn.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn.ghost:hover {
    color: var(--navy);
    background: #fff;
}

.btn.gold {
    background: var(--gold);
    border-color: var(--gold);
}

.section {
    padding: 86px 0;
}

.muted {
    background: var(--soft);
}

.section-head {
    max-width: 650px;
    margin-bottom: 36px;
}

.section-head.compact {
    margin-bottom: 28px;
}

.section-head.side {
    margin-bottom: 0;
}

.section-head h2,
.split h2,
.consult-inner h2 {
    margin: 8px 0 12px;
    color: var(--navy);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.25;
}

.section-head p,
.lead,
.rich-text p {
    color: var(--muted);
    font-size: 16px;
}

.credential-note {
    max-width: 760px;
    margin-top: 12px;
    padding: 12px 14px;
    color: #6b4a1f !important;
    background: #fff7e8;
    border-left: 3px solid var(--gold);
    font-size: 14px !important;
}

.image-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.image-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.image-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 33, 93, 0.1), rgba(8, 33, 93, 0.82));
}

.image-card.light::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 33, 93, 0.74));
}

.image-card span {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 1;
    font-size: 24px;
    font-weight: 700;
}

.image-card span::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 12px;
    background: var(--gold);
}

.image-card:hover img {
    transform: scale(1.07);
    opacity: 0.94;
}

.info-center {
    position: relative;
    margin-top: -86px;
    z-index: 2;
    padding-bottom: 30px;
}

.info-center .container {
    background: #fff;
    padding: 28px 42px 32px;
    box-shadow: var(--shadow);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.project-carousel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--navy);
}

.project-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.project-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.project-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 33, 93, 0.12), rgba(8, 33, 93, 0.88));
}

.project-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 42px;
    z-index: 1;
    color: #fff;
}

.project-caption span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    color: var(--navy);
    background: var(--gold-2);
    font-size: 13px;
    font-weight: 700;
}

.project-caption h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.28;
}

.project-caption p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.carousel-dots {
    position: absolute;
    left: 34px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.carousel-dots button {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.carousel-dots button.active {
    background: var(--gold-2);
}

.info-panel {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    border-top: 3px solid var(--navy);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line);
}

.info-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
}

.info-tabs button {
    min-height: 54px;
    color: var(--navy);
    background: #fff;
    border: 0;
    border-right: 1px solid var(--line);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.info-tabs button:last-child {
    border-right: 0;
}

.info-tabs button.active {
    color: #fff;
    background: var(--navy);
}

.notice-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 26px;
}

.notice-column {
    border: 1px solid #d5d9df;
    background: #fff;
}

.notice-column-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid #d5d9df;
}

.notice-column-head h3 {
    margin: 0;
    padding: 12px 22px;
    color: #fff;
    background: var(--navy);
    font-size: 17px;
}

.notice-column-head h3::before {
    content: "› ";
    font-size: 18px;
}

.notice-column-head a {
    align-self: center;
    padding: 0 14px;
    color: var(--navy);
    font-size: 12px;
}

.investment-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-right: auto;
    padding-left: 18px;
}

.investment-tabs a {
    position: relative;
    padding: 0 15px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.investment-tabs a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: var(--gold);
    transform: translateY(-50%);
}

.investment-tabs a:hover,
.investment-tabs a.active {
    color: var(--gold);
}

.investment-tabs a.active::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -16px;
    height: 2px;
    background: var(--gold);
}

.notice-column-body {
    display: grid;
    grid-template-columns: minmax(220px, 0.86fr) 1fr;
    gap: 20px;
    padding: 16px;
}

.news-showcase {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.news-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 0 24px 0 28px;
    color: #fff;
    background: var(--navy);
}

.news-showcase-head div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-showcase-head strong {
    font-size: 18px;
}

.news-showcase-head span {
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.news-showcase-head a {
    color: #fff;
    font-size: 14px;
}

.news-showcase-head a::before {
    content: "— ";
    color: var(--gold-2);
}

.news-showcase-body {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, 1fr);
    height: 360px;
    background: #f1f4f8;
}

.news-visual {
    position: relative;
    height: 360px;
    background: #e8edf5;
}

.news-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.news-slide.active {
    opacity: 1;
}

.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.news-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.news-dots button.active {
    background: var(--gold);
}

.news-summary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    overflow: hidden;
    padding: 38px 38px 34px;
    background: #fff;
}

.news-summary time {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.news-summary > strong {
    margin: 4px 0 16px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
}

.news-summary > strong::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 16px;
    background: var(--gold);
}

.news-summary h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.58;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-summary p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-summary .btn {
    align-self: flex-start;
    margin-top: auto;
}

.news-headlines {
    padding: 22px 28px 26px;
    background: #fff;
}

.news-headlines a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.news-headlines a:last-child {
    border-bottom: 0;
}

.news-headlines span {
    padding: 2px 8px;
    color: #fff;
    background: var(--gold);
    font-size: 12px;
}

.news-headlines strong {
    min-width: 0;
    color: var(--navy);
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-headlines time {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.notice-featured {
    position: relative;
    display: block;
    min-width: 0;
    align-self: start;
    padding: 10px;
    border: 1px solid rgba(8, 33, 93, 0.1);
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.notice-featured img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #f2f2f2;
}

.notice-featured div {
    min-width: 0;
    padding-top: 10px;
}

.notice-featured p {
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notice-list {
    display: grid;
    align-content: start;
    gap: 0;
}

.notice-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 40px;
    padding: 13px 0 13px 16px;
    border-bottom: 1px dashed #d8d8d8;
}

.notice-item.featured strong {
    font-size: 15px;
    font-weight: 800;
}

.notice-item::before {
    content: "※";
    position: absolute;
    top: 10px;
    left: 0;
    width: auto;
    height: auto;
    color: #758095;
    background: none;
    font-size: 12px;
    opacity: 1;
}

.notice-column time {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.notice-column strong {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.5;
}

.notice-featured strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.45;
}

.service-preview {
    padding-top: 40px;
}

.notice-column a:hover strong {
    color: var(--gold);
}

.auction-panel,
.investment-panel {
    grid-column: 1 / -1;
}

.auction-panel .notice-column-head,
.investment-panel .notice-column-head {
    align-items: center;
}

.auction-body,
.investment-body {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.auction-body .notice-featured img,
.investment-body .notice-featured img {
    height: 190px;
}

.investment-empty {
    grid-column: 1 / -1;
    min-height: 220px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: #f7f9fd;
    border: 1px dashed var(--line);
}

.info-pair {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.compact-feed {
    min-width: 0;
}

.compact-list {
    display: grid;
    gap: 0;
    padding: 12px 18px 16px;
}

.compact-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 48px;
    padding: 12px 0 12px 16px;
    border-bottom: 1px dashed #d8d8d8;
    position: relative;
}

.compact-item:last-child {
    border-bottom: 0;
}

.compact-item::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 13px;
    color: #758095;
    font-size: 12px;
}

.compact-item strong {
    min-width: 0;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-item time {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.compact-item:hover strong {
    color: var(--gold);
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.strength-grid,
.feature-grid,
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.strength-grid article,
.feature,
.process article,
.article-list article,
.contact-card,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.strength-grid article {
    padding: 28px;
}

.strength-grid strong {
    display: block;
    color: var(--navy);
    font-size: 34px;
    line-height: 1;
}

.strength-grid span {
    color: var(--muted);
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    padding: 32px;
}

.feature h3,
.service-item h2,
.article-list h2,
.contact-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
}

.article-list h2 a {
    color: inherit;
}

.article-list h2 a:hover {
    color: var(--gold);
}

.feature p,
.service-item p,
.article-list p,
.contact-card p {
    margin: 0;
    color: var(--muted);
}

.news-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 58px;
}

.news-list {
    background: #fff;
    border-top: 3px solid var(--navy);
}

.news-list a {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 25px 30px;
    border-bottom: 1px solid var(--line);
    transition: 0.2s ease;
}

.news-list a:hover {
    background: #fff7e8;
}

.news-list time,
.article-list time {
    color: var(--gold);
    font-weight: 700;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--navy);
    font-weight: 700;
}

.text-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background: var(--gold);
}

.consult-band {
    color: #fff;
    background: var(--navy);
    padding: 54px 0;
}

.consult-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.consult-inner h2,
.consult-inner p {
    color: #fff;
    margin-bottom: 0;
}

.page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
}

.about-hero {
    background-image: url("assets/site-images/office-hero.jpg");
}

.services-hero {
    background-image: url("assets/site-images/team-hero.jpg");
}

.insights-hero {
    background-image: url("assets/site-images/meeting-hero.jpg");
}

.contact-hero {
    background-image: url("assets/site-images/workspace-hero.jpg");
}

.page-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
}

.page-hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.rich-text {
    border-left: 3px solid var(--gold);
    padding-left: 28px;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.profile-highlights div {
    padding: 20px;
    background: #f7f9fd;
    border: 1px solid var(--line);
}

.profile-highlights strong {
    display: block;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}

.profile-highlights span {
    color: var(--muted);
    font-size: 13px;
}

.credential-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}

.credential-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.credential-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 210px;
    padding: 18px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(8, 33, 93, 0.08), rgba(213, 164, 90, 0.12)),
        #f8fafc;
}

.credential-visual.photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(8, 33, 93, 0.16));
}

.credential-visual span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    min-width: 92px;
    padding: 8px 12px;
    color: var(--gold-2);
    background: rgba(8, 33, 93, 0.9);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-align: center;
}

.credential-card h3 {
    margin: 24px 24px 10px;
    color: var(--navy);
    font-size: 20px;
}

.credential-card p {
    margin: 0;
    padding: 0 24px 28px;
    color: var(--muted);
    font-size: 14px;
}

.network-section {
    color: #fff;
    background: var(--navy);
}

.network-map {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 56px;
    align-items: center;
}

.network-copy h2 {
    margin: 8px 0 14px;
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.25;
}

.network-copy p {
    margin: 0;
    color: #c4cdea;
}

.network-nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.network-nodes::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(213, 164, 90, 0.28);
    pointer-events: none;
}

.network-node {
    position: relative;
    z-index: 1;
    min-height: 118px;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.network-node.primary {
    background: var(--gold);
}

.network-node strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 24px;
}

.network-node span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.55;
}

.timeline article,
.service-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 34px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.timeline time,
.service-item > span {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-list {
    border-top: 3px solid var(--navy);
}

.process {
    grid-template-columns: repeat(4, 1fr);
}

.process article {
    padding: 28px;
}

.process strong {
    color: var(--navy);
}

.process-flow {
    align-items: stretch;
}

.process-flow .section-head {
    grid-column: 1 / -1;
    max-width: 720px;
    margin-bottom: 10px;
}

.process-flow article {
    position: relative;
    min-height: 220px;
    padding: 34px 28px 30px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 14px 36px rgba(8, 33, 93, 0.1);
}

.process-flow article::after {
    content: "";
    position: absolute;
    top: 54px;
    right: -18px;
    width: 36px;
    height: 2px;
    background: var(--gold);
    z-index: 1;
}

.process-flow article:last-child::after {
    display: none;
}

.process-flow article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 700;
}

.process-flow strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.process-flow p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.insights-section {
    background: linear-gradient(180deg, #fff, #f7f9fd);
}

.insights-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.insights-side {
    position: sticky;
    top: 110px;
    padding: 0 0 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.insights-side h2 {
    margin: 0 0 8px;
    padding: 16px 20px;
    color: #fff;
    background: var(--navy);
    font-size: 18px;
}

.insights-side a {
    display: block;
    margin: 0 14px;
    padding: 12px 6px;
    color: #26344c;
    border-bottom: 1px dashed #d8dfe9;
    font-weight: 700;
}

.insights-side a.active,
.insights-side a:hover {
    color: var(--gold);
}

.side-group {
    margin: 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line);
}

.side-group > a {
    margin: 0;
}

.side-group > a:not(:first-child) {
    padding: 8px 6px 8px 22px;
    color: var(--muted);
    border-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.side-group > a:not(:first-child)::before {
    content: "· ";
    color: var(--gold);
}

.side-group > a.active:not(:first-child),
.side-group > a:not(:first-child):hover {
    color: var(--navy);
}

.insights-content {
    min-width: 0;
}

.insights-list-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 16px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.insights-list-head span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.insights-list-head h2 {
    margin: 5px 0 0;
    color: var(--navy);
}

.insights-list-head p {
    margin: 0;
    color: var(--muted);
    white-space: nowrap;
}

.article-list {
    display: grid;
    gap: 20px;
}

.article-list.empty {
    padding: 34px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
}

.article-list article {
    position: relative;
    padding: 34px 170px 34px 34px;
}

.article-list span {
    position: absolute;
    top: 34px;
    right: 34px;
    color: var(--navy);
    background: #edf2fb;
    padding: 7px 14px;
    font-size: 13px;
}

.article-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.article-pagination a {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--navy);
    background: #f7f9fd;
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}

.article-pagination a.active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.article-pagination a:not(.disabled):hover {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
}

.article-pagination a.disabled {
    color: #9aa5b7;
    pointer-events: none;
    background: #f1f4f8;
}

.article-detail {
    max-width: 860px;
}

.article-head {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.article-head h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.35;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.article-meta strong {
    color: var(--navy);
}

.article-cover {
    width: 100%;
    max-height: 460px;
    margin-bottom: 28px;
    object-fit: cover;
}

.article-detail .rich-text {
    margin-bottom: 28px;
    color: #2d3748;
    font-size: 16px;
    line-height: 1.9;
}

.article-detail .rich-text p,
.article-detail .rich-text ul,
.article-detail .rich-text ol {
    margin: 0 0 18px;
}

.article-detail .rich-text h2,
.article-detail .rich-text h3,
.article-detail .rich-text h4 {
    margin: 30px 0 14px;
    color: var(--navy);
    line-height: 1.35;
}

.article-detail .rich-text ul,
.article-detail .rich-text ol {
    padding-left: 1.4em;
}

.article-detail .rich-text img {
    display: block;
    width: min(100%, 720px);
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    border: 1px solid var(--line);
}

.article-detail .rich-text a {
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
}

.hidden {
    display: none !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: start;
}

.contact-card,
.contact-form {
    padding: 34px;
}

.contact-card p {
    margin: 16px 0;
}

.contact-card strong {
    display: block;
    color: var(--navy);
}

.qr-box {
    width: 156px;
    margin-top: 26px;
    display: grid;
    gap: 8px;
    color: var(--navy);
    text-align: center;
}

.qr-box small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.qr-box img {
    width: 156px;
    height: 156px;
    border: 1px solid var(--line);
    background: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    color: var(--navy);
    font-weight: 700;
}

.contact-form .full,
.contact-form button,
.form-message {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(213, 164, 90, 0.35);
    border-color: var(--gold);
}

.form-message {
    min-height: 24px;
    margin: 0;
    color: var(--navy);
    font-weight: 700;
}

.form-message.error {
    color: #b3261e;
}

.map-band {
    padding: 0 0 86px;
}

.map-placeholder {
    height: 300px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        linear-gradient(rgba(8, 33, 93, 0.74), rgba(8, 33, 93, 0.74)),
        url("assets/site-images/city-map.jpg") center/cover;
    font-size: 22px;
    font-weight: 700;
}

.site-footer {
    color: #c4cdea;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 1fr;
    gap: 60px;
    padding: 58px 0;
}

.footer-brand {
    max-width: 500px;
    padding: 8px 12px;
    background: #fff;
}

.footer-brand .brand-logo {
    height: 88px;
}

.site-footer h3 {
    color: #fff;
}

.site-footer p {
    color: #c4cdea;
}

.site-footer h3 {
    margin: 0 0 16px;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #c4cdea;
}

.site-footer a:hover {
    color: var(--gold-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    text-align: center;
    color: #aeb9df;
    font-size: 13px;
}

@media (max-width: 980px) {
    .topbar {
        height: 76px;
    }

    .brand {
        min-width: auto;
        max-width: 350px;
        flex: 1;
    }

    .brand-logo {
        height: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        margin: 0;
        padding: 10px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .main-nav a {
        padding: 13px 0;
    }

    .main-nav a::after {
        bottom: 8px;
    }

    .header-cta {
        display: none;
    }

    .hero-home {
        min-height: 500px;
    }

    .image-card-grid,
    .feature-grid,
    .feature-grid.four,
    .strength-grid,
    .process,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .news-layout,
    .info-grid,
    .insights-layout,
    .notice-board,
    .info-pair,
    .news-showcase-body,
    .network-map,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .insights-side {
        position: static;
    }

    .credential-gallery,
    .network-nodes {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-center {
        margin-top: 0;
    }

    .info-center .container {
        width: 100%;
        padding: 34px 20px;
    }

    .process-flow article::after {
        display: none;
    }

    .project-carousel,
    .info-panel {
        min-height: 390px;
    }

    .notice-column:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .news-showcase-body {
        height: auto;
        min-height: 0;
    }

    .news-visual {
        height: 300px;
        min-height: 300px;
    }

    .news-summary {
        padding: 34px;
    }

    .service-preview {
        padding-top: 36px;
    }

    .section-head.side {
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .container,
    .topbar {
        width: min(100% - 28px, 1120px);
    }

    .brand {
        max-width: 240px;
    }

    .brand-logo {
        height: 54px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .brand-logo {
        height: 74px;
    }

    .section {
        padding: 62px 0;
    }

    .hero-home {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .image-card-grid,
    .feature-grid,
    .feature-grid.four,
    .strength-grid,
    .credential-gallery,
    .profile-highlights,
    .network-nodes,
    .process,
    .footer-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .network-nodes::before {
        display: none;
    }

    .image-card {
        height: 230px;
    }

    .project-carousel {
        min-height: 380px;
    }

    .project-caption {
        left: 22px;
        right: 22px;
        bottom: 42px;
    }

    .project-caption h3 {
        font-size: 24px;
    }

    .carousel-dots {
        left: 22px;
    }

    .info-tabs {
        grid-template-columns: 1fr;
    }

    .info-tabs button {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .notice-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .notice-column-body {
        grid-template-columns: 1fr;
    }

    .investment-tabs {
        order: 3;
        width: 100%;
        padding: 10px 14px 12px;
        border-top: 1px solid var(--line);
    }

    .auction-body,
    .investment-body {
        grid-template-columns: 1fr;
    }

    .compact-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .service-preview {
        padding-top: 30px;
    }

    .news-showcase-head,
    .news-showcase-head div,
    .news-headlines a,
    .insights-list-head {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .insights-list-head p {
        white-space: normal;
    }

    .news-showcase-head {
        padding: 18px 20px;
    }

    .news-showcase-head span {
        padding-left: 0;
        border-left: 0;
    }

    .news-headlines a {
        display: grid;
    }

    .news-summary > strong {
        font-size: 30px;
    }

    .news-list a,
    .timeline article,
    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-list article {
        padding: 28px;
    }

    .article-list span {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }

    .consult-inner {
        display: block;
    }

    .consult-inner .btn {
        margin-top: 24px;
        width: 100%;
    }

    .contact-card,
    .contact-form {
        padding: 24px;
    }
}
