:root {
  --navy: #1f2b30;
  --navy-dark: #172126;
  --gold: #e9a906;
  --gold-hover: #f4b70a;
  --text: #333333;
  --muted: #62686b;
  --grey: #ebebeb;
  --grey-light: #f7f7f7;
  --line: #d6d6d6;
  --white: #ffffff;
  --black: #000000;
  --wrap: 1200px;
  --shadow: 0 5px 18px rgba(20, 30, 34, .12);
}

/* 01. Base — mirrors the supplied Elementor pages */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
body.nav-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 20px; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 600; line-height: 1.14; }
h1 { font-size: 60px; font-weight: 700; line-height: 1; }
h2 { font-size: 40px; line-height: 1; }
h3 { font-size: 20px; line-height: 1.15; }
h4 { font-size: 17px; line-height: 1.2; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.wide-wrap { width: min(1360px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--grey { background: var(--grey); }
.section--light { background: var(--grey-light); }
.section--navy { color: var(--white); background: var(--navy); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section-title { max-width: 940px; margin: 0 auto 48px; text-align: center; }
.section-title h2 { margin-bottom: 22px; }
.section-title p { margin: 0; color: var(--muted); }
.section-title--left { margin-inline: 0; text-align: left; }
.section-title--light p { color: #d6dcde; }
.overline { display: block; margin-bottom: 12px; color: var(--navy); font-size: 17px; font-weight: 600; }
.section--navy .overline { color: var(--gold); }
.rule { width: 100px; height: 1px; margin: 35px auto 0; background: #9d9d9d; }
.small { font-size: 14px; }
.center { text-align: center; }
.hidden { display: none !important; }

/* 02. Original-style buttons */
.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  cursor: pointer;
  transition: color .25s, background-color .25s, transform .25s;
}
.button:hover, .button:focus-visible { background: var(--gold-hover); transform: translateY(-2px); }
.button--large { min-height: 52px; padding: 15px 30px; font-size: 16px; line-height: 16px; }
.button--outline { border: 2px solid var(--white); background: transparent; color: var(--white); }
.button--outline:hover, .button--outline:focus-visible { background: var(--white); color: var(--navy); }
.button--outline-dark { border: 2px solid var(--navy); background: transparent; color: var(--navy); }
.button--outline-dark:hover, .button--outline-dark:focus-visible { background: var(--navy); color: var(--white); }
.button--arrow::after { content: "→"; font-size: 18px; font-weight: 400; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* 03. Header copied from the supplied page proportions */
.announcement {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  text-align: center;
}
.site-header { position: relative; z-index: 80; background: var(--white); }
.site-header.is-fixed { box-shadow: none; }
.site-header.is-fixed .header-main { min-height: 205px; }
.header-main { display: flex; min-height: 205px; align-items: center; transition: min-height .25s; }
.header-inner { display: grid; width: 100%; align-items: center; grid-template-columns: 260px 1fr 220px; gap: 25px; }
.wordmark { display: inline-flex; align-items: center; color: #0f555d; font-size: 27px; font-weight: 800; letter-spacing: -.035em; }
.wordmark-symbol { position: relative; width: 52px; height: 52px; margin-right: 12px; overflow: hidden; border-radius: 50%; background: #0e5961; transform: rotate(-15deg); }
.wordmark-symbol::before, .wordmark-symbol::after { position: absolute; top: -8px; bottom: -8px; width: 3px; content: ""; background: var(--white); }
.wordmark-symbol::before { left: 20px; }
.wordmark-symbol::after { left: 29px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.desktop-nav > a { position: relative; padding: 13px 0; color: #1f2124; font-size: 16px; font-weight: 600; }
.desktop-nav > a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; content: ""; background: var(--gold); transform: scaleX(0); transition: transform .25s; }
.desktop-nav > a:hover, .desktop-nav > a.is-current { color: var(--gold); }
.desktop-nav > a:hover::after, .desktop-nav > a.is-current::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.header-contact { display: grid; gap: 3px; font-size: 14px; }
.header-contact strong { color: var(--navy); font-size: 15px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--navy); background: var(--white); cursor: pointer; }
.menu-toggle i { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s, opacity .2s; }
.nav-open .menu-toggle i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle i:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 04. Full-width hero and inner-page hero */
.home-hero {
  position: relative;
  display: flex;
  min-height: 625px;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.home-hero::before { position: absolute; inset: 0; content: ""; background: rgba(4, 24, 29, .78); }
.hero-content { position: relative; z-index: 1; max-width: 1120px; padding: 88px 0; }
.home-hero h1 { max-width: 1080px; margin-bottom: 34px; color: var(--white); text-transform: none; }
.home-hero p { max-width: 1180px; margin-bottom: 44px; font-size: 18px; line-height: 1.55; }
.page-hero { position: relative; display: flex; min-height: 445px; align-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.page-hero::before { position: absolute; inset: 0; content: ""; background: rgba(31, 43, 48, .76); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1000px; margin-bottom: 28px; color: var(--white); font-size: 48px; }
.page-hero p { max-width: 1060px; margin: 0 0 28px; font-size: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; font-size: 15px; }
.breadcrumb span { color: var(--gold); }

/* 05. Three-column service summary */
.summary-strip { padding: 72px 0 82px; background: var(--grey); }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.summary-item { padding: 0 42px; text-align: center; }
.summary-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 24px; place-items: center; color: var(--navy); font-size: 25px; font-weight: 500; }
.summary-item h3 { margin-bottom: 20px; text-transform: uppercase; }
.summary-item p { margin: 0; color: #565b5e; font-size: 15px; }

/* 06. Partners / clients */
.client-section { padding: 80px 0; background: var(--white); }
.client-stage { position: relative; min-height: 290px; overflow: hidden; transition: min-height .4s; }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client-card { display: flex; min-height: 118px; align-items: center; justify-content: center; padding: 24px; border: 1px solid #e2e2e2; background: var(--white); color: var(--navy); font-size: 15px; font-weight: 600; text-align: center; }
.client-card:nth-child(n+4) { display: none; }
.client-stage.is-expanded .client-card:nth-child(n+4) { display: flex; }
.client-toggle { margin-top: 30px; text-align: center; }

/* 07. Original image cards — every image area intentionally black */
.image-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
.image-card { min-width: 0; }
.image-placeholder { position: relative; overflow: hidden; background: var(--black); }
.image-placeholder::after { position: absolute; inset: 0; content: ""; border: 0 solid rgba(255,255,255,.15); transition: border-width .35s, background .35s; }
.image-card:hover .image-placeholder::after { border-width: 12px; background: rgba(255,255,255,.04); }
.image-card__media { aspect-ratio: 1.34 / 1; margin-bottom: 28px; }
.image-card h3 { margin-bottom: 14px; }
.image-card p { margin: 0; color: var(--muted); font-size: 15px; }
.image-card a:hover h3 { color: var(--gold); }
.compact-card .image-card__media { aspect-ratio: 1.12 / 1; }
.compact-card h3 { font-size: 18px; }

/* 08. Help strip */
.help-strip { padding: 42px 0; background: var(--white); }
.help-inner { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 48px; }
.help-inner h2 { margin-bottom: 10px; }
.help-inner p { margin: 0; color: var(--muted); }

/* 09. Advantage/icon cards */
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advantage-card { min-height: 285px; padding: 30px 20px 28px; border: 1px solid #dbdbdb; background: var(--white); text-align: center; transition: transform .3s, box-shadow .3s; }
.advantage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.advantage-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 20px; place-items: center; border: 2px solid var(--navy); border-radius: 50%; color: var(--navy); font-size: 15px; font-weight: 700; }
.advantage-card h3 { min-height: 46px; margin-bottom: 17px; }
.advantage-card p { margin: 0; color: #565d60; font-size: 15px; text-align: left; }

/* 10. Factory / about split and media carousel */
.about-grid { display: grid; align-items: start; grid-template-columns: 1fr 1fr; gap: 42px; }
.about-copy { padding: 0 20px; }
.about-copy .overline { margin-bottom: 15px; }
.about-copy h2 { margin-bottom: 25px; }
.about-copy p { color: var(--muted); }
.about-copy .button { margin-top: 8px; }
.media-carousel { position: relative; min-width: 0; }
.carousel-viewport { overflow: hidden; background: var(--black); }
.carousel-track { display: flex; transition: transform .55s ease; }
.carousel-slide { flex: 0 0 100%; min-height: 495px; background: var(--black); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 26px; height: 4px; padding: 0; border: 0; background: #b6b6b6; cursor: pointer; }
.carousel-dot.is-active { background: var(--gold); }
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrow { width: 42px; height: 38px; border: 1px solid var(--navy); background: var(--white); color: var(--navy); cursor: pointer; }
.carousel-arrow:hover { background: var(--navy); color: var(--white); }

/* 11. Horizontal product carousel */
.product-slider { position: relative; overflow: hidden; }
.product-track { display: flex; gap: 20px; transition: transform .5s ease; }
.product-slide { flex: 0 0 calc((100% - 60px) / 4); min-width: 0; }
.product-slide .image-placeholder { aspect-ratio: 1 / 1; margin-bottom: 20px; }
.product-slide h3 { font-size: 18px; }
.slider-footer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 34px; }

/* 12. Testimonial */
.testimonial-layout { display: grid; align-items: center; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.testimonial-copy h2 { margin-bottom: 24px; }
.testimonial-copy p { color: #d7dddf; }
.testimonial-slider { position: relative; min-height: 300px; }
.testimonial { display: none; padding: 48px; background: var(--white); color: var(--text); }
.testimonial.is-active { display: block; animation: fadeIn .45s ease both; }
.quote-mark { display: block; margin-bottom: 20px; color: var(--gold); font-family: Georgia, serif; font-size: 68px; line-height: .6; }
.testimonial blockquote { margin: 0 0 28px; font-size: 18px; font-style: italic; line-height: 1.65; }
.testimonial-meta strong { display: block; color: var(--navy); }
.testimonial-meta span { color: var(--muted); font-size: 14px; }
.testimonial-nav { display: flex; gap: 8px; margin-top: 16px; }

/* 13. Market image overlay cards */
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.market-card { position: relative; min-height: 280px; overflow: hidden; border-right: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); background: var(--black); }
.market-card::before { position: absolute; inset: 0; content: ""; background: rgba(31,43,48,.45); transition: background .3s; }
.market-card:hover::before { background: rgba(31,43,48,.82); }
.market-card h3 { position: absolute; z-index: 1; right: 24px; bottom: 28px; left: 24px; color: var(--white); transition: transform .3s; }
.market-card:hover h3 { color: var(--gold); transform: translateY(-8px); }

/* 14. Article cards */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.article-card__media { display: block; height: 235px; overflow: hidden; background: var(--black); }
.article-media { aspect-ratio: 1.55 / 1; background: var(--black); }
.article-body, .article-card__body { padding: 26px; }
.article-body h3, .article-card__body h3 { margin-bottom: 15px; font-size: 20px; line-height: 1.25; }
.article-body p, .article-card__body p { margin-bottom: 16px; color: var(--muted); font-size: 14px; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 600; }
.text-link:hover { color: var(--gold); }

/* 15. Numbered process */
.process-list { counter-reset: step; border-top: 1px solid var(--line); }
.process-item { display: grid; min-height: 150px; align-items: start; grid-template-columns: 110px 300px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-number { color: var(--gold); font-size: 34px; font-weight: 600; }
.process-item h3 { padding-top: 9px; }
.process-item p { margin: 0; color: var(--muted); }

/* 16. Specifications table */
.spec-wrap { overflow-x: auto; border: 1px solid var(--line); }
.spec-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { background: var(--navy); color: var(--white); font-size: 15px; font-weight: 600; }
.spec-table td { background: var(--white); color: var(--muted); }
.spec-table tr:nth-child(even) td { background: var(--grey-light); }

/* 17. Accordion / FAQ */
.faq-list { max-width: 1000px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; align-items: center; grid-template-columns: 1fr 34px; gap: 24px; padding: 24px 0; border: 0; background: transparent; color: var(--navy); font-size: 18px; font-weight: 600; text-align: left; cursor: pointer; }
.faq-question::after { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--navy); content: "+"; font-size: 20px; font-weight: 400; }
.faq-item.is-open .faq-question::after { content: "−"; background: var(--navy); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { max-width: 880px; padding: 0 0 24px; color: var(--muted); }

/* 18. Contact band and form */
.contact-band { padding: 34px 0; background: var(--navy); color: var(--white); }
.contact-band-inner { display: grid; align-items: center; grid-template-columns: 1fr 1.25fr; gap: 60px; }
.contact-band h2 { margin-bottom: 14px; color: var(--white); font-size: 35px; line-height: 1; }
.contact-band p { margin: 0; color: #ccd4d6; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro p { color: var(--muted); }
.contact-points { display: grid; gap: 18px; margin-top: 38px; }
.contact-point { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-point strong { display: block; margin-bottom: 4px; color: var(--navy); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 14px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cfcfcf; border-radius: 0; outline: 0; background: var(--white); color: var(--text); }
.field input, .field select { height: 49px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 14px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(233,169,6,.15); }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; }

/* 19. Final CTA */
.closing-cta { position: relative; display: flex; min-height: 470px; align-items: center; background: var(--black); color: var(--white); }
.closing-cta::before { position: absolute; inset: 0; content: ""; background: rgba(31,43,48,.8); }
.closing-inner { position: relative; z-index: 1; max-width: 990px; }
.closing-inner h2 { margin-bottom: 25px; color: var(--white); }
.closing-inner p { margin-bottom: 32px; font-size: 17px; }

/* 20. Footer */
.site-footer { background: var(--navy-dark); color: #b9c3c6; }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 46px; padding: 68px 0 55px; }
.footer-brand .wordmark { margin-bottom: 22px; color: var(--white); font-size: 24px; }
.footer-brand p { color: #9ba9ad; font-size: 14px; }
.footer-column h3 { margin-bottom: 20px; color: var(--white); font-size: 20px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #adb9bc; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 11px; color: #adb9bc; font-size: 14px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: #87979b; font-size: 13px; }

/* 21. Floating original controls */
.floating-contact { position: fixed; z-index: 70; right: 0; top: 52%; display: flex; align-items: center; writing-mode: vertical-rl; min-height: 122px; padding: 18px 11px; border: 0; background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer; }
.floating-contact:hover { background: var(--gold-hover); }
.back-top { position: fixed; z-index: 69; right: 24px; bottom: 24px; display: grid; width: 46px; height: 46px; place-items: center; border: 0; background: var(--navy); color: var(--white); opacity: 0; pointer-events: none; cursor: pointer; transition: opacity .25s, transform .25s; transform: translateY(10px); }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.quote-modal { position: fixed; z-index: 120; inset: 0; display: none; place-items: center; padding: 24px; background: rgba(0,0,0,.68); }
.quote-modal.is-open { display: grid; }
.quote-panel { position: relative; width: min(720px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 45px; background: var(--white); }
.quote-close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border: 1px solid var(--navy); background: var(--white); color: var(--navy); font-size: 22px; cursor: pointer; }
.quote-panel h2 { margin-bottom: 12px; font-size: 34px; }
.quote-panel > p { color: var(--muted); }

/* 22. Animation classes found in supplied files */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.fade-left { transform: translateX(-36px); }
.reveal.fade-right { transform: translateX(36px); }
.reveal.is-visible { opacity: 1; transform: none; }
.grow-hover { transition: transform .3s ease; }
.grow-hover:hover { transform: scale(1.025); }
.float-hover:hover { animation: floatY .9s ease-in-out infinite alternate; }
.wobble-hover:hover { animation: wobbleHorizontal .8s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes wobbleHorizontal { 16.65% { transform: translateX(6px); } 33.3% { transform: translateX(-5px); } 49.95% { transform: translateX(4px); } 66.6% { transform: translateX(-2px); } 83.25% { transform: translateX(1px); } 100% { transform: translateX(0); } }

/* 23. Blog article template and automatic H2 table of contents */
.article-hero { position: relative; display: flex; min-height: 360px; align-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.article-hero::before { position: absolute; inset: 0; background: rgba(31,43,48,.72); content: ""; }
.article-hero__content { position: relative; z-index: 1; max-width: 980px; text-align: center; }
.article-hero__content h1 { margin-bottom: 20px; color: var(--white); font-size: 49px; line-height: 1.08; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; color: #d3dade; font-size: 13px; }
.article-meta a { color: var(--gold); }
.article-section { padding: 68px 0 82px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 2.35fr) minmax(270px, .82fr); gap: 55px; align-items: start; }
.article-body { min-width: 0; }
.article-body > p:first-child { font-size: 17px; }
.article-body h2 { margin: 44px 0 18px; scroll-margin-top: 135px; font-size: 30px; line-height: 1.15; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 27px 0 12px; font-size: 20px; }
.article-body p, .article-body li { color: #565e61; font-size: 15px; line-height: 1.72; }
.article-body ul, .article-body ol { display: grid; gap: 8px; margin: 14px 0 22px; padding-left: 22px; }
.article-body ul { list-style: square; }
.article-body ol { list-style: decimal; }
.article-body li::marker { color: var(--gold); }
.article-media { min-height: 390px; margin: 27px 0 30px; background: var(--black); }
.article-callout { margin: 26px 0; padding: 24px 27px; border-left: 4px solid var(--gold); background: var(--grey-light); }
.article-callout p:last-child { margin-bottom: 0; }
.article-data-table { width: 100%; margin: 25px 0 30px; border-collapse: collapse; }
.article-data-table th, .article-data-table td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-data-table th { background: var(--navy); color: var(--white); }
.article-data-table td { color: var(--muted); font-size: 14px; }
.article-sidebar { position: sticky; top: 125px; display: grid; gap: 28px; }
.article-sidebar__box { padding: 26px; background: var(--grey-light); }
.article-sidebar__box h2 { margin-bottom: 18px; padding-bottom: 13px; border-bottom: 1px solid var(--line); font-size: 24px; }
.article-toc { display: grid; gap: 4px; counter-reset: article-toc; }
.article-toc li { counter-increment: article-toc; }
.article-toc a { position: relative; display: block; padding: 6px 5px 6px 28px; color: var(--muted); font-size: 12px; line-height: 1.42; }
.article-toc a::before { position: absolute; left: 2px; color: #899497; content: counter(article-toc) "."; }
.article-toc a:hover, .article-toc a.is-active { color: var(--gold); }
.article-sidebar__links { display: grid; gap: 10px; }
.article-sidebar__links a { color: var(--muted); font-size: 13px; }
.article-sidebar__links a:hover { color: var(--gold); }
.article-sidebar__latest a { padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.article-author { display: grid; grid-template-columns: 110px 1fr; gap: 28px; margin-top: 58px; padding: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-author__mark { display: grid; width: 100px; height: 100px; place-items: center; background: var(--navy); color: var(--white); font-size: 18px; font-weight: 700; }
.article-author h3 { margin: 0 0 9px; }
.article-author p { margin: 0; font-size: 13px; }
.article-template-preview { padding: 65px 0; background: var(--grey-light); }

/* 24. Blog collection component family */
.blog-hero { position: relative; display: grid; min-height: 285px; place-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.blog-hero::before { position: absolute; inset: 0; background: rgba(31,43,48,.66); content: ""; }
.blog-hero h1 { position: relative; z-index: 1; color: var(--white); font-size: 56px; text-align: center; }
.blog-breadcrumb { padding: 19px 0; border-bottom: 1px solid var(--line); background: var(--grey-light); }
.blog-breadcrumb ol { display: flex; justify-content: center; gap: 12px; color: var(--muted); font-size: 13px; }
.blog-breadcrumb li + li::before { margin-right: 12px; color: var(--gold); content: ">>"; }
.blog-content { padding: 68px 0 82px; background: var(--white); }
.blog-layout { display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(260px, .85fr); gap: 28px; align-items: start; }
.blog-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 22px; }
.blog-card__media { display: block; height: 235px; margin-bottom: 19px; overflow: hidden; background: var(--black); }
.blog-card__body h2 { margin-bottom: 11px; font-size: 18px; line-height: 1.25; }
.blog-card__body h2 a:hover { color: var(--gold); }
.blog-card__meta { display: block; margin-bottom: 8px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-card__body p { margin-bottom: 13px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.blog-read-more { color: var(--navy); font-size: 12px; font-weight: 700; }
.blog-read-more:hover { color: var(--gold); }
.blog-sidebar { position: sticky; top: 130px; padding: 30px 28px; background: var(--grey-light); }
.blog-sidebar__group + .blog-sidebar__group { margin-top: 30px; }
.blog-sidebar h2 { margin-bottom: 20px; padding-bottom: 13px; border-bottom: 1px solid var(--line); font-size: 26px; }
.blog-sidebar ul { display: grid; gap: 10px; }
.blog-sidebar li a { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.blog-sidebar__guides li a { text-transform: none; }
.blog-sidebar li a:hover { color: var(--gold); }
.blog-sidebar .button { margin-top: 28px; }
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 55px; }
.blog-pagination a, .blog-pagination span { display: grid; min-width: 34px; height: 34px; place-items: center; color: var(--muted); font-size: 13px; }
.blog-pagination a:hover, .blog-pagination .is-current { background: var(--gold); color: var(--navy); }
.blog-pagination .blog-pagination__wide { width: auto; padding-inline: 11px; }
.blog-collection-preview { padding: 65px 0; background: var(--white); }

/* 25. Technical RFQ / contact page component family */
.technical-rfq { padding: 72px 0 84px; background: var(--navy-dark); color: var(--white); }
.technical-rfq__heading { max-width: 780px; margin-bottom: 40px; }
.technical-rfq__eyebrow { display: block; margin-bottom: 13px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.technical-rfq__heading h1 { margin-bottom: 18px; color: var(--white); font-size: 52px; }
.technical-rfq__heading p { color: #bdc8cc; }
.technical-rfq__layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(270px, .9fr); gap: 26px; align-items: start; }
.rfq-panel, .rfq-side-card { border: 1px solid #465a63; background: rgba(31, 43, 48, .66); }
.rfq-panel { padding: 30px; }
.rfq-panel__title, .rfq-side-card h2 { margin-bottom: 23px; padding-bottom: 17px; border-bottom: 1px solid #465a63; color: var(--white); font-size: 22px; }
.rfq-form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px 18px; }
.rfq-field { display: grid; gap: 8px; }
.rfq-field--full { grid-column: 1 / -1; }
.rfq-field label, .rfq-field__label { color: #f0f3f4; font-size: 13px; font-weight: 600; }
.rfq-field input, .rfq-field select, .rfq-field textarea { width: 100%; border: 1px solid #536a74; border-radius: 0; outline: 0; background: #18272f; color: var(--white); }
.rfq-field input, .rfq-field select { height: 48px; padding: 0 13px; }
.rfq-field textarea { min-height: 150px; padding: 13px; resize: vertical; }
.rfq-field input::placeholder, .rfq-field textarea::placeholder { color: #829398; }
.rfq-field input:focus, .rfq-field select:focus, .rfq-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(233,169,6,.17); }
.rfq-file { position: relative; display: grid; min-height: 88px; align-content: center; gap: 5px; padding: 15px; border: 1px dashed #607984; background: #18272f; cursor: pointer; }
.rfq-file:hover { border-color: var(--gold); }
.rfq-file input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.rfq-file strong { color: var(--white); font-size: 13px; }
.rfq-file span { color: #9dabb0; font-size: 12px; }
.rfq-submit { grid-column: 1 / -1; width: 100%; }
.rfq-privacy { grid-column: 1 / -1; margin: -2px 0 0; color: #8f9fa4; font-size: 11px; }
.rfq-sidebar { display: grid; gap: 22px; }
.rfq-side-card { padding: 25px; }
.rfq-contact-list { display: grid; gap: 20px; }
.rfq-contact-item small { display: block; margin-bottom: 5px; color: #83979e; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.rfq-contact-item strong, .rfq-contact-item a { color: var(--white); font-size: 14px; }
.rfq-contact-item a:hover { color: var(--gold); }
.rfq-side-card .button { width: 100%; margin-top: 22px; }
.rfq-steps { display: grid; gap: 20px; counter-reset: rfq-step; }
.rfq-step { position: relative; min-height: 42px; padding-left: 40px; counter-increment: rfq-step; }
.rfq-step::before { position: absolute; top: 1px; left: 0; display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid var(--gold); color: var(--gold); content: counter(rfq-step); font-size: 11px; }
.rfq-step strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 14px; }
.rfq-step span { display: block; color: #9eacb0; font-size: 12px; line-height: 1.5; }
.drawing-guide { padding: 70px 0 78px; border-top: 1px solid #42545c; background: var(--navy); color: var(--white); }
.drawing-guide .section-title h2 { color: var(--white); }
.drawing-guide .section-title p { color: #aebcc0; }
.drawing-guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.drawing-guide-card { min-height: 188px; padding: 24px; border: 1px solid #536872; background: var(--navy-dark); }
.drawing-guide-card__icon { display: grid; width: 28px; height: 24px; margin-bottom: 26px; place-items: center; border: 1px solid var(--gold); color: var(--gold); font-size: 12px; }
.drawing-guide-card h3 { margin-bottom: 12px; color: var(--white); font-size: 18px; }
.drawing-guide-card p { margin: 0; color: #aebcc0; font-size: 13px; }
.technical-rfq--preview { padding-block: 65px; }
.technical-rfq--preview .technical-rfq__heading h1 { font-size: 42px; }

/* 26. ChineseLens about-page component family */
.about-page-hero {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.about-page-hero::before {
  position: absolute;
  inset: 0;
  background: var(--black);
  content: "";
  opacity: .18;
}
.about-page-hero .wrap { position: relative; z-index: 1; }
.about-page-hero__box { max-width: 890px; padding: 72px 48px; background: rgba(31, 43, 48, .9); }
.about-page-hero h1 { margin-bottom: 24px; color: var(--white); font-size: 60px; }
.about-page-hero p { margin: 0; color: #dce2e4; font-size: 22px; line-height: 1.5; }
.about-breadcrumb { padding: 17px 0; background: var(--white); }
.about-breadcrumb ol { display: flex; justify-content: center; gap: 13px; color: var(--muted); font-size: 14px; }
.about-breadcrumb li + li::before { margin-right: 13px; color: var(--gold); content: "/"; }
.about-breadcrumb a:hover { color: var(--gold); }
.about-introduction { padding: 80px 0; background: var(--grey-light); }
.about-introduction__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.about-mask-media { position: relative; z-index: 1; min-height: 500px; margin: 0 34px 0 0; background: var(--black); }
.about-mask-media::before { position: absolute; z-index: -1; top: -28px; left: -28px; width: 52%; height: 52%; background: var(--gold); content: ""; }
.about-introduction__copy { padding: 48px; }
.about-kicker { display: block; margin-bottom: 14px; color: var(--gold); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-introduction__copy h2 { margin-bottom: 28px; }
.about-introduction__copy p { color: var(--muted); }
.about-duo { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; background: var(--navy); }
.about-duo__panel { display: flex; flex-direction: column; justify-content: center; padding: 76px max(48px, calc((100vw - var(--wrap)) / 2)); color: #dce2e4; background: var(--navy); }
.about-duo__panel--left { padding-right: 70px; padding-left: max(48px, calc((100vw - var(--wrap)) / 2)); }
.about-duo__panel--right { padding-right: max(48px, calc((100vw - var(--wrap)) / 2)); padding-left: 70px; }
.about-duo__panel h2 { margin-bottom: 28px; color: var(--white); }
.about-duo__panel h3 { margin: 25px 0 16px; color: var(--white); }
.about-duo__panel p { color: #c8d0d3; }
.about-duo__media { position: relative; min-height: 100%; overflow: hidden; background: var(--black); }
.about-duo__media::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .08); content: ""; }
.about-feature-list { display: grid; gap: 12px; margin-top: 15px; }
.about-feature-list li { position: relative; padding: 10px 0 10px 34px; border-bottom: 1px solid rgba(255,255,255,.13); color: var(--white); }
.about-feature-list li::before { position: absolute; top: 13px; left: 0; display: grid; width: 18px; height: 18px; place-items: center; background: var(--gold); color: var(--navy); content: "✓"; font-size: 11px; font-weight: 800; }

/* 27. Component preview */
.preview-header { padding: 75px 0; background: var(--navy); color: var(--white); }
.preview-header h1 { margin-bottom: 20px; color: var(--white); font-size: 48px; }
.preview-index { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: var(--white); }
.preview-index .wrap { display: flex; gap: 25px; overflow-x: auto; padding: 16px 0; }
.preview-index a { flex: none; color: var(--navy); font-size: 14px; font-weight: 600; }
.preview-index a:hover { color: var(--gold); }
.preview-block { padding: 70px 0; border-bottom: 1px solid var(--line); }
.preview-block > .wrap > h2 { margin-bottom: 38px; }
.swatch-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.swatch { width: 175px; border: 1px solid var(--line); }
.swatch-color { height: 105px; }
.swatch-info { padding: 14px; font-size: 13px; }
.button-preview { display: flex; flex-wrap: wrap; gap: 18px; padding: 30px; background: var(--grey); }
.button-preview--dark { background: var(--navy); }

/* 28. Responsive behavior matching the original desktop/mobile split */
@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 225px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .header-contact { display: none; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .product-slide { flex-basis: calc((100% - 40px) / 3); }
  .about-duo__panel { padding: 60px 48px; }
  .drawing-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card__media { min-height: 205px; }
  .article-layout { gap: 35px; }
}

@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .announcement { min-height: 38px; font-size: 13px; }
  .header-main, .site-header.is-fixed .header-main { min-height: 92px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .wordmark { font-size: 23px; }
  .wordmark-symbol { width: 44px; height: 44px; }
  .desktop-nav { position: fixed; z-index: 75; top: 130px; right: 0; bottom: 0; left: 0; display: block; padding: 24px; overflow-y: auto; background: var(--white); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .2s, transform .2s; }
  .nav-open .desktop-nav { opacity: 1; pointer-events: auto; transform: none; }
  .desktop-nav > a { display: block; padding: 18px 8px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .header-actions .button { display: none; }
  .menu-toggle { display: block; }
  .summary-grid { grid-template-columns: 1fr; gap: 55px; }
  .summary-item { padding-inline: 12%; }
  .image-card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .testimonial-layout, .contact-layout, .contact-band-inner { grid-template-columns: 1fr; }
  .about-copy { padding: 20px 0 0; }
  .client-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .client-card:nth-child(3) { display: none; }
  .client-stage.is-expanded .client-card:nth-child(3) { display: flex; }
  .product-slide { flex-basis: calc((100% - 20px) / 2); }
  .process-item { grid-template-columns: 70px 1fr; }
  .process-item p { grid-column: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-introduction__grid, .about-duo { grid-template-columns: 1fr; }
  .about-introduction__copy { padding: 45px 20px 20px; }
  .about-mask-media { margin: 28px 28px 0; }
  .about-duo__media { min-height: 430px; }
  .about-duo--reverse .about-duo__media { order: 2; }
  .about-duo--reverse .about-duo__panel { order: 1; }
  .technical-rfq__layout { grid-template-columns: 1fr; }
  .rfq-sidebar { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 620px) {
  h1 { font-size: 39px; line-height: 1.05; }
  h2 { font-size: 32px; line-height: 1.08; }
  .wrap { width: calc(100% - 30px); }
  .wide-wrap { width: calc(100% - 24px); }
  .section { padding: 62px 0; }
  .announcement { padding-inline: 12px; font-size: 12px; }
  .desktop-nav { top: 130px; }
  .home-hero { min-height: 650px; }
  .hero-content { padding: 64px 0; }
  .home-hero p { font-size: 16px; }
  .page-hero { min-height: 420px; }
  .page-hero h1 { font-size: 38px; }
  .image-card-grid, .advantage-grid, .client-grid, .article-grid, .market-grid { grid-template-columns: 1fr; }
  .client-card:nth-child(n+2) { display: none; }
  .client-stage.is-expanded .client-card:nth-child(n+2) { display: flex; }
  .image-card__media { margin-bottom: 20px; }
  .help-inner { grid-template-columns: 1fr; gap: 24px; }
  .advantage-card { min-height: 0; }
  .carousel-slide { min-height: 360px; }
  .product-slide { flex-basis: 100%; }
  .testimonial { padding: 34px 26px; }
  .market-card { min-height: 230px; }
  .process-item { grid-template-columns: 50px 1fr; gap: 15px; }
  .process-number { font-size: 25px; }
  .quote-form { grid-template-columns: 1fr; }
  .field--full, .form-note { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-contact { top: auto; right: 15px; bottom: 82px; min-height: 0; padding: 12px 15px; writing-mode: initial; }
  .quote-panel { padding: 38px 22px 24px; }
  .about-page-hero { min-height: 380px; }
  .about-page-hero__box { padding: 52px 25px; }
  .about-page-hero h1 { font-size: 39px; }
  .about-page-hero p { font-size: 17px; }
  .about-introduction { padding: 45px 0; }
  .about-mask-media { min-height: 270px; margin: 22px 16px 0; }
  .about-mask-media::before { top: -16px; left: -16px; }
  .about-introduction__copy { padding: 36px 0 0; }
  .about-duo { min-height: 0; }
  .about-duo__panel { padding: 55px 25px; }
  .about-duo__media { min-height: 300px; }
  .technical-rfq { padding: 55px 0 62px; }
  .technical-rfq__heading h1 { font-size: 39px; }
  .rfq-panel { padding: 22px 18px; }
  .rfq-form, .rfq-sidebar, .drawing-guide-grid { grid-template-columns: 1fr; }
  .rfq-field--full, .rfq-submit, .rfq-privacy { grid-column: auto; }
  .drawing-guide { padding: 55px 0 62px; }
  .blog-hero { min-height: 235px; }
  .blog-hero h1 { font-size: 42px; }
  .blog-content { padding: 52px 0 62px; }
  .blog-post-grid { grid-template-columns: 1fr; gap: 39px; }
  .blog-card__media { min-height: 225px; }
  .blog-sidebar { padding: 25px 20px; }
  .article-hero { min-height: 320px; }
  .article-hero__content h1 { font-size: 37px; }
  .article-section { padding: 52px 0 62px; }
  .article-body h2 { font-size: 27px; }
  .article-media { min-height: 260px; }
  .article-author { grid-template-columns: 1fr; padding: 25px 0; }
}

/* TGVGlass 1.2 product, service, and collection templates */
.header-main,
.site-header.is-fixed .header-main { min-height: 100px; }
.single-media { position: relative; min-height: 495px; overflow: hidden; background: var(--black); }
.single-media img,
.image-card__media img,
.market-card img,
.article-media img,
.carousel-slide img,
.collection-card__media img { width: 100%; height: 100%; object-fit: cover; }
.material-profile-line { margin: 48px 0 0; padding: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); }
.material-profile-line strong { color: var(--navy); }
.material-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-card { min-height: 275px; padding: 32px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: background-color .25s, transform .25s; }
.material-card:hover { background: var(--grey-light); transform: translateY(-4px); }
.material-card__number { display: block; margin-bottom: 30px; color: var(--gold); font-size: 15px; font-weight: 700; }
.material-card h3 { margin-bottom: 16px; }
.material-card p { color: var(--muted); font-size: 15px; }
.material-card strong { display: block; padding-top: 14px; border-top: 1px solid var(--line); color: var(--navy); font-size: 14px; }
.about-copy h3 { margin: 28px 0 16px; }
.service-check-list { display: grid; gap: 10px; margin: 0 0 28px; }
.service-check-list li { position: relative; padding: 9px 0 9px 30px; border-bottom: 1px solid var(--line); color: var(--muted); }
.service-check-list li::before { position: absolute; top: 11px; left: 0; display: grid; width: 17px; height: 17px; place-items: center; background: var(--gold); color: var(--navy); content: "✓"; font-size: 10px; font-weight: 800; }
.service-option-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 36px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-option-list span { position: relative; padding: 20px 24px 20px 52px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); }
.service-option-list span::before { position: absolute; top: 22px; left: 24px; color: var(--gold); content: "✓"; font-weight: 800; }
.industry-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.industry-service-card { display: grid; min-height: 310px; grid-template-columns: .78fr 1.22fr; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.industry-service-card:last-child { grid-column: 1 / -1; }
.industry-service-card__media { min-height: 100%; }
.industry-service-card__body { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.industry-service-card__body h3 { margin-bottom: 16px; }
.industry-service-card__body p { color: var(--muted); font-size: 15px; }
.industry-service-card__body .text-link { margin-top: auto; }
.product-material-grid { grid-template-columns: repeat(2, 1fr); }
.product-application-grid { grid-template-columns: repeat(3, 1fr); }
.product-three-grid { grid-template-columns: repeat(3, 1fr); }
.product-application-copy { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-application-copy article { padding: 28px; border-right: 1px solid var(--line); background: var(--white); }
.product-application-copy article:last-child { border-right: 0; }
.product-application-copy h3 { margin-bottom: 14px; }
.product-application-copy p { margin: 0; color: var(--muted); font-size: 15px; }

/* Compact Product detail layout */
.product-detail-page { background: var(--grey); }
.product-detail-wrap { width: min(920px, calc(100% - 40px)); margin-inline: auto; }
.page-id-495 .product-detail-wrap,
.page-id-497 .product-detail-wrap { width: min(1200px, calc(100% - 40px)); }
.product-detail-hero { position: relative; display: flex; min-height: 245px; align-items: center; background: var(--black); color: var(--white); }
.product-detail-hero::before { position: absolute; inset: 0; content: ""; background: rgba(31,43,48,.68); }
.product-detail-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.product-detail-hero h1 { max-width: 670px; color: var(--white); font-size: 35px; line-height: 1.1; }
.product-detail-hero .breadcrumb { margin-top: 18px; }
.product-detail-section { padding: 62px 0; }
.product-detail-section--grey { background: var(--grey); }
.product-detail-section--white { background: var(--white); }
.product-intro-layout { display: grid; align-items: start; grid-template-columns: .9fr 1.1fr; gap: 32px; }
.product-gallery .carousel-slide { min-height: 360px; }
.product-intro-copy h2 { margin-bottom: 18px; font-size: 28px; }
.product-intro-copy h3 { margin: 22px 0 12px; font-size: 17px; }
.product-intro-copy p { color: var(--muted); font-size: 14px; }
.product-detail-title { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.product-detail-title span { display: block; margin-bottom: 8px; color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.product-detail-title h2 { margin-bottom: 12px; font-size: 27px; }
.product-detail-title p { margin: 0; color: var(--muted); font-size: 14px; }
.product-spec-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 10px; background: var(--white); }
.product-spec-table { min-width: 0; }
.product-spec-table th, .product-spec-table td { padding: 12px 14px; font-size: 13px; }
.product-spec-image { min-height: 100%; }
.product-capability-table { margin-top: 18px; }
.product-capability-table .spec-table { min-width: 760px; }
.product-capability-table th, .product-capability-table td { padding: 12px 14px; font-size: 13px; }
.product-help-strip { padding: 34px 0; background: var(--white); }
.product-help-strip .product-detail-wrap { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.product-help-strip h2 { margin-bottom: 6px; font-size: 25px; }
.product-help-strip p { margin: 0; color: var(--muted); font-size: 14px; }
.product-mechanism-layout { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 34px; }
.product-mechanism-image { min-height: 310px; }
.product-mechanism-layout h3 { margin-bottom: 8px; font-size: 17px; }
.product-mechanism-layout p { color: var(--muted); font-size: 14px; }
.product-two-column-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.product-two-column-copy article { padding: 24px; border: 1px solid var(--line); }
.product-two-column-copy h3 { margin-bottom: 16px; }
.product-two-column-copy p { color: var(--muted); font-size: 14px; }
.product-why-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; }
.product-why-image { min-height: 300px; }
.product-why-layout ol { margin: 0; padding-left: 20px; }
.product-why-layout li { margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.product-why-layout strong { color: var(--navy); }
.product-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-faq-grid article { padding: 24px; border: 1px solid var(--line); background: var(--white); }
.product-faq-grid h3 { margin-bottom: 12px; font-size: 16px; }
.product-faq-grid p { margin: 0; color: var(--muted); font-size: 13px; }

/* Product and Service collection templates */
.collection-hero { position: relative; display: flex; min-height: 330px; align-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.collection-hero .wp-banner-content { position: relative; z-index: 1; text-align: left; }
.collection-hero h1 { color: var(--white); font-size: 50px; }
.collection-intro { padding: 72px 0; background: var(--white); }
.collection-intro__inner { max-width: 920px; text-align: center; }
.collection-intro h2 { margin-bottom: 24px; }
.collection-intro p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.collection-listing { padding: 80px 0 92px; background: var(--grey); }
.collection-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
.collection-card { min-width: 0; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.08); transition: transform .28s, box-shadow .28s; }
.collection-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.collection-card__media { width: 100%; aspect-ratio: 1.42 / 1; }
.collection-card__body { min-height: 150px; padding: 25px 24px; }
.collection-card__body h3 { min-height: 47px; margin-bottom: 24px; }
.collection-card:hover h3 { color: var(--gold); }

@media (max-width: 1180px) {
	.material-card-grid { grid-template-columns: repeat(2, 1fr); }
	.industry-service-card { grid-template-columns: 1fr; }
	.industry-service-card__media { min-height: 245px; }
}
@media (max-width: 900px) {
	.product-intro-layout, .product-spec-layout, .product-mechanism-layout, .product-why-layout { grid-template-columns: 1fr; }
	.product-spec-image { min-height: 360px; }
	.product-application-copy, .industry-service-grid { grid-template-columns: 1fr; }
	.product-application-copy article { border-right: 0; border-bottom: 1px solid var(--line); }
	.industry-service-card:last-child { grid-column: auto; }
	.collection-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.single-media { min-height: 360px; }
	.material-card-grid, .product-material-grid, .product-application-grid, .product-three-grid, .product-two-column-copy, .product-faq-grid, .collection-card-grid, .service-option-list { grid-template-columns: 1fr; }
	.material-card { min-height: 0; }
	.product-detail-wrap { width: calc(100% - 30px); }
	.product-detail-hero { min-height: 280px; }
	.product-detail-hero__inner, .product-help-strip .product-detail-wrap { align-items: flex-start; flex-direction: column; }
	.product-detail-hero h1 { font-size: 34px; }
	.product-detail-section { padding: 52px 0; }
	.product-gallery .carousel-slide { min-height: 320px; }
	.collection-hero { min-height: 280px; }
	.collection-hero h1 { font-size: 39px; }
	.collection-intro, .collection-listing { padding: 60px 0; }
}

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

/* WordPress theme integration */
.wp-featured-banner {
  background-color: var(--black);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.wp-featured-banner::before { background-color: rgba(31, 43, 48, .68); }
.wp-banner-content { position: relative; z-index: 2; text-align: center; }
.wp-banner-content h1 { color: var(--white); }
.wp-banner-content p { max-width: 850px; margin: 20px auto 0; color: #dce2e4; font-size: 18px; }
.wp-banner-content .button-row { justify-content: center; margin-top: 34px; }
.home-hero .wp-banner-content { text-align: left; }
.home-hero .wp-banner-content p { max-width: 1180px; margin-right: 0; margin-left: 0; }
.home-hero .wp-banner-content .button-row { justify-content: flex-start; }
.home-hero .wp-banner-content { padding: 80px 0; }
.page-hero .wp-banner-content { padding: 74px 0; }

/* Template-driven mega navigation, matching the existing navy / white / gold system. */
.desktop-nav .nav-mega { position: static; display: flex; align-items: center; min-height: 100px; }
.desktop-nav .nav-mega > a::after { margin-left: 6px; content: "⌄"; font-size: 11px; }
.mega-panel { position: absolute; z-index: 30; top: 100%; right: 0; left: 0; display: grid; visibility: hidden; grid-template-columns: minmax(250px, .7fr) 2fr; gap: 38px; width: min(1200px, calc(100vw - 48px)); margin: 0 auto; padding: 34px 38px 38px; border-top: 3px solid var(--gold); background: var(--white); box-shadow: 0 18px 40px rgba(17,31,36,.18); color: var(--navy); opacity: 0; transform: translateY(10px); transition: .2s ease; pointer-events: none; }
.nav-mega:hover .mega-panel, .nav-mega:focus-within .mega-panel { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mega-panel__intro { padding-right: 34px; border-right: 1px solid #d7dcde; }
.mega-panel__intro h2 { margin: 8px 0 12px; font-size: 25px; }
.mega-panel__intro p { margin-bottom: 16px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.mega-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 22px; }
.mega-page-link { display: flex; min-height: 76px; flex-direction: column; justify-content: center; padding: 12px 15px; border-bottom: 1px solid #d7dcde; color: var(--navy); }
.mega-page-link:hover { border-color: var(--gold); background: #f5f5f5; }
.mega-page-link span { font-weight: 700; line-height: 1.3; }
.mega-page-link small { margin-top: 6px; color: #6d777b; }

/* HTML-owned page banners: full-width content and original left alignment. */
.wp-featured-banner .wp-banner-content { width: 100%; max-width: none; padding-right: 5%; padding-left: 5%; box-sizing: border-box; text-align: left; }
.wp-featured-banner .wp-banner-content p { margin-right: 0; margin-left: 0; }
.wp-featured-banner .button-row { justify-content: flex-start; }
.about-page-hero .wp-banner-content { max-width: 890px; padding: 72px 48px; background: rgba(31,43,48,.9); text-align: left; }
.about-page-hero .wp-banner-content p { margin-left: 0; }
.theme-logo, .custom-logo-link { display: flex; align-items: center; }
.custom-logo { width: auto; max-width: 240px; max-height: 72px; object-fit: contain; }
.desktop-nav > li { position: relative; list-style: none; }
.desktop-nav > li > a { display: block; color: var(--navy); font-size: 15px; font-weight: 500; }
.desktop-nav .current-menu-item > a, .desktop-nav .current-menu-ancestor > a { color: var(--gold); }
.desktop-nav .sub-menu { position: absolute; z-index: 90; top: calc(100% + 18px); left: -18px; display: none; min-width: 230px; padding: 12px 0; background: var(--white); box-shadow: var(--shadow); }
.desktop-nav li:hover > .sub-menu, .desktop-nav li:focus-within > .sub-menu { display: block; }
.desktop-nav .sub-menu a { display: block; padding: 10px 18px; color: var(--navy); font-size: 14px; }
.desktop-nav .sub-menu a:hover { color: var(--gold); }
.footer-links ul { display: grid; gap: 10px; }
.footer-links li { list-style: none; }
.footer-contact a { color: #adb9bc; }
.footer-contact a:hover { color: var(--gold); }
.wp-page-content { min-height: 180px; }
.wp-page-content:empty { display: none; }
.wp-page-content > p, .wp-page-content > h2, .wp-page-content > h3, .wp-page-content > ul, .wp-page-content > ol { width: min(var(--wrap), calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.wp-page-content > p:first-child { margin-top: 60px; }
.wp-page-content > p:last-child { margin-bottom: 60px; }
.ti-acf-img, .ti-featured-media img, .image-placeholder img, .carousel-slide img, .market-card img, .blog-card__media img, .article-card__media img, .article-media img, .about-mask-media img, .about-duo__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-card img { position: absolute; inset: 0; }
.market-card::before { z-index: 1; }
.market-card h3 { z-index: 2; }
.image-placeholder, .carousel-slide, .market-card, .blog-card__media, .article-card__media, .article-media, .about-mask-media, .about-duo__media, .ti-featured-media { overflow: hidden; background: var(--black); }
.wp-blog-pagination { margin-top: 55px; }
.wp-blog-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
.wp-blog-pagination .page-numbers { display: grid; min-width: 36px; height: 36px; padding: 0 10px; place-items: center; color: var(--muted); font-size: 13px; }
.wp-blog-pagination .page-numbers:hover, .wp-blog-pagination .page-numbers.current { background: var(--gold); color: var(--navy); }
.article-sidebar__links > li, .article-sidebar__links .cat-item { list-style: none; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.alignwide { width: min(1360px, calc(100% - 40px)); max-width: none; margin-right: auto; margin-left: auto; }
.alignfull { width: 100%; max-width: none; }

@media (max-width: 900px) {
	.desktop-nav .nav-mega { display: block; min-height: 0; }
	.mega-panel { position: static; display: block; visibility: visible; width: 100%; padding: 12px 0 18px 18px; border: 0; background: transparent; box-shadow: none; color: var(--white); opacity: 1; transform: none; pointer-events: auto; }
	.mega-panel__intro { display: none; }
	.mega-link-grid { grid-template-columns: 1fr; gap: 0; }
	.mega-page-link { min-height: 42px; padding: 8px 0; border-color: rgba(255,255,255,.14); color: var(--white); }
	.mega-page-link small { display: none; }
  .desktop-nav > li > a { padding: 18px 8px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .desktop-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 0 18px; box-shadow: none; }
  .desktop-nav .sub-menu a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .custom-logo { max-width: 205px; max-height: 58px; }
  .wp-banner-content p { font-size: 16px; }
  .wp-page-content > p, .wp-page-content > h2, .wp-page-content > h3, .wp-page-content > ul, .wp-page-content > ol { width: calc(100% - 30px); }
}

/* Reusable component blocks learned from the approved product/service reference. */
.component-page { background: var(--white); }
.component-hero { position: relative; display: flex; min-height: 445px; align-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.component-hero::before { position: absolute; inset: 0; content: ""; background: rgba(31, 43, 48, .72); }
.component-hero__inner { position: relative; z-index: 1; }
.component-hero h1 { max-width: 1000px; margin-bottom: 26px; color: var(--white); font-size: 55px; }
.component-hero p { max-width: 960px; margin-bottom: 26px; color: #e3e7e9; font-size: 20px; line-height: 1.55; }
.component-hero--wide-copy .component-hero__inner { max-width: 1050px; }
.component-hero--wide-copy p { max-width: 1000px; font-size: 22px; line-height: 1.42; }
.component-hero--soft-overlay::before { background: rgba(23, 33, 38, .58); }
.component-breadcrumb { padding: 17px 0; border-bottom: 1px solid var(--line); background: var(--grey-light); color: var(--muted); font-size: 13px; text-align: center; }
.component-breadcrumb span { margin: 0 8px; }
.about-breadcrumb, .blog-breadcrumb { padding: 17px 0; border-bottom: 1px solid var(--line); background: var(--grey-light); }
.about-breadcrumb ol, .blog-breadcrumb ol { justify-content: center; gap: 8px; color: var(--muted); font-size: 13px; }
.about-breadcrumb li + li::before, .blog-breadcrumb li + li::before { margin-right: 8px; color: inherit; content: "»"; }

.component-intro-section { padding: 74px 0 66px; background: var(--white); }
.component-narrative { max-width: 1040px; margin: 0 auto 48px; text-align: center; }
.component-narrative h2, .component-section-heading { margin-bottom: 24px; font-size: 40px; text-align: center; }
.component-narrative p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.component-numbered-grid { display: grid; margin: 32px 0 0; padding: 0; counter-reset: component-step; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; text-align: left; }
.component-numbered-grid li { position: relative; min-height: 112px; padding: 24px 24px 24px 70px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); counter-increment: component-step; }
.component-numbered-grid li::before { position: absolute; top: 24px; left: 24px; color: var(--gold); content: "0" counter(component-step); font-size: 18px; font-weight: 700; }
.component-numbered-grid strong { display: block; margin-bottom: 6px; color: var(--navy); }

.component-table { overflow-x: auto; border: 1px solid #ccc; }
.component-table table { width: 100%; min-width: 720px; border-collapse: collapse; }
.component-table th, .component-table td { padding: 13px 18px; border: 1px solid #ccc; }
.component-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.component-table tbody tr:nth-child(odd) td { background: var(--white); }
.component-table tbody tr:nth-child(even) td { background: #f7f7f7; }
.component-table--centered th, .component-table--centered td { text-align: center; }
.component-table--soft-head th { background: #dfe3e6; color: #333; }

.component-card-section { padding: 64px 0 76px; background: var(--grey); }
.component-card-grid { display: grid; gap: 34px 0; }
.component-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.component-media-card { min-width: 0; padding: 0 12px 28px; text-align: center; }
.component-media-card__media { width: 100%; aspect-ratio: 1 / 1; margin-bottom: 22px; overflow: hidden; background: var(--black); }
.component-media-card__media img, .component-single-media img, .component-application-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.component-media-card h3 { margin-bottom: 12px; font-size: 20px; }
.component-media-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.component-split-section { padding: 76px 0; background: var(--grey); }
.component-split { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 52px; }
.component-single-media { min-height: 500px; overflow: hidden; background: var(--black); }
.component-split__copy h2 { margin-bottom: 22px; font-size: 40px; }
.component-split__copy p, .component-split__copy li { color: var(--muted); }
.component-split__copy h3 { margin: 26px 0 13px; font-size: 18px; }
.component-split__copy ul { margin: 0 0 28px; padding-left: 20px; list-style: disc; }
.component-split__copy li { margin-bottom: 8px; }

.component-dual-section { padding: 58px 0; background: var(--grey); }
.component-dual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.component-dual-column h2 { margin-bottom: 22px; font-size: 40px; }
.component-dual-column p, .component-dual-column li { color: var(--muted); }
.component-dual-column h3 { margin: 20px 0 8px; font-size: 18px; }
.component-dual-column ul { padding-left: 20px; list-style: disc; }
.component-dual-column li { margin-bottom: 8px; }

.component-application-section { padding: 70px 0 0; background: var(--white); }
.component-application-heading { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.component-application-heading h2 { margin-bottom: 16px; font-size: 35px; }
.component-application-heading p { color: var(--muted); }
.component-application-row { display: grid; min-height: 335px; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.component-application-list--alternating .component-application-row:nth-child(even) .component-application-media { order: 2; }
.component-application-list--alternating .component-application-row:nth-child(even) .component-application-copy { order: 1; }
.component-application-row--wide-copy { grid-template-columns: 40% 60%; }
.component-application-media { min-height: 335px; overflow: hidden; background: var(--black); }
.component-application-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px 55px; background: var(--grey-light); }
.component-application-copy h2 { margin-bottom: 18px; font-size: 40px; }
.component-application-copy h3 { margin-bottom: 16px; font-size: 25px; }
.component-application-copy p { color: var(--muted); }
.component-application-copy .button { align-self: flex-start; margin-top: 4px; }

.component-faq-section { padding: 68px 0; background: var(--grey); }
.component-faq-heading { margin-bottom: 34px; text-align: left; }
.component-faq-heading h2 { font-size: 35px; }
.component-contact-cta { padding: 64px 0; background: var(--navy); color: var(--white); }
.component-contact-cta__inner { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.component-contact-cta h2 { margin: 7px 0 16px; color: var(--white); font-size: 40px; }
.component-contact-cta p { color: #d6dcde; }
.component-contact-cta .small { margin: 0; color: var(--gold); }

/* 1.3.3 fixed media crop: every single-image frame is completely covered. */
.single-media,
.image-card__media,
.component-media-card__media,
.component-single-media,
.component-application-media,
.industry-service-card__media,
.collection-card__media,
.article-media,
.blog-card__media,
.article-card__media,
.about-mask-media,
.about-duo__media,
.ti-featured-media {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.single-media > img,
.image-card__media > img,
.component-media-card__media > img,
.component-single-media > img,
.component-application-media > img,
.industry-service-card__media > img,
.collection-card__media > img,
.article-media > img,
.blog-card__media > img,
.article-card__media > img,
.about-mask-media > img,
.about-duo__media > img,
.ti-featured-media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* WordPress can add empty paragraphs around linked media; remove them from the grid. */
.product-application-grid > p { display: none; }
.product-application-grid > .market-card { display: block; min-width: 0; }
.product-application-grid .market-card__media { position: absolute; inset: 0; }
.product-application-grid .market-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Contextual links retain the original card typography. */
.tgv-context-link { color: inherit; text-decoration: none; }
.tgv-context-link:hover, .tgv-context-link:focus-visible { color: var(--gold); }

/* Inquiry popup based on the supplied reference. */
body.inquiry-popup-open { overflow: hidden; }
.inquiry-popup { position: fixed; z-index: 99999; inset: 0; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .25s, visibility .25s; }
.inquiry-popup.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.inquiry-popup__backdrop { position: absolute; inset: 0; background: rgba(9, 18, 22, .58); }
.inquiry-popup__panel { position: absolute; top: 0; right: 0; width: min(435px, 100%); height: 100%; padding: 52px 48px 38px; overflow-y: auto; border-top: 5px solid #292929; background: var(--white); box-shadow: -12px 0 36px rgba(0,0,0,.2); transform: translateX(100%); transition: transform .3s ease; }
.inquiry-popup.is-open .inquiry-popup__panel { transform: translateX(0); }
.inquiry-popup__close { position: absolute; top: 19px; right: 22px; padding: 0; border: 0; background: none; color: #1f2b30; font-size: 32px; line-height: 1; cursor: pointer; }
.inquiry-popup__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.inquiry-popup__heading h2 { margin: 0; color: #1f2b30; font-size: 29px; }
.inquiry-popup__heading svg { width: 34px; height: 34px; fill: #050505; }
.inquiry-popup__form { display: grid; gap: 25px; }
.inquiry-popup__form label { display: block; }
.inquiry-popup__form input,
.inquiry-popup__form textarea { width: 100%; border: 1px solid #d8dadd; border-radius: 0; background: #f8f8f8; color: #1f2b30; font-size: 20px; }
.inquiry-popup__form input { min-height: 55px; padding: 12px 18px; }
.inquiry-popup__form textarea { min-height: 230px; padding: 16px 18px; border-radius: 9px; resize: vertical; }
.inquiry-popup__form input::placeholder,
.inquiry-popup__form textarea::placeholder { color: #8b96a0; opacity: 1; }
.inquiry-popup__submit { justify-self: start; min-width: 97px; border: 0; font-size: 18px; }
.inquiry-popup__privacy { margin: 24px 0 0; color: #43494d; font-size: 14px; line-height: 1.55; }
.inquiry-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.inquiry-form__status { grid-column: 1 / -1; min-height: 20px; margin: 0; font-size: 14px; }
.inquiry-form__status.is-success { color: #217a45; }
.inquiry-form__status.is-error { color: #b42318; }

@media (max-width: 520px) {
  .inquiry-popup__panel { padding: 50px 28px 30px; }
  .inquiry-popup__heading h2 { font-size: 27px; }
  .inquiry-popup__form { gap: 18px; }
  .inquiry-popup__form textarea { min-height: 190px; }
}

@media (max-width: 1000px) {
  .component-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .component-split, .component-contact-cta__inner { grid-template-columns: 1fr; }
  .component-single-media { min-height: 420px; }
  .component-application-row--wide-copy { grid-template-columns: 45% 55%; }
  .component-application-copy { padding: 35px; }
}

@media (max-width: 900px) {
  .component-dual-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 700px) {
  .component-hero { min-height: 420px; }
  .component-hero h1 { font-size: 39px; }
  .component-hero p, .component-hero--wide-copy p { font-size: 17px; }
  .component-narrative h2, .component-section-heading, .component-split__copy h2, .component-dual-column h2, .component-application-copy h2, .component-contact-cta h2 { font-size: 31px; }
  .component-numbered-grid, .component-card-grid--4, .component-application-row, .component-application-row--wide-copy { grid-template-columns: 1fr; }
  .component-application-list--alternating .component-application-row:nth-child(even) .component-application-media, .component-application-list--alternating .component-application-row:nth-child(even) .component-application-copy { order: initial; }
  .component-single-media, .component-application-media { min-height: 290px; }
  .component-application-copy { padding: 32px 24px; }
}
