@charset "UTF-8";

/* Farabazyaft CN — single stylesheet, no external fonts or assets.
   Brand palette comes from the original Elementor kit; the layout follows
   mainland Chinese B2B conventions: denser type, a rotating banner, paired
   Chinese/English section headings, numbered advantage blocks, a prominent
   hotline, breadcrumbs, and a fixed contact rail. */

:root {
  --green: #1cbe7b;
  --green-dark: #159962;
  --green-deep: #0f7a4e;
  --green-soft: #e8f8f1;
  --blue: #01adee;
  --blue-soft: #e5f6fd;
  --lime: #b6d644;
  /* Warm accent for "hot" calls to action. Chinese corporate sites lean on a
     red/orange for these; the brand green stays the primary identity colour. */
  --accent: #e8542f;
  --ink: #222;
  --ink-soft: #4a4a4a;
  --grey: #6d7073;
  --line: #e4e7e8;
  --bg: #ffffff;
  --band: #f5f7f8;
  --dark: #1f2223;

  --wrap: 1240px;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 6px 18px rgba(0, 0, 0, .06);

  /* No webfont: Chinese webfonts run to megabytes and Google Fonts is
     unreachable from the mainland. These are already on the reader's device.
     Microsoft YaHei leads on Windows, which is most of the audience. */
  --sans: "PingFang SC", "Microsoft YaHei", "微软雅黑", "Hiragino Sans GB",
    "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei",
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  /* Denser than a Western layout — closer to what Chinese readers expect. */
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 { line-height: 1.45; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--green); color: #fff; padding: .7rem 1.1rem; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.narrow-block { max-width: 900px; margin: 0 auto 2rem; color: var(--ink-soft); }
.center { text-align: center; }

.section { padding: clamp(2.5rem, 5vw, 4.25rem) 0; }
.band { background: var(--band); }
.lede { font-size: 1.02rem; color: var(--ink-soft); }

/* Paired Chinese / English section heading — the single strongest visual
   signal that a site was made for a Chinese audience. */
.head { position: relative; text-align: center; margin-bottom: 2.25rem; }
.head h2 { margin: 0; letter-spacing: .04em; }
.head-en {
  margin: .15rem 0 0; font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: #a8afb2; font-weight: 600;
}
.head::after {
  content: ""; display: block; width: 44px; height: 3px;
  background: var(--green); margin: .9rem auto 0; border-radius: 2px;
}
.head-more {
  position: absolute; right: 0; bottom: .35rem;
  font-size: .85rem; color: var(--grey); font-weight: 600;
}
.head-more:hover { color: var(--green); }

/* ------------------------------------------------------------- top bar */

.topbar { background: var(--band); border-bottom: 1px solid var(--line); font-size: .78rem; color: var(--grey); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.langs { display: flex; gap: .85rem; }
.lang { color: var(--grey); }
.lang.current { color: var(--green-dark); font-weight: 700; }

/* ------------------------------------------------------------- header */

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 80px; }

.brand img { width: 176px; height: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; color: var(--ink); font-weight: 600; font-size: .98rem;
  padding: 0 1.15rem; line-height: 79px; position: relative;
}
.site-nav a:hover { color: var(--green-dark); }
.site-nav a[aria-current="page"] { color: var(--green-dark); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 1.15rem; right: 1.15rem; bottom: -1px;
  height: 3px; background: var(--green);
}

/* Prominent hotline. Chinese B2B sites put the phone number in the header at
   a size Western sites reserve for headings. */
.header-tel { display: flex; align-items: center; gap: .6rem; padding-left: 1.4rem; border-left: 1px solid var(--line); color: var(--green); }
.header-tel small { display: block; font-size: .7rem; color: var(--grey); line-height: 1.4; }
.header-tel a { display: block; font-size: 1.12rem; font-weight: 700; color: var(--green-dark); line-height: 1.25; white-space: nowrap; }

.nav-toggle {
  display: none; margin-left: auto; width: 42px; height: 42px;
  background: none; border: 1px solid var(--line); border-radius: 4px;
  cursor: pointer; padding: 0; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------- crumbs */

.crumbs { background: var(--band); border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--grey); }
.crumbs .wrap { padding-block: .7rem; }
.crumbs a { color: var(--grey); }
.crumbs a:hover { color: var(--green); }
.crumbs .sep { margin: 0 .5rem; color: #c3c8ca; }

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-block; padding: .7rem 1.7rem; border-radius: 3px;
  font-weight: 700; font-size: .93rem; line-height: 1.5;
  border: 1px solid transparent; cursor: pointer; transition: all .18s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-outline { border-color: var(--green); color: var(--green-dark); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #cf4423; color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--green-dark); }

/* ------------------------------------------------------------- banner */

.banner { position: relative; overflow: hidden; background: var(--dark); }
.banner-track { position: relative; height: clamp(340px, 46vw, 560px); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,30,22,.82) 0%, rgba(10,30,22,.55) 45%, rgba(10,30,22,.15) 100%); }
.slide-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.slide-copy h1 { color: #fff; margin-bottom: .35em; max-width: 17em; text-shadow: 0 2px 14px rgba(0,0,0,.3); }
.slide-copy p { font-size: clamp(.95rem, 1.6vw, 1.12rem); max-width: 34em; margin-bottom: 1.6em; color: rgba(255,255,255,.92); }
.slide-copy .btn { align-self: flex-start; }

.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 68px; border: 0; cursor: pointer;
  background: rgba(0,0,0,.28); color: #fff; font-size: 2rem; line-height: 1;
  transition: background .2s;
}
.banner-arrow:hover { background: var(--green); }
.banner-arrow.prev { left: 0; }
.banner-arrow.next { right: 0; }

.banner-dots { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: .55rem; }
.banner-dots button {
  width: 26px; height: 4px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.45); transition: background .2s;
}
.banner-dots button[aria-selected="true"] { background: var(--green); }

