@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800&family=Noto+Serif+SC:wght@600;700&display=swap");

:root {
  --brand: #0b789f;
  --brand-dark: #07566f;
  --deep: #103d4c;
  --deep-2: #0a2d38;
  --ink: #183942;
  --muted: #667c80;
  --line: #d6e1df;
  --line-dark: #aebfbc;
  --soft: #f2f6f4;
  --soft-2: #e8f0ed;
  --white: #fff;
  --max-width: 1220px;
  --header-height: 72px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif; font-size: 15px; line-height: 1.75; text-rendering: optimizeLegibility; }
body::selection { color: #fff; background: var(--brand); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
h1, h2, h3, p, dl, dd, ol, ul { margin: 0; }
h1, h2 { font-family: "Noto Serif SC", "Songti SC", serif; letter-spacing: 0; }
h3 { letter-spacing: 0; }
.container { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 9px 13px; color: #fff; background: var(--deep); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid #5fd4e7; outline-offset: 3px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgb(255 255 255 / 96%); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-note { color: #6d8184; background: var(--soft); border-bottom: 1px solid #e1e9e7; font-size: 11px; }
.header-note .container { min-height: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-note a { color: var(--brand-dark); font-weight: 700; }
.navigation { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; color: #d8f5fa; background: var(--brand); clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%); }
.brand-mark svg { width: 24px; height: 24px; fill: currentColor; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy b { font-size: 17px; font-weight: 800; }
.brand-copy small { margin-top: 4px; color: var(--brand); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.nav-links { min-width: 0; display: flex; justify-content: center; gap: 22px; color: #38545b; font-size: 13px; white-space: nowrap; }
.nav-links a { position: relative; padding: 25px 0 22px; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: 13px; left: 0; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .2s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-dark); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { min-height: 38px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; color: #fff; background: var(--brand); font-size: 12px; font-weight: 800; transition: background .2s; }
.header-cta:hover { background: var(--brand-dark); }
.menu-button { display: none; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; border: 0; background: transparent; }
.menu-button > span[aria-hidden] { width: 24px; height: 2px; background: var(--ink); transition: transform .2s; }
.menu-button[aria-expanded="true"] > span[aria-hidden]:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span[aria-hidden]:last-of-type { transform: translateY(-4px) rotate(-45deg); }

/* Type and controls */
.section { padding-block: 84px; }
.section-soft { background: var(--soft); border-block: 1px solid var(--line); }
.kicker { margin-bottom: 11px; color: var(--brand-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
h1 { font-size: 54px; line-height: 1.14; }
h2 { font-size: 34px; line-height: 1.28; }
h3 { font-size: 17px; line-height: 1.45; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 18px; border: 1px solid transparent; font-size: 13px; font-weight: 800; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--brand); }
.button-primary:hover { background: var(--brand-dark); }
.button-plain { color: var(--deep); background: #fff; border-color: var(--line-dark); }
.button-plain:hover { color: var(--brand-dark); border-color: var(--brand); }
.button-light { color: var(--deep); background: #fff; }
.more-link { display: inline-flex; color: var(--brand-dark); font-size: 13px; font-weight: 800; border-bottom: 1px solid currentColor; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 31px; }
.two-column { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: start; }
.section-copy > p:not(.kicker), .prose { color: var(--muted); font-size: 16px; line-height: 1.9; }
.section-copy .more-link, .prose .more-link { margin-top: 24px; }
.prose p + p { margin-top: 18px; }
.notice { padding: 16px 18px; color: #526b6e; background: var(--soft); border-left: 3px solid var(--brand); font-size: 13px; }

/* Home hero */
.home-hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.home-hero-grid { min-height: 500px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 62px; align-items: center; }
.home-hero-copy { padding-block: 50px; }
.home-hero-copy > p:not(.kicker) { max-width: 540px; margin-top: 22px; color: #567075; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 38px; padding-top: 17px; border-top: 1px solid #c5d2cf; color: #64797d; font-size: 12px; }
.hero-meta span { display: grid; gap: 2px; }
.hero-meta b { color: var(--ink); font-size: 13px; }
.media-placeholder { position: relative; overflow: hidden; color: #fff; background: #718c8b; }
.media-placeholder::before { content: ""; position: absolute; inset: 15% 10%; border: 1px solid rgb(255 255 255 / 52%); background: repeating-linear-gradient(90deg, transparent 0 42px, rgb(255 255 255 / 18%) 43px 44px); }
.media-placeholder::after { content: ""; position: absolute; right: 9%; bottom: 16%; width: 42%; height: 38%; border: 3px solid rgb(255 255 255 / 58%); background: linear-gradient(145deg, rgb(240 247 245 / 45%), rgb(31 71 77 / 35%)); box-shadow: -150px 18px 0 -10px rgb(255 255 255 / 18%); }
.media-placeholder span, .media-placeholder small { position: absolute; z-index: 2; left: 16px; }
.media-placeholder span { bottom: 30px; font-size: 12px; font-weight: 700; }
.media-placeholder small { bottom: 12px; color: #d8e6e3; font-size: 10px; }
.media-hero { min-height: 350px; }
.quick-entry { background: #fff; border-bottom: 1px solid var(--line); }
.quick-entry-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-entry a { min-height: 94px; position: relative; display: grid; align-content: center; gap: 3px; padding: 17px 23px; border-right: 1px solid var(--line); transition: background .2s, padding .2s; }
.quick-entry a:first-child { border-left: 1px solid var(--line); }
.quick-entry a:hover { padding-left: 28px; background: var(--soft); }
.quick-entry span { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.quick-entry b { max-width: 190px; font-size: 13px; font-weight: 600; }
.quick-entry i { position: absolute; top: 16px; right: 17px; color: #829696; font-size: 16px; font-style: normal; }

/* Product artwork and catalog */
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.catalog-grid article { min-height: 315px; padding: 20px; background: #fff; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.catalog-grid article > p { margin-top: 18px; color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.catalog-grid h3 { margin-top: 5px; }
.catalog-grid article > span { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; }
.equipment-art { position: relative; min-height: 160px; overflow: hidden; background: #e5ecea; border: 1px solid #c9d5d2; }
.equipment-art::before { content: ""; position: absolute; width: 85px; height: 112px; right: 22%; bottom: 17px; border: 4px solid #9daead; background: linear-gradient(145deg, #f7faf9, #829696); box-shadow: 15px 14px 0 rgb(41 69 73 / 12%); }
.equipment-art::after { content: ""; position: absolute; width: 40px; height: 40px; right: calc(22% + 23px); bottom: 47px; border: 4px solid #526e70; border-radius: 50%; background: radial-gradient(circle, #244a50 0 19%, transparent 21%); }
.equipment-high { background: #e6e9e7; }
.equipment-high::before { width: 102px; height: 125px; }
.equipment-pool { background: #dfecea; }
.equipment-pool::before { width: 120px; height: 82px; }
.equipment-drying { background: #e9e7e1; }
.equipment-drying::before { width: 130px; height: 104px; }
.equipment-system::before { width: 80px; height: 120px; border-radius: 42px 42px 8px 8px; }
.equipment-system::after { width: 54px; height: 54px; right: 15%; bottom: 20px; border-radius: 2px; background: #8ca09f; }
.product-directory { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.product-directory article { min-height: 330px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center; padding: 36px; background: #fff; scroll-margin-top: 150px; }
.product-directory article:nth-child(even) { background: var(--soft); }
.product-directory article > div:last-child > p:not(.kicker) { max-width: 580px; margin-top: 15px; color: var(--muted); }
.product-directory dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-directory dt { color: #7a8e91; font-size: 11px; }
.product-directory dd { margin-top: 3px; font-size: 13px; font-weight: 600; }
.product-directory article a { display: inline-flex; margin-top: 22px; color: var(--brand-dark); font-size: 13px; font-weight: 800; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-list span { padding: 5px 10px; color: var(--brand-dark); border: 1px solid #b8cdca; font-size: 11px; }

/* Home lists */
.lined-list { border-top: 1px solid var(--line-dark); }
.lined-list a { min-height: 72px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.lined-list a:hover { padding-inline: 12px; background: var(--soft); }
.lined-list b { font-size: 15px; }
.lined-list span { color: var(--muted); font-size: 12px; }
.record-list { border-top: 1px solid var(--line-dark); }
.record-list article { min-height: 126px; display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.media-record { height: 92px; }
.record-list article > div:last-child > p, .record-type { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.record-list h3 { margin-top: 4px; }
.record-list article > div:last-child > span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.tone-warm { background: #918f84; }
.tone-green { background: #688b7f; }
.site-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.site-grid article { border-bottom: 1px solid var(--line-dark); }
.site-grid h3 { margin-top: 14px; }
.site-grid p { margin: 5px 0 15px; color: var(--muted); font-size: 12px; }
.site-art { position: relative; height: 174px; overflow: hidden; background: #dfe8e5; border: 1px solid #c7d4d1; }
.site-art::before { content: ""; position: absolute; right: 11%; bottom: 13%; left: 10%; height: 48%; border: 2px solid rgb(255 255 255 / 72%); background: repeating-linear-gradient(90deg, rgb(77 103 105 / 24%) 0 28px, rgb(228 238 235 / 65%) 29px 31px); }
.site-art::after { content: ""; position: absolute; right: 18%; bottom: 10%; width: 50px; height: 72px; border: 3px solid #a4b3b1; background: #eef3f1; box-shadow: -90px 6px 0 -5px #93a7a5; }
.art-position { background: #e8e7e0; }
.art-pipe::before { height: 14px; bottom: 46%; border: 5px solid #eef3f1; background: #768e8c; }
.art-pipe::after { width: 14px; height: 65%; right: 34%; bottom: 16%; border: 4px solid #eef3f1; background: #768e8c; box-shadow: none; }
.art-commission { background: #dce9e6; }
.art-commission::after { width: 74px; height: 82px; background: repeating-linear-gradient(0deg, #eaf1ef 0 12px, #819694 13px 15px); }
.about-preview { color: #fff; background: var(--deep); }
.about-preview .kicker { color: #6ed2e1; }
.about-preview .prose { color: #b8cbcd; }
.about-preview .more-link { color: #9be0e9; }
.news-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.news-row a { min-height: 160px; display: flex; flex-direction: column; padding: 21px; background: #fff; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.news-row time { color: #7b8f91; font-size: 10px; }
.news-row b { margin-top: 12px; font-size: 15px; }
.news-row span { margin-top: auto; color: var(--brand-dark); font-size: 11px; font-weight: 800; }

/* Interior headers */
.page-hero { color: #fff; background: var(--deep); }
.page-hero .container { min-height: 252px; display: flex; align-items: center; }
.page-hero .kicker { color: #67d0e0; }
.page-hero h1 { font-size: 42px; }
.page-hero p:not(.kicker) { max-width: 620px; margin-top: 14px; color: #b8ccce; }
.breadcrumb { color: #728689; background: var(--soft); border-bottom: 1px solid var(--line); font-size: 11px; }
.breadcrumb .container { min-height: 42px; display: flex; align-items: center; gap: 9px; }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb b { color: var(--ink); font-weight: 600; }
.category-nav { position: sticky; top: 98px; z-index: 30; background: rgb(255 255 255 / 95%); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.category-nav .container { min-height: 52px; display: flex; align-items: center; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.category-nav .container::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; color: #536c70; font-size: 12px; font-weight: 700; }
.category-nav a:hover { color: var(--brand-dark); }

/* About and process */
.business-split { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.business-split article { min-height: 265px; display: flex; flex-direction: column; padding: 30px; background: #fff; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.business-split article > span { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.business-split h3 { margin-top: 12px; font-size: 22px; }
.business-split p { margin-top: 13px; color: var(--muted); }
.business-split a { margin-top: auto; color: var(--brand-dark); font-size: 12px; font-weight: 800; }
.process-list { padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.process-list li { min-height: 74px; display: grid; grid-template-columns: .5fr 1fr; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); }
.process-list b { font-size: 14px; }
.process-list span { color: var(--muted); font-size: 13px; }

/* Scenarios */
.scenario-list { border-top: 1px solid var(--line-dark); }
.scenario-list article { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding-block: 38px; border-bottom: 1px solid var(--line); scroll-margin-top: 155px; }
.scenario-title > p { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.scenario-title h2 { margin-top: 8px; font-size: 26px; }
.scenario-list article > div:last-child > p { color: var(--muted); font-size: 15px; }
.scenario-list ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; margin-top: 22px; list-style: none; }
.scenario-list li { padding: 10px; color: #536d71; background: var(--soft); border-left: 2px solid var(--brand); font-size: 11px; }
.project-check { padding-block: 67px; background: var(--soft); border-top: 1px solid var(--line); }
.project-check .container { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.check-grid span { min-height: 58px; display: grid; place-items: center start; padding: 10px 13px; background: #fff; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 12px; }

/* Cases and construction */
.case-directory { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.case-directory article { min-height: 345px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: center; padding: 30px; background: #fff; scroll-margin-top: 155px; }
.case-directory article:nth-child(even) { background: var(--soft); }
.media-case { min-height: 255px; }
.case-directory h2 { margin-top: 7px; font-size: 27px; }
.case-directory article > div:last-child > p:not(.record-type) { margin-top: 13px; color: var(--muted); }
.case-directory dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 19px; padding-top: 15px; border-top: 1px solid var(--line); }
.case-directory dt { color: #7b8e91; font-size: 10px; }
.case-directory dd { margin-top: 3px; font-size: 12px; }
.case-directory article a { display: inline-flex; margin-top: 20px; color: var(--brand-dark); font-size: 12px; font-weight: 800; }
.notice-band { padding-block: 28px; color: #536d71; background: var(--soft); border-top: 1px solid var(--line); }
.notice-band .container { display: grid; grid-template-columns: 160px 1fr; gap: 25px; }
.notice-band b { color: var(--ink); }
.construction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.construction-grid article { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 230px; background: var(--soft); border: 1px solid var(--line); scroll-margin-top: 155px; }
.construction-grid .site-art { height: auto; min-height: 228px; border: 0; border-right: 1px solid var(--line); }
.construction-grid .site-art span { position: absolute; z-index: 3; bottom: 10px; left: 10px; padding: 3px 6px; color: #fff; background: rgb(16 61 76 / 76%); font-size: 9px; }
.construction-grid article > div:last-child { display: grid; align-content: center; padding: 22px; }
.construction-grid article > div:last-child > p:first-child { color: var(--brand-dark); font-size: 10px; font-weight: 800; }
.construction-grid h2 { margin-top: 5px; font-size: 23px; }
.construction-grid article > div:last-child > p:last-child { margin-top: 10px; color: var(--muted); font-size: 12px; }
.art-tank::before { width: 54%; height: 65%; left: 23%; bottom: 9%; border-radius: 50px 50px 4px 4px; background: #a0b2af; }
.art-insulation::before { height: 18px; bottom: 47%; border: 7px solid #edf3f1; background: #78918e; }
.art-insulation::after { display: none; }

/* News */
.news-layout { display: grid; grid-template-columns: 230px 1fr; gap: 55px; }
.news-layout aside { position: sticky; top: 170px; align-self: start; display: grid; border-top: 1px solid var(--line-dark); }
.news-layout aside > p { padding: 13px 0; color: #7b8e91; font-size: 10px; font-weight: 800; }
.news-layout aside a { padding: 12px 0; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.news-layout aside span { margin-top: 18px; color: var(--muted); font-size: 11px; }
.article-sections { display: grid; gap: 55px; }
.article-sections section { scroll-margin-top: 165px; }
.article-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }
.article-heading h2 { font-size: 25px; }
.article-sections article { display: grid; grid-template-columns: 100px 1fr; gap: 25px; padding: 22px 0; border-top: 1px solid var(--line-dark); }
.article-sections time { color: #7a8e91; font-size: 10px; }
.article-sections article p { margin-top: 7px; color: var(--muted); font-size: 13px; }
.article-sections details { border-top: 1px solid var(--line-dark); }
.article-sections details:last-child { border-bottom: 1px solid var(--line-dark); }
.article-sections summary { padding: 17px 0; font-weight: 700; cursor: pointer; }
.article-sections details p { padding: 0 0 18px; color: var(--muted); font-size: 13px; }

/* Contact */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.contact-info-grid article { min-height: 155px; display: flex; flex-direction: column; padding: 23px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-info-grid span { color: var(--brand-dark); font-size: 11px; font-weight: 800; }
.contact-info-grid a, .contact-info-grid b { margin-top: 13px; font-size: 18px; }
.contact-info-grid p { margin-top: auto; color: var(--muted); font-size: 11px; }
.map-placeholder { min-height: 280px; display: grid; place-items: center; margin-top: 20px; color: #fff; background: #708987; border: 1px solid #627d7b; }
.map-placeholder::before { content: ""; position: absolute; }
.map-placeholder div { display: grid; gap: 4px; padding: 18px 22px; background: rgb(16 61 76 / 80%); text-align: center; }
.map-placeholder span { color: #c7d8d7; font-size: 11px; }
.inquiry-section { padding-block: 84px; background: var(--soft); border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.inquiry-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; }
.inquiry-layout > div > p:not(.kicker) { max-width: 400px; margin-top: 18px; color: var(--muted); }
.demo-notice { display: grid; gap: 5px; margin-top: 28px; padding: 15px 17px; background: #fff; border-left: 3px solid var(--brand); }
.demo-notice b { font-size: 12px; }
.demo-notice span { color: var(--muted); font-size: 11px; }
.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 27px; background: #fff; border: 1px solid var(--line-dark); }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; }
input, select, textarea { width: 100%; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #bdcbca; border-radius: 0; }
input::placeholder, textarea::placeholder { color: #91a2a3; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgb(11 120 159 / 13%); outline: 0; }
textarea { min-height: 125px; resize: vertical; }
[aria-invalid="true"] { border-color: #bd5555; }
.field-error { min-height: 1.3em; color: #ae4141; font-size: 11px; }
.form-action { display: flex; align-items: center; gap: 16px; }
.form-action p { color: var(--muted); font-size: 10px; }
.form-action button:disabled { cursor: wait; opacity: .6; }
.form-status { min-height: 1.5em; grid-column: 1 / -1; color: var(--brand-dark); font-size: 12px; font-weight: 700; }

/* Contact band and footer */
.contact-band { color: #fff; background: var(--deep); border-top: 1px solid rgb(255 255 255 / 10%); }
.contact-band .container { min-height: 155px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-band p { color: #67d0e0; font-size: 11px; font-weight: 800; }
.contact-band h2 { max-width: 670px; margin-top: 5px; font-size: 25px; }
.contact-band .container > div:last-child { display: flex; align-items: center; gap: 20px; }
.contact-band .container > div:last-child > a:not(.button) { font-size: 14px; font-weight: 700; }
.site-footer { padding-top: 43px; color: #aec2c4; background: var(--deep-2); }
.brand-inverse { color: #fff; }
.brand-inverse .brand-copy small { color: #65d0df; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 45px; padding-bottom: 39px; }
.footer-main > div:first-child > p { margin-top: 14px; color: #78989d; font-size: 11px; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, 1fr); align-content: start; gap: 10px 25px; font-size: 12px; }
.footer-main nav a:hover { color: #65d0df; }
.footer-contact { display: grid; align-content: start; gap: 3px; justify-items: end; text-align: right; }
.footer-contact a { color: #fff; font-size: 18px; font-weight: 700; }
.footer-contact small { max-width: 190px; margin-top: 5px; color: #688a8f; font-size: 10px; }
.footer-bottom { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #688a8f; border-top: 1px solid rgb(255 255 255 / 10%); font-size: 10px; }

@media (max-width: 1120px) {
  .navigation { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-flex; }
  .header-cta { display: none; }
  .nav-links { position: absolute; top: 98px; right: 24px; left: 24px; display: none; grid-column: 1 / -1; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 36px rgb(16 61 76 / 14%); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 0; border-bottom: 1px solid #e7eeec; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { bottom: 0; right: auto; width: 34px; }
  .site-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }
  html { scroll-padding-top: 68px; }
  .container { width: min(calc(100% - 36px), var(--max-width)); }
  .header-note { display: none; }
  .navigation { min-height: 68px; }
  .nav-links { top: 68px; right: 18px; left: 18px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-copy b { font-size: 15px; }
  .section { padding-block: 62px; }
  h1 { font-size: 40px; }
  h2 { font-size: 27px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .two-column, .project-check .container, .inquiry-layout { grid-template-columns: 1fr; gap: 32px; }
  .home-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .home-hero-copy { padding-block: 42px 28px; }
  .home-hero-copy > p:not(.kicker) { margin-top: 17px; font-size: 14px; }
  .hero-meta { display: none; }
  .media-hero { min-height: 190px; margin-bottom: 22px; }
  .quick-entry .container { width: 100%; }
  .quick-entry-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-entry a { min-height: 96px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
  .quick-entry a:nth-child(2n) { border-right: 0; }
  .quick-entry a:first-child { border-left: 0; }
  .catalog-grid, .site-grid, .news-row, .business-split, .contact-info-grid { grid-template-columns: 1fr; }
  .catalog-grid article { min-height: 290px; }
  .lined-list a { grid-template-columns: 1fr; gap: 3px; padding-block: 14px; }
  .record-list article { grid-template-columns: 105px 1fr; gap: 14px; }
  .media-record { height: 76px; }
  .news-row a { min-height: 135px; }
  .page-hero .container { min-height: 210px; }
  .page-hero h1 { font-size: 32px; }
  .category-nav { top: 68px; }
  .category-nav .container { gap: 22px; }
  .product-directory article, .case-directory article { min-height: 0; grid-template-columns: 1fr; gap: 24px; padding: 21px; }
  .product-directory dl, .case-directory dl { grid-template-columns: 1fr; gap: 12px; }
  .equipment-art { min-height: 190px; }
  .scenario-list article { grid-template-columns: 1fr; gap: 17px; padding-block: 29px; }
  .scenario-list ul, .check-grid { grid-template-columns: 1fr; }
  .media-case { min-height: 205px; }
  .notice-band .container { grid-template-columns: 1fr; gap: 7px; }
  .construction-grid { grid-template-columns: 1fr; }
  .construction-grid article { grid-template-columns: 125px 1fr; min-height: 185px; }
  .construction-grid .site-art { min-height: 183px; }
  .news-layout { grid-template-columns: 1fr; gap: 35px; }
  .news-layout aside { position: static; }
  .article-sections article { grid-template-columns: 1fr; gap: 7px; }
  .contact-info-grid article { min-height: 135px; }
  .map-placeholder { min-height: 220px; }
  .lead-form { grid-template-columns: 1fr; padding: 20px; }
  .field-full { grid-column: auto; }
  .form-action { align-items: stretch; flex-direction: column; }
  .contact-band .container { min-height: 200px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 22px; }
  .contact-band .container > div:last-child { flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-contact { justify-items: start; text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 13px; }
}

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