:root {
  --navy: #173b4e;
  --navy-deep: #102d3d;
  --cyan: #54a9c4;
  --sand: #b49772;
  --paper: #f8f7f3;
  --mist: #e7e8e5;
  --ink: #22282a;
  --muted: #70777a;
  --line: rgba(25, 48, 58, 0.17);
  --serif: "Noto Serif TC", "Songti TC", serif;
  --sans: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --header-h: 156px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-weight: 400; }
body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: min(1400px, calc(100% - 80px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 999; padding: 12px 18px; color: #fff; background: var(--navy); transition: top .2s; }
.skip-link:focus { top: 20px; }

.site-header { position: relative; z-index: 50; background: #fff; }
.utility-bar { height: 55px; color: rgba(255,255,255,.76); background: #2b2d2e; font-size: 12px; letter-spacing: .06em; }
.utility-inner { display: flex; align-items: center; justify-content: flex-end; height: 100%; }
.utility-langs { display: flex; align-items: center; margin-right: 30px; }
.utility-langs button { padding: 5px 8px; border: 0; color: rgba(255,255,255,.45); background: none; cursor: pointer; }
.utility-langs button.is-active { color: #fff; font-weight: 600; }
.utility-actions { display: flex; align-items: center; height: 100%; }
.utility-actions > a { margin-right: 8px; padding: 7px 16px; color: #45484a; background: #f5f4f0; border-radius: 20px; }
.utility-actions p { display: grid; align-content: center; height: 100%; margin: 0 0 0 16px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.18); }
.utility-actions strong { color: #fff; font-size: 17px; font-weight: 500; line-height: 1.1; letter-spacing: .03em; }
.utility-actions small { font-size: 10px; }

.primary-nav-wrap { height: 101px; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(0,0,0,.06); }
.primary-nav { display: flex; align-items: stretch; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 16px; min-width: 270px; }
.brand-mark { position: relative; display: block; width: 58px; height: 58px; transform: rotate(45deg); border: 4px solid var(--cyan); border-radius: 18px 4px 18px 4px; }
.brand-mark i, .brand-mark b { position: absolute; display: block; width: 30px; height: 4px; background: var(--cyan); border-radius: 3px; }
.brand-mark i { top: 16px; left: 10px; transform: rotate(-45deg); }
.brand-mark b { top: 30px; left: 12px; transform: rotate(45deg); }
.brand-name { display: grid; gap: 2px; }
.brand-name strong { font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .12em; }
.brand-name small { color: var(--navy); font-family: Georgia, serif; font-size: 9px; letter-spacing: .18em; }
.main-nav { display: flex; align-items: stretch; height: 100%; }
.main-nav a { position: relative; display: grid; align-content: center; min-width: 126px; padding: 0 22px; color: #303537; text-align: center; font-family: var(--serif); font-size: 16px; letter-spacing: .05em; border-left: 1px solid rgba(0,0,0,.08); }
.main-nav a::after { position: absolute; right: 20%; bottom: 0; left: 20%; height: 3px; background: var(--cyan); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav small { margin-top: 5px; color: #9aa0a2; font-family: var(--sans); font-size: 8px; letter-spacing: .18em; }
.menu-toggle { display: none; }

.hero { position: relative; height: min(720px, calc(100vh - var(--header-h))); min-height: 570px; overflow: hidden; background: var(--navy-deep); }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity 1s ease, visibility 1s; }
.hero-slide.is-active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.055); transition: transform 7s ease; }
.hero-slide.is-active > img { transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,38,.8) 0%, rgba(8,28,38,.42) 38%, rgba(8,28,38,.03) 72%), linear-gradient(0deg, rgba(0,0,0,.27), transparent 46%); }
.hero-content { position: relative; z-index: 2; display: grid; align-content: center; height: 100%; color: #fff; }
.hero-kicker { margin: 0 0 22px; font-size: 11px; letter-spacing: .32em; }
.hero h1, .hero h2 { margin: 0; font-family: var(--serif); font-size: clamp(56px, 6vw, 96px); font-weight: 500; line-height: 1.22; letter-spacing: .12em; text-shadow: 0 6px 24px rgba(0,0,0,.18); }
.hero-copy { margin: 30px 0; font-family: var(--serif); font-size: 17px; letter-spacing: .11em; }
.line-button { display: inline-flex; align-items: center; justify-content: space-between; width: 164px; padding: 12px 0; color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: .12em; border-bottom: 1px solid currentColor; }
.line-button span { font-size: 20px; font-weight: 300; transition: transform .2s; }
.line-button:hover span { transform: translateX(5px); }
.line-button-light { color: #fff; }
.hero-project-name { position: absolute; right: 5vw; bottom: 48px; z-index: 3; display: grid; color: #fff; text-align: right; }
.hero-project-name small { font-size: 11px; letter-spacing: .3em; }
.hero-project-name strong { margin-top: 5px; font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: .16em; }
.hero-arrow { position: absolute; top: 50%; z-index: 4; display: grid; place-items: center; width: 70px; height: 70px; padding: 0; color: var(--navy); background: rgba(255,255,255,.9); border: 0; border-radius: 50%; font-family: serif; font-size: 52px; font-weight: 200; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: color .2s, background .2s; }
.hero-arrow:hover { color: #fff; background: var(--cyan); }
.hero-prev { left: clamp(16px, 3vw, 58px); }
.hero-next { right: clamp(16px, 3vw, 58px); }
.hero-pagination { position: absolute; z-index: 4; right: 6vw; top: 50%; display: grid; gap: 14px; transform: translateY(-50%); }
.hero-pagination button { width: 6px; height: 6px; padding: 0; background: rgba(255,255,255,.55); border: 0; border-radius: 50%; cursor: pointer; transition: transform .2s, background .2s; }
.hero-pagination button.is-active { background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.24); transform: scale(1.2); }
.hero-scroll { position: absolute; z-index: 4; bottom: 0; left: 50%; display: flex; align-items: center; gap: 14px; color: #fff; font-size: 9px; letter-spacing: .3em; transform: rotate(90deg) translateX(-35px); transform-origin: left bottom; }
.hero-scroll span { display: block; width: 70px; height: 1px; overflow: hidden; background: rgba(255,255,255,.35); }
.hero-scroll span::after { display: block; width: 45%; height: 1px; background: #fff; content: ""; animation: scrollLine 2s infinite; }
@keyframes scrollLine { from { transform: translateX(-100%); } to { transform: translateX(240%); } }

.section-pad { padding-block: 120px; }
.eyebrow { margin: 0 0 20px; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .28em; }
.section-intro h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); font-weight: 600; letter-spacing: .08em; }
.section-intro > p:not(.eyebrow) { margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 2.1; letter-spacing: .06em; }

.news { background: #fff; }
.news-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 110px; }
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 90px 100px minmax(0,1fr) 46px; align-items: center; min-height: 112px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.news-item:hover { padding-inline: 12px; color: var(--navy); }
.news-item time { display: flex; align-items: flex-end; gap: 8px; }
.news-item time strong { color: var(--navy); font-family: Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1; }
.news-item time span { color: var(--muted); font-size: 9px; }
.news-tag { color: var(--cyan); font-size: 11px; letter-spacing: .08em; }
.news-item h3 { margin: 0; font-family: var(--serif); font-size: 16px; font-weight: 500; letter-spacing: .04em; }
.round-arrow { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; transition: color .2s, background .2s; }
.news-item:hover .round-arrow { color: #fff; background: var(--navy); }

.projects { overflow: hidden; background: var(--mist); }
.project-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.section-intro-dark > p:not(.eyebrow) { color: #5c6466; }
.project-controls { display: flex; align-items: center; gap: 25px; margin-bottom: 6px; }
.project-controls button { display: grid; place-items: center; width: 52px; height: 52px; color: var(--navy); background: transparent; border: 1px solid rgba(23,59,78,.35); border-radius: 50%; cursor: pointer; transition: color .2s, background .2s; }
.project-controls button:hover { color: #fff; background: var(--navy); }
.project-controls span { color: #8a9091; font-family: Georgia, serif; font-size: 12px; }
.project-controls b { color: var(--navy); font-size: 20px; font-weight: 400; }
.project-rail { display: grid; grid-auto-columns: minmax(340px, 31vw); grid-auto-flow: column; gap: 22px; width: max-content; padding-inline: max(40px, calc((100vw - 1400px) / 2)); transition: transform .6s cubic-bezier(.22,.75,.22,1); }
.project-card { position: relative; height: 700px; overflow: hidden; color: #fff; background: var(--navy); }
.project-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.project-card:hover > img { transform: scale(1.04); }
.project-card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,26,34,.9) 0%, rgba(10,26,34,.2) 55%, rgba(10,26,34,.28) 100%); }
.project-card-top { position: absolute; top: 30px; right: 30px; left: 30px; display: flex; align-items: center; justify-content: space-between; }
.project-card-top span { padding: 7px 12px; font-size: 9px; letter-spacing: .2em; border: 1px solid rgba(255,255,255,.65); }
.project-card-top small { font-size: 11px; letter-spacing: .12em; }
.project-card-body { position: absolute; right: 38px; bottom: 35px; left: 38px; }
.project-card-body > p { margin: 0 0 8px; font-size: 11px; letter-spacing: .14em; }
.project-card-body h3 { margin: 0 0 24px; font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: .1em; }
.project-card dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.35); }
.project-card dl div { display: grid; gap: 5px; }
.project-card dt { color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .1em; }
.project-card dd { margin: 0; font-family: Georgia, serif; font-size: 13px; }
.project-card-body > a { display: flex; align-items: center; justify-content: space-between; font-size: 9px; letter-spacing: .2em; }
.project-card-body > a span { font-size: 20px; }

.philosophy { position: relative; min-height: 820px; overflow: hidden; color: #fff; }
.philosophy > img { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; object-position: center; }
.philosophy-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,25,32,.86), rgba(7,25,32,.58) 52%, rgba(7,25,32,.18)); }
.philosophy-inner { position: relative; z-index: 2; display: grid; align-content: center; min-height: 820px; padding-block: 100px; }
.philosophy h2 { margin: 0 0 45px; font-family: var(--serif); font-size: clamp(50px, 5vw, 78px); font-weight: 500; line-height: 1.35; letter-spacing: .08em; }
.philosophy-copy { display: grid; grid-template-columns: 430px minmax(0, 570px); gap: 90px; }
.philosophy-copy > p { margin: 0; color: rgba(255,255,255,.84); font-family: var(--serif); font-size: 16px; line-height: 2.2; letter-spacing: .08em; }
.philosophy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.3); list-style: none; }
.philosophy li { display: flex; align-items: center; gap: 20px; padding: 18px 8px; border-bottom: 1px solid rgba(255,255,255,.3); }
.philosophy li span { color: var(--cyan); font-family: Georgia, serif; font-size: 11px; }

.aesthetics { background: #fff; }
.aesthetics-grid { display: grid; grid-template-columns: 1fr 460px; gap: 120px; align-items: center; }
.aesthetics-quote { position: relative; padding-left: 80px; }
.aesthetics-quote > span { position: absolute; top: -55px; left: 0; color: rgba(84,169,196,.18); font-family: Georgia, serif; font-size: 180px; line-height: 1; }
.aesthetics-quote h2 { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(32px, 3.2vw, 52px); font-weight: 500; line-height: 1.7; letter-spacing: .08em; }
.aesthetics-copy { padding-left: 50px; border-left: 1px solid var(--line); }
.aesthetics-copy p { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 2.2; letter-spacing: .06em; }

.member { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.member::before { position: absolute; inset: 0; background: radial-gradient(circle at 20% 35%, rgba(84,169,196,.25), transparent 28%), linear-gradient(135deg, transparent 50%, rgba(255,255,255,.035) 50%); content: ""; }
.member-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 720px; height: 720px; top: -270px; left: -250px; }
.orbit-two { width: 430px; height: 430px; right: -100px; bottom: -220px; }
.member-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 600px; gap: 120px; align-items: center; }
.member-heading h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 66px); font-weight: 500; line-height: 1.45; letter-spacing: .08em; }
.member-heading > p:not(.eyebrow) { margin: 0 0 30px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 2; }
.solid-button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 180px; padding: 15px 20px; color: #fff; background: var(--cyan); font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.solid-button span { font-size: 18px; }
.member-panel { padding: 45px; color: var(--ink); background: rgba(255,255,255,.95); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.member-panel-title { display: flex; align-items: center; gap: 22px; margin-bottom: 35px; }
.member-panel-title > span { display: grid; place-items: center; width: 66px; height: 66px; color: #fff; background: var(--navy); font-family: Georgia, serif; font-size: 34px; border-radius: 50%; }
.member-panel-title p { display: grid; gap: 4px; margin: 0; }
.member-panel-title small { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.member-panel-title strong { color: var(--navy); font-family: var(--serif); font-size: 25px; letter-spacing: .12em; }
.member-panel ul { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.member-panel li { display: flex; gap: 18px; padding: 15px 8px; font-size: 13px; border-bottom: 1px solid var(--line); }
.member-panel li:nth-child(odd) { border-right: 1px solid var(--line); }
.member-panel li span { color: var(--cyan); font-family: Georgia, serif; font-size: 10px; }

.site-footer { padding-top: 85px; color: #fff; background: #262a2c; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1fr .7fr; gap: 70px; padding-bottom: 70px; }
.brand-light .brand-name strong { color: #fff; }
.brand-light .brand-name small { color: var(--cyan); }
.footer-brand > p { max-width: 340px; margin: 30px 0 0; color: rgba(255,255,255,.48); font-family: var(--serif); font-size: 13px; line-height: 2; letter-spacing: .08em; }
.footer-contact h2 { margin: 0 0 25px; color: var(--cyan); font-family: Georgia, serif; font-size: 11px; letter-spacing: .25em; }
.footer-contact p { display: grid; grid-template-columns: 110px 1fr; margin: 0; padding: 10px 0; color: rgba(255,255,255,.72); font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-contact span { color: rgba(255,255,255,.4); }
.footer-call { display: grid; align-content: start; }
.footer-call p { margin: 0 0 4px; color: rgba(255,255,255,.45); font-size: 11px; }
.footer-call > a:first-of-type { margin-bottom: 25px; font-family: Georgia, serif; font-size: 28px; letter-spacing: .05em; }
.solid-button-light { background: var(--cyan); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; min-height: 70px; color: rgba(255,255,255,.4); font-size: 10px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.floating-cta { position: fixed; right: 0; top: 52%; z-index: 30; display: grid; place-items: center; width: 58px; min-height: 160px; padding: 16px 0; color: #fff; background: var(--cyan); box-shadow: 0 10px 30px rgba(11,42,56,.2); }
.floating-cta span { writing-mode: vertical-rl; font-size: 12px; letter-spacing: .22em; }
.floating-cta b { margin-top: 10px; font-weight: 400; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 25; display: grid; place-items: center; width: 46px; height: 46px; color: #fff; background: rgba(16,45,61,.88); border: 0; border-radius: 50%; opacity: 0; pointer-events: none; cursor: pointer; transition: opacity .2s, transform .2s; transform: translateY(10px); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1180px) {
  :root { --header-h: 100px; }
  .shell { width: min(100% - 48px, 1100px); }
  .utility-bar { display: none; }
  .primary-nav-wrap { height: 100px; }
  .main-nav a { min-width: 105px; padding-inline: 12px; font-size: 14px; }
  .brand { min-width: 235px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name strong { font-size: 21px; }
  .news-layout { grid-template-columns: 290px 1fr; gap: 60px; }
  .project-rail { grid-auto-columns: minmax(340px, 44vw); padding-inline: 24px; }
  .member-layout { grid-template-columns: 1fr 520px; gap: 60px; }
}

@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .primary-nav-wrap { height: 78px; }
  .brand { min-width: 0; }
  .brand-mark { width: 40px; height: 40px; border-width: 3px; border-radius: 12px 3px 12px 3px; }
  .brand-mark i, .brand-mark b { width: 22px; height: 3px; }
  .brand-mark i { top: 12px; left: 7px; }
  .brand-mark b { top: 22px; left: 8px; }
  .brand-name strong { font-size: 19px; }
  .brand-name small { font-size: 7px; }
  .menu-toggle { display: grid; align-content: center; gap: 5px; width: 58px; margin-left: auto; padding: 0 4px; background: none; border: 0; cursor: pointer; }
  .menu-toggle span { display: block; width: 30px; height: 1px; margin-left: auto; background: var(--navy); transition: transform .2s, opacity .2s; }
  .menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 78px 0 0; display: grid; align-content: start; height: auto; padding: 35px 24px; background: rgba(255,255,255,.98); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: .25s; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav a { display: flex; align-items: center; justify-content: space-between; min-height: 66px; padding: 0; text-align: left; border-left: 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .hero { min-height: 620px; }
  .hero-content { padding-inline: 10vw; }
  .hero h1, .hero h2 { font-size: clamp(48px, 10vw, 70px); }
  .hero-arrow { width: 52px; height: 52px; font-size: 38px; }
  .hero-project-name { bottom: 30px; }
  .hero-pagination { display: flex; top: auto; right: auto; bottom: 34px; left: 9vw; transform: none; }
  .hero-scroll { display: none; }
  .section-pad { padding-block: 85px; }
  .news-layout { grid-template-columns: 1fr; gap: 45px; }
  .news-item { grid-template-columns: 74px 80px 1fr 42px; }
  .project-rail { grid-auto-columns: minmax(330px, 67vw); }
  .project-card { height: 620px; }
  .philosophy-copy { grid-template-columns: 1fr 1fr; gap: 45px; }
  .aesthetics-grid { grid-template-columns: 1fr; gap: 65px; }
  .aesthetics-copy { max-width: 560px; margin-left: auto; }
  .member-layout { grid-template-columns: 1fr; }
  .member-panel { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-call { grid-column: 2; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 8px 20px; padding-block: 20px; }
  .footer-bottom p:nth-child(2) { grid-row: 2; }
}

@media (max-width: 600px) {
  .shell { width: calc(100% - 36px); }
  .brand { gap: 11px; }
  .brand-name strong { font-size: 17px; }
  .hero { height: calc(100svh - 78px); min-height: 590px; }
  .hero-slide > img { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,28,38,.72), rgba(8,28,38,.18)), linear-gradient(0deg, rgba(8,28,38,.6), transparent 58%); }
  .hero-content { align-content: end; padding: 0 18px 150px; }
  .hero h1, .hero h2 { font-size: 48px; line-height: 1.28; }
  .hero-copy { max-width: 260px; margin-block: 22px; font-size: 13px; line-height: 1.8; }
  .hero-arrow { top: 45%; width: 44px; height: 44px; font-size: 34px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-project-name { right: 20px; bottom: 23px; }
  .hero-project-name strong { font-size: 22px; }
  .hero-pagination { bottom: 27px; left: 20px; }
  .section-pad { padding-block: 68px; }
  .section-intro h2 { font-size: 40px; }
  .section-intro > p:not(.eyebrow) br { display: none; }
  .news-item {
    grid-template-columns: 62px minmax(0, 1fr) 36px;
    column-gap: 10px;
    min-height: 105px;
  }
  .news-item time {
    display: grid;
    align-content: center;
    align-items: start;
    gap: 5px;
    min-width: 0;
  }
  .news-item time strong { font-size: 29px; }
  .news-item time span {
    font-size: 8px;
    line-height: 1;
    white-space: nowrap;
  }
  .news-tag { grid-column: 2; align-self: end; }
  .news-item h3 { grid-column: 2; align-self: start; margin-top: 4px; font-size: 14px; line-height: 1.5; }
  .round-arrow { grid-column: 3; grid-row: 1 / span 2; width: 34px; height: 34px; }
  .project-heading { display: grid; gap: 25px; margin-bottom: 40px; }
  .project-controls { justify-content: flex-end; }
  .project-controls button { width: 44px; height: 44px; }
  .project-rail { grid-auto-columns: 84vw; gap: 14px; padding-inline: 18px; }
  .project-card { height: 580px; }
  .project-card-body { right: 25px; bottom: 24px; left: 25px; }
  .project-card-body h3 { font-size: 29px; }
  .philosophy, .philosophy-inner { min-height: 790px; }
  .philosophy-inner { align-content: end; }
  .philosophy h2 { font-size: 43px; }
  .philosophy-copy { grid-template-columns: 1fr; gap: 35px; }
  .philosophy-copy > p { font-size: 14px; }
  .aesthetics-quote { padding-left: 22px; }
  .aesthetics-quote > span { left: -18px; font-size: 130px; }
  .aesthetics-quote h2 { font-size: 29px; }
  .aesthetics-copy { padding-left: 24px; }
  .member-heading h2 { font-size: 42px; }
  .member-heading > p br { display: none; }
  .member-panel { padding: 28px 22px; }
  .member-panel ul { grid-template-columns: 1fr; }
  .member-panel li:nth-child(odd) { border-right: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-call { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:nth-child(2) { grid-row: auto; }
  .floating-cta { top: auto; right: 18px; bottom: 18px; display: flex; gap: 25px; width: auto; min-height: 0; padding: 13px 18px; }
  .floating-cta span { writing-mode: initial; }
  .floating-cta b { margin: 0; }
  .back-to-top { display: none; }
}

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