/* ------------------------------------------------------------- stat strip */

.statstrip { background: var(--green-dark); color: #fff; }
.statstrip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ss { text-align: center; padding: 1.5rem .8rem; border-right: 1px solid rgba(255,255,255,.14); }
.ss:last-child { border-right: 0; }
.ss-fig { display: block; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; }
.ss-fig small { font-size: .5em; font-weight: 600; margin-left: .18em; opacity: .85; }
.ss-label { display: block; font-size: .82rem; opacity: .85; margin-top: .2rem; }

/* ------------------------------------------------------------- about split */

.about-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; margin-bottom: 2.75rem; }
.about-slogan { font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--green-dark); margin-bottom: .5em; }
.about-copy p { color: var(--ink-soft); }
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cap { padding: 1.5rem 1.4rem; background: #fff; transition: background .2s; }
.cap:hover { background: var(--green-soft); }
.cap h3 { margin-bottom: .25em; color: var(--green-dark); }
.cap p { margin: 0; color: var(--grey); font-size: .9rem; }

/* ------------------------------------------------------------- advantages */

.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.adv { position: relative; background: #fff; padding: 2.1rem 1.5rem 1.7rem; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--green); }
.adv-no { position: absolute; top: .7rem; right: 1.1rem; font-size: 2.2rem; font-weight: 800; color: var(--green-soft); line-height: 1; }
.adv h3 { color: var(--ink); margin-bottom: .45em; }
.adv p { margin: 0; font-size: .9rem; color: var(--grey); }

/* ------------------------------------------------------------- cards/tiles */

.card-grid { display: grid; gap: 1.1rem; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--band); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.1rem 1.2rem 1.3rem; }
.card-body h3 { color: var(--green-dark); }
.card-body p { margin: 0; font-size: .88rem; color: var(--grey); }

.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.tile img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s; }
.tile:hover img { transform: scale(1.06); }
.tile-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem .9rem .75rem; color: #fff; font-weight: 700; font-size: .92rem; background: linear-gradient(to top, rgba(0,0,0,.78), transparent); }

/* ------------------------------------------------------------- urban */

.urban-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; }
.urban-copy p { color: var(--ink-soft); }
.urban-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ------------------------------------------------------------- cta band */

.ctaband { background: linear-gradient(100deg, var(--green-deep), var(--green-dark) 55%, #0a8fbe); color: #fff; padding: 2.5rem 0; }
.ctaband-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ctaband h2 { color: #fff; margin-bottom: .25em; }
.ctaband p { margin: 0; color: rgba(255,255,255,.88); font-size: .94rem; max-width: 46em; }
.ctaband-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ------------------------------------------------------------- page head */

.page-head { padding: clamp(2rem, 4.5vw, 3.25rem) 0 0; }
.page-head h1 { color: var(--ink); margin-bottom: .25em; }
.page-lead { font-size: 1.02rem; color: var(--grey); max-width: 820px; }

/* ------------------------------------------------------------- about page */

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.3rem, 3vw, 2.4rem); }
.mv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.8rem; border-top: 3px solid var(--green); }
.mv h2 { color: var(--green-dark); }
.mv p { color: var(--ink-soft); }

