:root {
  --ink: #151615;
  --ink-soft: #252724;
  --paper: #f3f1eb;
  --white: #fff;
  --muted: #d9d4ca;
  --line: rgba(21, 22, 21, 0.15);
  --gold: #b89358;
  --gold-light: #dbc296;
  --max: 1360px;
  --pad: clamp(24px, 5vw, 72px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", "Noto Serif SC", serif;
  --sans: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
body.menu-open { overflow: hidden; }
body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; background: #e9e6df; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--max), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; background: #fff; padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.kicker { margin: 0 0 22px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

.site-header {
  position: fixed; z-index: 50; inset: 0 0 auto;
  height: 82px; padding: 0 var(--pad); display: flex; align-items: center; gap: 32px;
  color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,0));
}
.wordmark { display: inline-flex; align-items: center; flex: 0 0 auto; letter-spacing: .04em; line-height: 1; }
.wordmark span { font-size: 27px; font-weight: 300; letter-spacing: .09em; }
.wordmark i { height: 22px; width: 1px; margin: 0 11px; background: var(--gold); }
.wordmark b { font-size: 17px; letter-spacing: .18em; }
.desktop-nav { margin-left: auto; display: flex; gap: clamp(13px, 1.4vw, 26px); align-items: center; }
.desktop-nav a { position: relative; font-size: 13px; color: rgba(255,255,255,.78); white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 1px; background: var(--gold-light); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.language { font-size: 12px; letter-spacing: .08em; }
.header-cta { padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 12px; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; padding: 8px; }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-panel { position: fixed; z-index: -1; inset: 0; padding: 115px var(--pad) 40px; background: var(--ink); }
.mobile-panel nav { display: grid; gap: 12px; margin-bottom: 30px; }
.mobile-panel nav a { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 22px; }

.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid transparent; cursor: pointer; font-size: 13px; font-weight: 650; letter-spacing: .05em; transition: .25s ease; }
.button.primary { color: #171717; background: var(--gold-light); }
.button.primary:hover { background: #ead6b3; transform: translateY(-2px); }
.button.light { color: var(--ink); background: #fff; }
.button.light:hover { background: var(--gold-light); }
.button.outline { border-color: rgba(255,255,255,.45); color: #fff; }
.button.outline:hover { background: #fff; color: var(--ink); }
.text-link { display: inline-flex; gap: 14px; align-items: center; color: #fff; font-size: 13px; font-weight: 650; }
.text-link.dark { color: var(--ink); }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(5px); }

.hero { min-height: 100svh; position: relative; display: flex; align-items: end; color: #fff; overflow: hidden; background: #111; }
.hero-media { position: absolute; inset: 0; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: 0; transform: scale(1.025); transition: opacity 1.1s ease, transform 7s ease; }
.hero-image.active { opacity: 1; transform: scale(1); }
@keyframes heroScale { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,4,.88) 0%, rgba(4,5,4,.42) 52%, rgba(4,5,4,.12)), linear-gradient(0deg, rgba(0,0,0,.68), transparent 52%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(190px, 23vh, 255px); }
.hero h1 { max-width: 990px; margin: 0; font-family: var(--serif); font-size: clamp(50px, 6.7vw, 104px); font-weight: 400; line-height: 1; letter-spacing: -.045em; text-wrap: balance; }
.hero-content > p:not(.kicker) { max-width: 730px; margin: 32px 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.35vw, 21px); }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-proof { position: absolute; z-index: 3; left: var(--pad); right: var(--pad); bottom: 94px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.3); }
.hero-proof span { padding: 17px 22px 0 0; color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .08em; border-right: 1px solid rgba(255,255,255,.18); }
.hero-nav { position: absolute; z-index: 3; right: var(--pad); bottom: 30px; display: flex; gap: 25px; }
.hero-nav button { padding: 0 0 9px; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.55); background: transparent; font-size: 10px; letter-spacing: .08em; cursor: pointer; }
.hero-nav button span { margin-right: 9px; color: var(--gold-light); }
.hero-nav button.active { color: #fff; border-color: var(--gold-light); }

.stats { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: 42px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid > div:first-child { padding-left: 0; }
.stats-grid > div:last-child { border: 0; }
.stats strong { display: block; font-family: var(--serif); font-size: clamp(28px, 3.2vw, 49px); font-weight: 400; letter-spacing: -.03em; }
.stats span { color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: clamp(88px, 11vw, 168px) 0; }
.section.muted { background: #e8e4dc; }
.section-head { max-width: 920px; margin-bottom: 70px; }
.section-head.split { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 32px; }
.section-head h2, .factory-copy h2, .final-cta h2, .editorial-grid h2, .guard-grid h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(40px, 5.2vw, 78px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em;
}
.section-head > p:last-child { max-width: 710px; margin: 26px 0 0; color: #5d5e59; font-size: 17px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-card { padding: 38px 34px 10px 0; border-right: 1px solid var(--line); }
.value-card + .value-card { padding-left: 34px; }
.value-card:last-child { border-right: 0; }
.value-card > span, .process-card > span, .mode-card > span { color: var(--gold); font-size: 12px; letter-spacing: .14em; }
.value-card h3 { margin: 40px 0 17px; font-size: 20px; }
.value-card p { margin: 0; color: #66675f; }

.category-section { padding: clamp(88px, 10vw, 150px) 0; background: #ddd8ce; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-rows: 390px; }
.category-tile { position: relative; padding: 0; overflow: hidden; border: 0; text-align: left; color: #fff; background: #222; cursor: pointer; }
.category-tile.wide { grid-column: span 2; grid-row: span 2; }
.category-tile img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 55%); }
.category-tile:hover img { transform: scale(1.04); }
.category-tile > div { position: absolute; z-index: 2; inset: auto 26px 26px; }
.category-tile span { color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.category-tile h3 { margin: 5px 0; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.category-tile svg { position: absolute; right: 0; bottom: 8px; }

.market-gateway { background: #181a18; color: #fff; }
.market-gateway .section-head > p:last-child { color: rgba(255,255,255,.6); }
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.scene-market-grid { grid-template-columns: repeat(6, 1fr); }
.scene-market-grid .scene-card { grid-column: span 2; }
.scene-market-grid .scene-card:nth-child(-n+2) { grid-column: span 3; }
.market-card { position: relative; min-height: 570px; padding: 0; overflow: hidden; border: 0; text-align: left; color: #fff; background: #111; cursor: pointer; }
.market-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .9s ease; }
.market-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.86), transparent 62%); }
.market-card:hover img { transform: scale(1.035); }
.market-card .market-index { position: absolute; z-index: 2; left: 28px; top: 26px; font-size: 10px; letter-spacing: .18em; }
.market-card > div { position: absolute; z-index: 2; inset: auto 34px 32px; }
.market-card p { max-width: 520px; margin: 0 0 10px; color: rgba(255,255,255,.7); font-size: 13px; }
.market-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(32px, 3vw, 51px); font-weight: 400; line-height: 1.05; }
.market-card small { color: var(--gold-light); letter-spacing: .08em; }

.engineering-feature { display: grid; grid-template-columns: 1.45fr 1fr; min-height: 760px; color: #fff; background: #272925; }
.engineering-visual { position: relative; min-height: 620px; overflow: hidden; }
.engineering-visual img { height: 100%; object-fit: cover; }
.engineering-visual span { position: absolute; left: 24px; bottom: 22px; padding: 8px 12px; background: rgba(0,0,0,.7); font-size: 10px; letter-spacing: .1em; }
.engineering-copy { align-self: center; padding: clamp(55px, 7vw, 115px); }
.engineering-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(43px, 5vw, 76px); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.engineering-copy > p:not(.kicker) { margin: 30px 0 42px; color: rgba(255,255,255,.65); }
.engineering-copy button { color: #fff; }

.factory-feature { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 680px; background: var(--ink-soft); color: #fff; }
.factory-image { min-height: 560px; }
.factory-image img { height: 100%; object-fit: cover; }
.factory-copy { padding: clamp(60px, 8vw, 130px); align-self: center; }
.factory-copy h2 { font-size: clamp(42px, 5vw, 72px); }
.factory-copy > p:not(.kicker) { margin: 30px 0 42px; color: rgba(255,255,255,.64); }

.final-cta { padding: 100px 0; color: #fff; background: var(--gold); }
.final-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.final-cta .kicker { color: #fff; }
.final-cta h2 { max-width: 900px; }
.final-cta p:last-child { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,.78); }

.page-hero { position: relative; min-height: 72svh; padding: 190px 0 100px; display: flex; align-items: end; color: #fff; background: #111; }
.page-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.26)), linear-gradient(0deg, rgba(0,0,0,.45), transparent); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1, .contact-hero h1 { max-width: 1050px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 6.6vw, 94px); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.page-hero-content > p:last-child { max-width: 780px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }

.about-proof { color: #fff; background: #111310; }
.about-proof .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-proof .container > div { min-height: 150px; padding: 34px 28px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,.12); }
.about-proof .container > div:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.about-proof strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 46px); font-weight: 400; }
.about-proof span { margin-top: 7px; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.editorial-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 70px; }
.large-copy { max-width: 900px; margin: 36px 0 0; color: #555751; font-family: var(--serif); font-size: clamp(22px, 2.3vw, 34px); line-height: 1.55; }
.credential-section { padding: clamp(90px, 11vw, 155px) 0; color: #fff; background: #171916; }
.credential-section .section-head > p:last-child { color: rgba(255,255,255,.57); }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.credential-card { min-width: 0; padding: 20px; border: 1px solid rgba(255,255,255,.13); color: #fff; text-align: left; background: #20221f; cursor: pointer; }
.credential-card > span { display: block; margin-bottom: 16px; color: var(--gold-light); font-size: 10px; }
.credential-image { height: 390px; padding: 16px; display: grid; place-items: center; overflow: hidden; background: #ecebe5; }
.credential-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.credential-card:hover .credential-image img { transform: scale(1.02); }
.credential-card h3 { margin: 24px 0 7px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.credential-card p { margin: 0; min-height: 42px; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.65; }
.credential-section .source-note { color: rgba(255,255,255,.42); }
.brand-manifesto { padding: clamp(90px, 12vw, 180px) 0; color: #fff; text-align: center; background: var(--gold); }
.brand-manifesto p { margin: 0 0 20px; font-size: 12px; font-weight: 700; letter-spacing: .45em; }
.brand-manifesto h2 { max-width: 1100px; margin: 0 auto; font-family: var(--serif); font-size: clamp(54px, 8vw, 120px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.culture-intro { background: #f0ede6; }
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 110px; }
.mission-grid article { min-height: 430px; padding: 48px; display: flex; flex-direction: column; background: #fff; }
.mission-grid h2, .name-meaning h2 { margin: auto 0 22px; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); font-weight: 400; line-height: 1.12; letter-spacing: -.025em; }
.mission-grid article > p:last-child, .name-meaning > p:last-child { margin: 0; color: #65665f; }
.name-meaning { max-width: 1000px; margin: 0 0 120px auto; padding-left: clamp(0px, 8vw, 120px); border-left: 1px solid var(--gold); }
.name-meaning h2 { margin-top: 0; }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.culture-card { min-height: 320px; padding: 30px 26px; border-right: 1px solid var(--line); }
.culture-card:last-child { border-right: 0; }
.culture-card > span { color: var(--gold); font-size: 11px; }
.culture-card h3 { margin: 95px 0 14px; font-size: 19px; }
.culture-card p { margin: 0; color: #66675f; font-size: 14px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-card { min-height: 310px; padding: 30px; border: 1px solid rgba(21,22,21,.12); border-right: 0; }
.process-card:last-child { border-right: 1px solid rgba(21,22,21,.12); }
.process-card h3 { margin: 76px 0 14px; }
.process-card p { color: #66675f; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card { display: flex; gap: 22px; padding: 30px; background: #fff; }
.trust-mark { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 24px; }
.trust-card h3 { margin: 0 0 8px; }
.trust-card p { margin: 0; color: #696a64; font-size: 14px; }
.source-note { margin: 28px 0 0; color: #777870; font-size: 12px; }

.products-list { padding: 90px 0; }
.product-row { display: grid; grid-template-columns: 70px minmax(0,1.5fr) minmax(300px,1fr); gap: 46px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.product-no { align-self: start; color: var(--gold); font-size: 12px; letter-spacing: .1em; }
.product-image { height: 460px; overflow: hidden; background: #ddd; }
.product-image img { height: 100%; object-fit: cover; transition: transform .6s; }
.product-row:hover .product-image img { transform: scale(1.025); }
.product-copy > span { color: #777; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.product-copy h2 { margin: 8px 0 20px; font-family: var(--serif); font-size: clamp(36px, 4vw, 64px); font-weight: 400; line-height: 1.05; }
.product-copy p { color: #65665f; }
.product-copy small { display: block; margin: 14px 0; color: #8b603c; }
.product-copy .text-link { margin-top: 24px; }
.gallery-trigger { padding: 0; border: 0; background: transparent; cursor: pointer; }
.motion-section { padding: clamp(90px, 11vw, 155px) 0; color: #fff; background: #1b1d1b; }
.motion-section .section-head > p:last-child { color: rgba(255,255,255,.58); }
.motion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.motion-grid figure { margin: 0; }
.motion-grid video { width: 100%; aspect-ratio: 16/9; display: block; object-fit: cover; background: #090a09; }
.motion-grid figcaption { padding: 14px 0; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .09em; }
.series-section { padding: clamp(90px, 11vw, 160px) 0; background: #e5e0d6; }
.series-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.series-card { min-height: 380px; padding: 30px 24px; border-right: 1px solid var(--line); }
.series-card:last-child { border-right: 0; }
.series-card > span { color: var(--gold); font-size: 11px; }
.series-card h3 { margin: 100px 0 15px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.series-card p { color: #5f605b; }
.series-card small { display: block; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: #77786f; }
.guard-section, .support-section { padding: 100px 0; color: #fff; background: var(--ink); }
.guard-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 80px; align-items: start; }
.guard-grid ul { margin: 0; padding: 0; list-style: none; }
.guard-grid li { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.78); }
.guard-grid p:not(.kicker) { color: rgba(255,255,255,.62); }

.compare-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 100px; }
.sticky { position: sticky; top: 130px; align-self: start; }
.compare-row { display: grid; grid-template-columns: 1fr 36px 1.3fr; gap: 22px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.compare-row span { color: #777; }
.compare-row strong { font-size: 18px; }
.compare-row svg { color: var(--gold); }
.flow-section { padding: 110px 0; color: #fff; background: var(--ink-soft); }
.flow-section .section-head h2 { font-size: clamp(27px, 3vw, 45px); line-height: 1.3; }
.flow-grid { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.flow-step { min-height: 190px; padding: 24px 18px; border-right: 1px solid rgba(255,255,255,.15); }
.flow-step span { color: var(--gold-light); font-size: 11px; }
.flow-step strong { display: block; margin-top: 75px; font-size: 13px; }

.project-section { padding: 100px 0; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px 18px; }
.project-card { min-width: 0; padding: 0; color: inherit; text-align: left; border: 0; background: transparent; cursor: pointer; }
.project-cover { position: relative; overflow: hidden; background: #d8d4cb; }
.project-cover img { width: 100%; height: 520px; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.project-cover > span { position: absolute; top: 20px; left: 20px; min-width: 42px; padding: 9px 12px; color: #fff; font-size: 10px; letter-spacing: .14em; text-align: center; background: rgba(17,18,17,.72); backdrop-filter: blur(8px); }
.project-copy { min-height: 198px; padding: 24px 4px 12px; border-bottom: 1px solid var(--line); }
.project-copy p { min-height: 50px; margin: 0; color: #77786f; font-size: 12px; line-height: 1.75; }
.project-copy h2 { margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(28px, 2.4vw, 38px); font-weight: 400; }
.project-copy strong { display: inline-flex; gap: 9px; align-items: center; color: #8b6a39; font-size: 11px; font-weight: 500; letter-spacing: .08em; }
.project-copy strong svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.project-card:hover .project-cover img { transform: scale(1.025); filter: brightness(.92); }
.project-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.template-list { margin: 0; padding: 0; list-style: none; }
.template-list li { display: grid; grid-template-columns: 45px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.template-list span { color: var(--gold); font-size: 11px; }

.brands-section { padding: 100px 0; background: #e6e1d7; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.brand-card { min-height: 530px; padding: 42px; display: flex; flex-direction: column; background: var(--paper); }
.brand-card > span { color: var(--gold); font-size: 11px; }
.brand-card > p:first-of-type { margin-top: auto; color: #777; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.brand-card h2 { margin: 10px 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 62px); font-weight: 400; }
.brand-card .line { width: 42px; height: 1px; margin: 16px 0 28px; background: var(--gold); }
.brand-card > p:last-child { color: #65665f; }

.mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mode-card { min-height: 340px; padding: 42px; border: 1px solid var(--line); }
.mode-card h2 { margin: 100px 0 15px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.mode-card p { max-width: 520px; color: #696a63; }
.support-section { background: #393b38; }

.news-grid { display: grid; border-top: 1px solid var(--line); }
.news-card { display: grid; grid-template-columns: 100px 1fr; padding: 36px 0; border-bottom: 1px solid var(--line); }
.news-card > span { color: var(--gold); font-size: 11px; }
.news-card p { margin: 0; color: #777; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.news-card h2 { max-width: 950px; margin: 8px 0; font-family: var(--serif); font-size: clamp(27px, 3vw, 44px); font-weight: 400; }
.empty-note { margin: 38px 0 0; color: #777; font-size: 13px; }

.contact-hero { min-height: 100svh; padding: 160px 0 100px; color: #fff; background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-hero h1 { font-size: clamp(46px, 5.5vw, 78px); }
.contact-hero .reveal > p:not(.kicker) { max-width: 600px; color: rgba(255,255,255,.65); }
.contact-info { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-info p { display: flex; gap: 15px; align-items: flex-start; color: rgba(255,255,255,.8) !important; }
.contact-info svg { flex: 0 0 18px; margin-top: 4px; color: var(--gold-light); }
.contact-info a { color: rgba(255,255,255,.82); }
.contact-info a:hover { color: var(--gold-light); }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; padding: 40px; background: #242624; }
.enquiry-form label { display: grid; gap: 8px; }
.enquiry-form label > span { color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-form .full { grid-column: 1 / -1; }
.enquiry-form input:not([type="checkbox"]), .enquiry-form select, .enquiry-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0; padding: 12px 0; color: #fff; background: transparent; outline: 0;
}
.enquiry-form select option { color: #111; }
.enquiry-form textarea { min-height: 110px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--gold-light); }
.enquiry-form .consent { display: flex; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; }
.enquiry-form .consent span { text-transform: none; letter-spacing: 0; }
.enquiry-form button { justify-self: start; }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--gold-light); font-size: 13px; }

.social-section { padding: clamp(90px, 11vw, 150px) 0; background: #e9e4da; }
.social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.social-card { min-width: 0; padding: 20px; background: var(--paper); }
.social-card > span { color: var(--gold); font-size: 10px; }
.social-card > div { margin: 18px 0 22px; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: #fff; }
.social-card img { width: 100%; height: 100%; object-fit: contain; }
.social-card h3 { margin: 0; font-family: var(--serif); font-size: 21px; font-weight: 400; }

.site-footer { padding: 75px 0 22px; color: #fff; background: #0e0f0e; }
.footer-top { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 70px; padding-bottom: 70px; }
.lightmark { color: #fff; }
.footer-top > div:first-child p { color: rgba(255,255,255,.42); font-size: 12px; }
.footer-top nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; align-content: start; }
.footer-top nav a { color: rgba(255,255,255,.62); font-size: 13px; }
.footer-contact a { font-family: var(--serif); font-size: 28px; }
.footer-contact p { color: rgba(255,255,255,.48); font-size: 13px; }
.footer-contact .footer-small-link { color: rgba(255,255,255,.68); font-family: inherit; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: 10px; }

.gallery-dialog { position: fixed; z-index: 1000; inset: 0; padding: 14px; overflow: auto; color: var(--ink); background: rgba(4,5,4,.9); backdrop-filter: blur(8px); }
.gallery-dialog[hidden] { display: none; }
.gallery-shell { width: min(1460px, 100%); min-height: calc(100svh - 28px); margin: 0 auto; padding: clamp(28px, 4vw, 70px); background: var(--paper); }
.gallery-shell > header { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.gallery-shell header h2 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 76px); font-weight: 400; line-height: 1; }
.gallery-shell header p:last-child { max-width: 760px; margin: 22px 0 0; color: #66675f; }
.gallery-close { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.gallery-source { max-width: 980px; margin: 22px 0 40px; color: #77786f; font-size: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 14px; }
.gallery-grid figure { margin: 0; background: #ddd; }
.gallery-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.gallery-grid figcaption { display: flex; gap: 14px; padding: 12px 2px; color: #66675f; font-size: 11px; letter-spacing: .08em; background: var(--paper); }
.gallery-grid figcaption span { color: var(--gold); }
.gallery-dialog.credential-mode .gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-dialog.credential-mode .gallery-grid figure { background: #ecebe5; }
.gallery-dialog.credential-mode .gallery-grid img { aspect-ratio: 3/4; padding: 22px; object-fit: contain; }
.gallery-shell > footer { margin-top: 55px; padding-top: 32px; display: flex; justify-content: space-between; gap: 40px; align-items: center; border-top: 1px solid var(--line); }
.gallery-shell > footer p { max-width: 720px; color: #66675f; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .market-card { min-height: 500px; }
  .flow-grid { grid-template-columns: repeat(4, 1fr); }
  .flow-step { border-bottom: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 820px) {
  :root { --pad: 22px; }
  .site-header { height: 72px; }
  .wordmark span { font-size: 22px; }
  .hero h1 { font-size: clamp(49px, 15vw, 78px); }
  .hero-content { padding-bottom: 100px; }
  .hero-content { padding-bottom: 235px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); bottom: 74px; }
  .hero-proof span { padding-top: 10px; }
  .hero-nav { left: var(--pad); right: auto; bottom: 22px; max-width: calc(100% - var(--pad) * 2); overflow-x: auto; }
  .hero-nav button { white-space: nowrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div, .stats-grid > div:first-child { padding: 28px 12px 28px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section-head.split, .final-grid { align-items: start; flex-direction: column; display: flex; }
  .values-grid, .trust-grid, .brand-grid, .mode-grid, .project-grid { grid-template-columns: 1fr; }
  .value-card, .value-card + .value-card { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card h3 { margin-top: 24px; }
  .category-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .category-tile.wide { grid-column: auto; grid-row: auto; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card { min-height: 470px; }
  .engineering-feature { grid-template-columns: 1fr; }
  .engineering-visual { min-height: 500px; }
  .engineering-copy { padding: 75px var(--pad); }
  .factory-feature { grid-template-columns: 1fr; }
  .factory-image { min-height: 350px; }
  .factory-copy { padding: 70px var(--pad); }
  .page-hero { min-height: 68svh; }
  .editorial-grid, .guard-grid, .compare-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-proof .container { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-card:nth-child(2) { border-right: 0; }
  .culture-card { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 1px solid rgba(21,22,21,.12); }
  .product-row { grid-template-columns: 36px 1fr; gap: 16px; }
  .product-image { grid-column: 2; height: 330px; }
  .product-copy { grid-column: 2; }
  .sticky { position: static; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .motion-grid, .gallery-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-dialog.credential-mode .gallery-grid { grid-template-columns: 1fr; }
  .series-card { border-bottom: 1px solid var(--line); }
  .series-card:nth-child(2n) { border-right: 0; }
  .project-card img { height: 360px; }
  .brand-card { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .gallery-shell > footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 540px) {
  .language { display: none; }
  .stats strong { font-size: 29px; }
  .stats span { font-size: 10px; }
  .section, .products-list, .project-section { padding: 76px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head h2, .factory-copy h2, .final-cta h2, .editorial-grid h2, .guard-grid h2 { font-size: 40px; }
  .hero h1 { font-size: 47px; }
  .hero-content { padding-bottom: 260px; }
  .hero-proof { bottom: 78px; }
  .hero-proof span { font-size: 9px; padding-right: 8px; }
  .hero-nav { gap: 16px; }
  .hero-nav button { font-size: 0; }
  .hero-nav button span { font-size: 10px; }
  .market-card { min-height: 390px; }
  .market-card > div { inset: auto 24px 24px; }
  .engineering-visual { min-height: 360px; }
  .engineering-copy h2 { font-size: 40px; }
  .page-hero h1, .contact-hero h1 { font-size: 48px; }
  .about-proof .container > div { min-height: 118px; padding: 24px 16px; }
  .credential-image { height: 430px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .mission-grid article { min-height: 360px; padding: 32px 24px; }
  .name-meaning { margin-bottom: 80px; padding-left: 22px; }
  .culture-grid, .series-grid { grid-template-columns: 1fr; }
  .culture-card, .culture-card:nth-child(2), .series-card, .series-card:nth-child(2n) { min-height: 280px; border-right: 0; }
  .culture-card h3, .series-card h3 { margin-top: 60px; }
  .process-card, .process-card:nth-child(2) { border-right: 1px solid rgba(21,22,21,.12); }
  .product-row { grid-template-columns: 1fr; }
  .product-no, .product-image, .product-copy { grid-column: 1; }
  .flow-grid { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .enquiry-form label, .enquiry-form .full { grid-column: 1; }
  .gallery-dialog { padding: 6px; }
  .gallery-shell { padding: 24px 16px 32px; }
  .gallery-shell > header { gap: 16px; }
  .gallery-shell header h2 { font-size: 40px; }
  .gallery-close { width: 42px; height: 42px; }
  .gallery-source { margin-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* Answer-first content and source-backed manufacturing evidence */
.answer-section { padding: clamp(72px, 9vw, 132px) 0; background: #f1eee8; color: #191919; }
.answer-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.answer-list { border-top: 1px solid rgba(25, 25, 25, .2); }
.answer-item { border-bottom: 1px solid rgba(25, 25, 25, .2); padding: 24px 0; }
.answer-item summary { cursor: pointer; list-style: none; font-size: clamp(18px, 2vw, 26px); font-weight: 560; padding-right: 36px; position: relative; }
.answer-item summary::-webkit-details-marker { display: none; }
.answer-item summary::after { content: "+"; position: absolute; right: 4px; top: 0; color: #9a7040; }
.answer-item[open] summary::after { content: "−"; }
.answer-item p { max-width: 720px; margin: 18px 0 0; color: #5d5a55; line-height: 1.9; }
.about-story img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-top: 34px; }
.factory-evidence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 48px; }
.factory-evidence figure { margin: 0; background: #171717; color: #fff; }
.factory-evidence img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.factory-evidence figcaption { padding: 14px 16px; font-size: 13px; letter-spacing: .08em; }
@media (max-width: 820px) {
  .answer-layout { grid-template-columns: 1fr; }
  .factory-evidence { grid-template-columns: 1fr 1fr; }
}

.market-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.market-actions a, .market-actions button { position: relative; z-index: 3; color: var(--gold-light); font: inherit; font-size: 12px; letter-spacing: .08em; background: transparent; border: 0; padding: 0; cursor: pointer; }
.market-actions a { display: inline-flex; align-items: center; gap: 8px; }
.market-actions svg { width: 16px; }
.market-summary { background: #171817; color: #fff; }
.market-summary .container { min-height: 128px; display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 24px; }
.market-summary p, .market-summary span { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.market-summary strong { font-family: var(--serif); font-size: clamp(24px, 3vw, 42px); font-weight: 400; }
.market-points { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.market-point { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-point span, .channel-card span { color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.market-point h3 { margin: 90px 0 0; font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.25; }
.market-system { padding: clamp(80px, 10vw, 150px) 0; background: #252724; color: #fff; }
.market-system-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.market-system h2 { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: 1.05; font-weight: 400; }
.market-system ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 34px 0; }
.market-system li { padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.75); font-size: 13px; }
.market-system img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.market-system-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.market-system .outline { color: #fff; }
.scene-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scene-link { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scene-link span { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 34px); }
.scene-link svg { width: 22px; flex: 0 0 auto; transition: transform .25s ease; }
.scene-link:hover svg { transform: translateX(5px); }
.keyword-hub { background: #f2f0eb; }
.keyword-group + .keyword-group { margin-top: 48px; }
.keyword-group > h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); font-weight: 500; }
.keyword-link-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.keyword-link-grid a { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.keyword-link-grid a:hover { background: var(--white); }
.keyword-link-grid span { font-size: 16px; font-weight: 600; }
.keyword-link-grid svg { width: 18px; flex: 0 0 auto; }

/* Reduce layout and paint work on long pages without removing content. */
.section,
.category-section,
.engineering-feature,
.factory-feature,
.products-list,
.motion-section,
.series-section,
.project-section,
.brands-section,
.support-section,
.answer-section,
.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.channel-card { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.channel-card h3 { margin: 0 0 50px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.channel-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
@media (max-width: 980px) {
  .keyword-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .scene-market-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-market-grid .scene-card,
  .scene-market-grid .scene-card:nth-child(-n+2) { grid-column: span 1; }
  .market-points { grid-template-columns: repeat(2, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .market-system-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .scene-market-grid, .scene-link-grid, .keyword-link-grid { grid-template-columns: 1fr; }
  .market-summary .container { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 28px; }
  .market-points, .channel-grid { grid-template-columns: 1fr; }
  .market-point { min-height: 200px; }
  .market-point h3 { margin-top: 55px; }
}

/* Privacy and responsible conversion */
.privacy-section { padding: clamp(76px, 10vw, 150px) 0; background: #f4f1eb; }
.privacy-layout { display: grid; grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.privacy-updated { position: sticky; top: 112px; margin: 0; color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.privacy-list { border-top: 1px solid var(--line); }
.privacy-card { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 24px; padding: 34px 0 38px; border-bottom: 1px solid var(--line); }
.privacy-card > span { color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.privacy-card h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); font-weight: 400; }
.privacy-card p { max-width: 820px; margin: 0; color: var(--muted); line-height: 1.9; }
.enquiry-form .consent a { color: inherit; text-decoration-color: rgba(154,112,64,.55); text-underline-offset: 3px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: #fff; }
.crawl-snapshot { min-height: 100svh; padding: 132px var(--pad) 80px; background: #171817; color: #fff; }
.crawl-snapshot article { width: min(1120px, 100%); margin: 0 auto; }
.crawl-snapshot article > p:first-child { color: var(--gold-light); letter-spacing: .18em; }
.crawl-snapshot h1 { max-width: 980px; margin: 28px 0; font-family: var(--serif); font-size: clamp(45px, 7vw, 94px); font-weight: 400; line-height: 1.02; }
.crawl-snapshot p { max-width: 840px; color: rgba(255,255,255,.72); line-height: 1.8; }
.crawl-snapshot ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 44px 0; padding: 1px; list-style: none; background: rgba(255,255,255,.15); }
.crawl-snapshot li { min-height: 130px; padding: 26px; background: #171817; }
.crawl-snapshot strong, .crawl-snapshot span { display: block; }
.crawl-snapshot strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.crawl-snapshot span { margin-top: 12px; color: rgba(255,255,255,.58); line-height: 1.6; }
@media (max-width: 820px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 30px; }
  .privacy-updated { position: static; }
  .crawl-snapshot ul { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .privacy-card { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
}