.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.value { padding: 1.4rem 1.2rem; border-radius: var(--radius); background: var(--green-soft); }
.value:nth-child(even) { background: var(--blue-soft); }
.value h3 { margin-bottom: .35em; }
.value-sub { display: block; font-size: .8rem; font-weight: 600; color: var(--grey); }
.value p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

/* ------------------------------------------------------------- products */

.product-jump { position: sticky; top: 80px; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 6px rgba(0,0,0,.04); }
.product-jump ul { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; overflow-x: auto; }
.product-jump a { display: block; padding: .8rem 1.1rem; color: var(--grey); font-weight: 600; font-size: .88rem; white-space: nowrap; }
.product-jump a:hover { color: #fff; background: var(--green); }

.product { scroll-margin-top: 136px; }
.product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.product-copy .section-title { color: var(--green-dark); }
.spec-title { margin-top: 1.5em; font-size: .98rem; }
.spec-list { list-style: none; padding: 0; }
.spec-list li { position: relative; padding-left: 1.5rem; margin-bottom: .45em; color: var(--ink-soft); font-size: .92rem; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; background: var(--green); transform: rotate(45deg); }
.product-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6em; }
.product-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.product-media img:only-child { grid-column: span 2; aspect-ratio: 16 / 10; }
.section-title { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

/* ------------------------------------------------------------- project */

.project-hero { padding: clamp(2rem, 4.5vw, 3.25rem) 0 clamp(1.8rem, 4vw, 2.75rem); background: var(--band); }
.project-hero h1 { color: var(--ink); }
.project-intro { max-width: 900px; color: var(--ink-soft); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { background: #fff; border-radius: var(--radius); padding: 1.3rem 1.2rem; border-top: 3px solid var(--green); box-shadow: var(--shadow); }
.stat:nth-child(2) { border-top-color: var(--blue); }
.stat:nth-child(3) { border-top-color: var(--lime); }
.stat:nth-child(4) { border-top-color: var(--accent); }
.stat-figure { display: block; font-size: 1.85rem; font-weight: 700; color: var(--green-dark); line-height: 1.2; }
.stat-label { display: block; font-size: .84rem; color: var(--grey); margin-top: .25rem; }
.caption { margin-top: 1rem; font-size: .8rem; color: var(--grey); }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.fact { padding: 1.3rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); }
.fact h3 { color: var(--green-dark); font-size: .98rem; }
.fact p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.frame-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2rem; }
.frame { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.frame figcaption { padding: 1.2rem 1.25rem 1.4rem; position: relative; }
.frame-n { position: absolute; top: -19px; left: 1.25rem; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700; }
.frame figcaption h3 { margin-top: 1rem; color: var(--green-dark); }
.frame figcaption p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.color-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.color { padding: 1.4rem 1.3rem; border-radius: var(--radius); color: #fff; }
.color:nth-child(1) { background: #c0392b; }
.color:nth-child(2) { background: #2b2b2b; }
.color h3 { color: #fff; margin-bottom: .25em; }
.color p { margin: 0; font-size: .9rem; opacity: .9; }

.timeline { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.timeline li { display: flex; gap: 1.1rem; padding-bottom: 1.6rem; position: relative; }
.timeline li:not(:last-child)::before { content: ""; position: absolute; left: 18px; top: 42px; bottom: 0; width: 2px; background: var(--line); }
.step-n { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-weight: 700; border: 2px solid var(--green); }
.timeline h3 { margin-bottom: .15em; }
.timeline p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.pull { margin: 2rem 0 0; padding: 1.6rem 1.8rem; background: var(--green-soft); border-left: 3px solid var(--green); }
.pull p { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: .3em; }
.pull cite { font-style: normal; color: var(--grey); font-size: .9rem; }
.cta { background: var(--band); }

/* ------------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.8rem; border-top: 3px solid var(--green); }
.contact-card h2 { color: var(--green-dark); font-size: 1.2rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.contact-list li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.contact-key { color: var(--grey); font-size: .85rem; font-weight: 600; }
.contact-val { color: var(--ink); font-weight: 600; }
a.contact-val { color: var(--green-dark); }
.addr-note { font-size: .84rem; color: var(--grey); margin-bottom: .45em; }
.addr-local { background: var(--band); padding: .85rem 1rem; border-radius: var(--radius); font-size: .92rem; margin-bottom: 1.4em; }
.contact-about { color: var(--grey); font-size: .93rem; }

/* ------------------------------------------------------------- 404 */

.notfound { padding: clamp(3rem, 9vw, 6rem) 0; }
.notfound-code { font-size: clamp(3.5rem, 12vw, 7rem); font-weight: 800; color: var(--green-soft); line-height: 1; margin: 0; }

/* ------------------------------------------------------------- rail */

.rail { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 60; display: flex; flex-direction: column; gap: 1px; }
.rail-item {
  position: relative; width: 62px; min-height: 62px; border: 0; cursor: pointer;
  background: var(--green-dark); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .18rem; padding: .5rem .3rem;
  font-family: inherit; font-size: .66rem; transition: background .2s;
}
.rail-item:hover, .rail-item:focus-visible { background: var(--accent); color: #fff; }
.rail-label { line-height: 1.25; text-align: center; }
.rail-pop {
  position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  margin-right: 8px; white-space: nowrap; background: var(--accent); color: #fff;
  padding: .55rem .9rem; font-size: .88rem; font-weight: 700; border-radius: 3px;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
}
.rail-item:hover .rail-pop, .rail-item:focus-visible .rail-pop, .rail-item:focus-within .rail-pop { opacity: 1; visibility: visible; }
.rail-qr { white-space: normal; width: 148px; text-align: center; font-weight: 600; font-size: .78rem; line-height: 1.5; }

/* ------------------------------------------------------------- footer */

.site-footer { background: var(--dark); color: #c9cdcf; padding: clamp(2.2rem, 5vw, 3.25rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 2.2rem; }
.footer-logo { width: 165px; filter: brightness(0) invert(1) opacity(.92); margin-bottom: .9rem; }
.footer-about p { font-size: .88rem; line-height: 1.85; color: #a7acaf; margin: 0; }
.site-footer h2 { font-size: .9rem; color: #fff; margin-bottom: .9rem; padding-bottom: .55rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; font-size: .88rem; }
.site-footer a { color: #c9cdcf; }
.site-footer a:hover { color: var(--green); }
.site-footer .addr { color: #a7acaf; line-height: 1.75; }
.footer-base { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.1rem; }
.footer-base p { margin: 0; font-size: .82rem; color: #8b9093; }

/* ------------------------------------------------------------- responsive */

@media (max-width: 1100px) {
  .site-nav a { padding: 0 .8rem; }
  .header-tel small { display: none; }
  .header-tel a { font-size: 1rem; }
}

@media (max-width: 1000px) {
  .cols-4, .tile-grid, .stat-grid, .fact-grid, .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid, .frame-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split, .urban-inner, .product-inner, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .about-media, .urban-media { order: -1; }
  .urban-media img { aspect-ratio: 16 / 10; }
  .rail { display: none; }
}

@media (max-width: 760px) {
  .topbar-inner span:first-child { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .header-inner { min-height: 62px; }
  .brand img { width: 142px; }
  .header-tel { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 96px 0 auto; background: #fff; display: none;
    padding: .5rem 20px 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { line-height: 1.5; padding: .85rem 0; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .product-jump { top: 62px; }
  .product { scroll-margin-top: 118px; }
  .banner-track { height: 300px; }
  .banner-arrow { display: none; }
  .slide-shade { background: linear-gradient(90deg, rgba(10,30,22,.85), rgba(10,30,22,.55)); }
  .statstrip-grid { grid-template-columns: repeat(2, 1fr); }
  .ss { border-bottom: 1px solid rgba(255,255,255,.14); }
  .ss:nth-child(2n) { border-right: 0; }
  .head-more { position: static; display: inline-block; margin-top: .6rem; }
  .cols-4, .tile-grid, .stat-grid, .fact-grid, .cap-grid, .frame-grid,
  .value-grid, .color-grid, .product-media, .adv-grid { grid-template-columns: 1fr; }
  .product-media img:only-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .ctaband-inner { flex-direction: column; align-items: flex-start; }
}

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

@media print {
  .topbar, .site-header, .nav-toggle, .product-jump, .rail, .btn, .banner-arrow, .banner-dots { display: none !important; }
  body { font-size: 11pt; }
}
