:root {
  --ink: #15202f;
  --muted: #657080;
  --line: #d9e1e8;
  --soft: #f4f7f9;
  --brand: #1d5d8f;
  --brand-dark: #123e62;
  --gold: #b88a44;
  --white: #ffffff;
  --shadow: 0 12px 28px rgba(18, 32, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
}

.topbar__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand__logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.brand__mark {
  display: none; /* Hide the old text logo */
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  color: var(--white);
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
}

.nav > a,
.nav__group > a {
  padding: 27px 12px;
  color: var(--white);
}

.nav a:hover {
  color: var(--gold);
}

.nav__group {
  position: relative;
}

.nav__submenu-toggle {
  display: none;
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav__group:hover .nav__menu {
  display: grid;
}

.nav__menu--mega {
  width: min(1200px, calc(100vw - 40px));
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 24px 26px 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mega-column a {
  color: var(--ink) !important;
  line-height: 1.12;
}

.mega-column a:hover {
  color: #f0a21a !important;
}

.mega-title {
  margin-bottom: 4px;
  color: var(--brand-dark) !important;
  font-weight: 800 !important;
}

.nav__menu a {
  padding: 9px 10px;
  color: var(--ink) !important;
  font-weight: 600;
}

.nav__menu--mega a {
  padding: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: url("assets/banner/banner1.png") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(12, 27, 42, 0.8), rgba(12, 27, 42, 0.42), rgba(12, 27, 42, 0.1));
}

.hero__content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
  padding: 150px 0 110px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.04;
}

.hero__line {
  max-width: 740px;
  margin: 22px 0 12px;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
}

.hero__copy {
  max-width: 690px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  background: var(--brand);
  color: var(--white);
}

.button--ghost {
  margin-left: 10px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 76px 0;
}

.section--light {
  background: var(--soft);
}

.section__head {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.section__head--left {
  width: min(1180px, calc(100% - 32px));
  text-align: left;
}

h2 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1.18;
}

h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 19px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.product-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(18, 32, 48, 0.08);
}

.product-card__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.01;
  background: #e8edf2;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__item {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  color: var(--white);
  font-size: 15px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px;
}

.product-card h3 {
  min-height: 48px;
  margin-bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__meta {
  margin: 5px 0;
  color: #475160;
  font-size: 14px;
}

.product-card__excerpt {
  margin: 10px 0 14px;
  display: -webkit-box;
  min-height: 78px;
  overflow: hidden;
  color: #666;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.read-more {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 22px;
  color: var(--white);
  background: #ff7a1a;
  font-weight: 700;
}

.read-more:hover {
  background: #e86508;
}

.split {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.split__content p {
  font-size: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stats div,
.category-panel article,
.workshop__card,
.article-grid article,
.contact__form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.stats div {
  padding: 16px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--brand);
  font-size: 22px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.category-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-panel article {
  min-height: 170px;
  padding: 22px;
  border-top: 4px solid var(--brand);
}

.workshop {
  background: var(--white);
}

.workshop__grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.workshop__image {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.workshop__image--large {
  grid-row: span 2;
  background-image: url("assets/products/11-TMC-147.jpg");
}

.workshop__image--small {
  grid-column: span 2;
  background-image: url("assets/products/12-TCH-309.jpg");
}

.workshop__card {
  padding: 24px;
}

.article-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-grid article {
  padding: 24px;
}

.article-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.feedback {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14, 34, 52, 0.84), rgba(14, 34, 52, 0.36)),
    url("assets/banner/banner1.png") center / cover fixed;
}

.feedback__panel {
  width: min(680px, calc(100% - 32px));
  margin-left: max(16px, calc((100% - 1180px) / 2));
  padding: 34px;
  background: rgba(255, 255, 255, 0.9);
}

.faq-page {
  align-items: start;
}

.faq-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 114px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.faq-side h2 {
  margin: 6px 0 18px;
  color: var(--brand-dark);
}

.faq-side nav {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-side nav a {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font-weight: 700;
  background: #f7fafc;
}

.faq-side nav a:hover {
  color: var(--accent);
  border-color: rgba(255, 119, 28, 0.44);
  background: #fff7ef;
}

.faq-cta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.faq-cta strong {
  display: block;
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-cta p {
  margin: 0 0 16px;
  color: var(--muted);
}

.faq-content {
  display: grid;
  gap: 26px;
}

.faq-group {
  scroll-margin-top: 114px;
}

.faq-group h2 {
  color: var(--brand-dark);
  font-size: 26px;
  margin: 0 0 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(14, 34, 52, 0.06);
}

.faq-list summary {
  color: var(--brand-dark);
  font-weight: 800;
  cursor: pointer;
  padding: 17px 20px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.contact__info ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact__info li {
  padding: 14px 16px;
  background: var(--soft);
  border-left: 4px solid var(--brand);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.contact__info li:hover {
  transform: translateX(4px);
  background: #fff7ef;
  box-shadow: 0 10px 22px rgba(14, 34, 52, 0.08);
}

.contact__info a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact__info a:hover {
  color: var(--accent);
}

.contact__form {
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact__form label {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.footer {
  padding: 30px max(16px, calc((100% - 1180px) / 2)) 20px;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 1.1fr;
  gap: 20px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 4px;
}

.footer a {
  color: var(--muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer p {
  color: var(--muted);
  margin-bottom: 10px;
}

.footer__brand p {
  max-width: 410px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-link {
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer .social-link {
  display: inline-block;
  margin-bottom: 0;
}

.footer .social-link.fb {
  color: #1877f2;
}

.footer .social-link.ig {
  color: #e4405f;
}

.footer .social-link.tt {
  color: #000000;
}

.footer .social-link.wa {
  color: #25d366;
}

.social-link:hover {
  opacity: 0.75;
}

.footer .social-link:hover {
  transform: none;
}

.fb {
  color: #1877f2;
}

.ig {
  color: #e4405f;
}

.tt {
  color: #000000;
}

.wa {
  color: #25d366;
}

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.page-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 140px max(16px, calc((100% - 1180px) / 2)) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 35, 54, 0.9), rgba(18, 35, 54, 0.46)),
    url("assets/banner/banner1.png") center / cover;
}

.breadcrumbs--light,
.breadcrumbs--light a {
  color: var(--white) !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
}

.breadcrumbs--light span {
  color: var(--white) !important;
}

.breadcrumbs--light a:hover {
  color: #f6b21a !important;
  opacity: 1;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.1;
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.page-hero--projects {
  min-height: 380px;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
    url("assets/banner/banner4.png") center / cover;
}

.page-hero--about {
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(18, 35, 54, 0.88), rgba(18, 35, 54, 0.4)),
    url("assets/banner/banner2.png") center / cover;
}

.page-hero--products {
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(18, 35, 54, 0.88), rgba(18, 35, 54, 0.38)),
    url("assets/banner/banner3.png") center / cover;
}

.page-hero--products .breadcrumbs--light {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero--about h1,
.page-hero--about p:not(.eyebrow),
.page-hero--products h1,
.page-hero--products p:not(.eyebrow),
.page-hero--faq h1,
.page-hero--faq p:not(.eyebrow),
.page-hero--contact h1,
.page-hero--contact p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--faq,
.page-hero--contact {
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(18, 35, 54, 0.88), rgba(18, 35, 54, 0.38)),
    url("assets/banner/banner5.png") center / cover;
}

.page-hero--projects h1 {
  margin: 0;
  font-size: 36px;
}

.page-hero--projects p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.project-list-section {
  border-top: 1px solid var(--line);
}

.project-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(18, 32, 48, 0.1);
}

.project-card__image {
  display: block;
  background: var(--soft);
}

.project-card__image img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  display: block;
}

.project-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
}

.project-card h2 {
  min-height: 58px;
  margin: 0 0 14px;
  color: #111;
  font-size: 20px;
  line-height: 1.22;
}

.project-card h2 a {
  color: inherit;
}

.project-card__body p {
  min-height: 78px;
  margin: 0 0 26px;
  color: #6d6d6d;
  line-height: 1.55;
}

.project-read-more {
  margin-top: auto;
  color: #111;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.project-read-more:hover {
  color: var(--brand);
}

.project-card__date {
  padding: 12px 20px;
  border-top: 1px solid #e7e7e7;
  color: #a2a2a2;
  font-size: 13px;
}

.project-detail-page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 134px 0 70px;
}

.project-article {
  color: #333;
}

.project-article h1 {
  max-width: 920px;
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 40px;
  line-height: 1.14;
}

.project-date {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.project-article__hero {
  margin: 0 0 30px;
}

.project-article__hero img,
.project-gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  background: var(--soft);
}

.project-article__hero img {
  max-height: 620px;
}

.project-lead {
  max-width: 860px;
  margin: 0 0 28px;
  color: #555;
  font-size: 18px;
  line-height: 1.72;
}

.project-article h2 {
  margin: 30px 0 12px;
  color: var(--brand-dark);
  font-size: 26px;
}

.project-article p {
  max-width: 860px;
  color: #555;
  line-height: 1.75;
}

.project-gallery-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-gallery-grid figure {
  margin: 0;
}

.project-gallery-grid img {
  aspect-ratio: 4 / 3;
}

.page-hero--blog {
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(18, 35, 54, 0.86), rgba(18, 35, 54, 0.42)),
    url("assets/banner/banner5.png") center / cover;
}

.page-hero--blog h1 {
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(18, 32, 48, 0.1);
}

.blog-card__image {
  display: block;
  background: var(--soft);
}

.blog-card__image img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

.blog-card__body span {
  margin-bottom: 10px;
  color: #a2a2a2;
  font-size: 13px;
}

.blog-card h2 {
  min-height: 58px;
  margin: 0 0 14px;
  color: #111;
  font-size: 20px;
  line-height: 1.22;
}

.blog-card h2 a {
  color: inherit;
}

.blog-card__body p {
  min-height: 100px;
  margin: 0 0 24px;
  color: #666;
  line-height: 1.58;
}

.blog-detail-page {
  width: min(1020px, calc(100% - 32px));
  margin: 0 auto;
  padding: 134px 0 74px;
}

.blog-article h1 {
  max-width: 920px;
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 40px;
  line-height: 1.14;
}

.blog-article__hero {
  margin: 0 0 30px;
}

.blog-article__hero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  background: var(--soft);
}

.blog-article__content {
  color: #444;
  font-size: 17px;
  line-height: 1.76;
}

.blog-article__content h2 {
  margin: 34px 0 14px;
  color: var(--brand-dark);
  font-size: 29px;
  line-height: 1.24;
}

.blog-article__content h3 {
  margin: 28px 0 12px;
  color: var(--brand-dark);
  font-size: 22px;
}

.blog-article__content p,
.blog-article__content ul,
.blog-article__content ol {
  max-width: 880px;
}

.blog-article__content figure {
  margin: 28px 0;
}

.blog-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: var(--soft);
}

.blog-article__content figcaption,
.blog-article__content .wp-caption-text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.blog-article__content table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  background: var(--white);
}

.blog-article__content td,
.blog-article__content th {
  padding: 11px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.blog-article__content a {
  color: var(--brand);
  font-weight: 700;
}

.product-toolbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.product-toolbar strong {
  color: var(--brand-dark);
}

.listing-topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 310px;
  align-items: center;
  gap: 20px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(18, 32, 48, 0.12);
}

.breadcrumbs--bar {
  margin: 0;
  color: #111;
  font-size: 15px;
}

.search-box {
  display: flex;
  justify-content: end;
}

.search-box input {
  height: 32px;
  border-radius: 3px 0 0 3px;
  border-right: 0;
  background: #f7f8fa;
}

.search-box button {
  width: 64px;
  border: 0;
  border-radius: 0 3px 3px 0;
  color: var(--white);
  background: #ef4d1b;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.subcategory-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-chip {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brand-dark);
  background: var(--white);
}

.category-chip:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(18, 32, 48, 0.08);
}

.category-chip span {
  color: var(--muted);
  font-size: 13px;
}

.pagination {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--brand-dark);
  background: var(--white);
  font-weight: 800;
}

.pagination .is-current {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

.product-detail {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 700;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: start;
}

.product-gallery {
  position: relative;
}

.product-gallery__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  cursor: zoom-in;
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--soft);
}

.product-gallery__lens {
  position: absolute;
  width: 46%;
  height: 46%;
  display: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.product-gallery__lens.is-visible {
  display: block;
}

.product-gallery__thumbs {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.product-gallery__thumb {
  flex: 0 0 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  scroll-snap-align: start;
}

.product-gallery__thumb.is-active {
  border-color: #ff7a1a;
}

.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--soft);
}

.product-gallery__zoom {
  position: absolute;
  top: 0;
  left: calc(100% + 22px);
  z-index: 8;
  width: min(520px, 88vw);
  aspect-ratio: 4 / 3;
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: 220%;
  box-shadow: var(--shadow);
}

.product-gallery__zoom.is-visible {
  display: block;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(4, 10, 18, 0.86);
}

.image-lightbox.is-visible {
  display: flex;
}

.image-lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.product-summary h1 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 36px;
  line-height: 1.12;
}

.spec-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.spec-table th {
  width: 32%;
  color: var(--brand-dark);
  background: #e8eef5;
}

.button--outline {
  margin-left: 10px;
  color: var(--brand);
  background: var(--white);
}

.article-content {
  max-width: 850px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-content h2 {
  margin-top: 26px;
  font-size: 27px;
}

.article-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.article-list li {
  margin-bottom: 8px;
}

.about-intro {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-intro__text p {
  font-size: 16px;
}

.about-intro__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.team-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  border-top: 4px solid var(--gold);
}

.about-gallery,
.visit-gallery {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.about-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.visit-gallery {
  grid-template-columns: repeat(6, 1fr);
}

.about-gallery img,
.visit-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
}

.about-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
}

.about-cta h2 {
  color: var(--white);
}

.about-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a,
  .nav__group > a {
    padding: 12px 0;
    color: var(--brand-dark);
    border-bottom: 1px solid var(--line);
  }

  .nav__submenu-toggle {
    width: 100%;
    display: block;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--brand);
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
  }

  .nav__submenu-toggle::after {
    content: "+";
    float: right;
    color: var(--gold);
  }

  .nav__group.is-open .nav__submenu-toggle::after {
    content: "-";
  }

  .nav__menu {
    position: static;
    transform: none;
    width: auto;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
  }

  .nav__group:hover .nav__menu {
    display: none;
  }

  .nav__group.is-open .nav__menu {
    display: grid;
  }

  .nav__menu--mega {
    grid-template-columns: 1fr;
    gap: 14px;
    color: var(--ink);
    background: var(--white);
  }

  .mega-column a,
  .mega-title {
    color: var(--ink) !important;
  }

  .hero h1 {
    font-size: 38px;
  }

  .product-grid,
  .product-grid--compact,
  .split,
  .contact,
  .article-grid,
  .product-detail__grid,
  .about-intro,
  .team-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery,
  .visit-gallery,
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .workshop__image {
    min-height: 260px;
  }

  .workshop__image--large,
  .workshop__image--small {
    grid-row: auto;
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .product-toolbar {
    display: grid;
  }

  .product-gallery__zoom,
  .product-gallery__zoom.is-visible,
  .product-gallery__lens {
    display: none;
  }

  .listing-topbar {
    grid-template-columns: 1fr;
  }

  .search-box {
    justify-content: stretch;
  }

  .subcategory-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta {
    display: grid;
  }
}

@media (max-width: 620px) {
  .topbar__inner {
    width: min(100% - 22px, 1180px);
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 560px;
    background-position: 58% 58%;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(12, 27, 42, 0.64), rgba(12, 27, 42, 0.34));
  }

  .hero__content {
    padding: 116px 0 62px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.18;
  }

  .hero__line {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero__copy {
    font-size: 14px;
    line-height: 1.7;
  }

  .button--ghost {
    margin: 10px 0 0;
  }

  .section {
    padding: 54px 0;
  }

  .page-hero {
    min-height: 300px;
    padding: 118px 18px 52px;
    background-position: center top;
  }

  .page-hero h1,
  .product-summary h1,
  .project-article h1,
  .blog-article h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .breadcrumbs--light,
  .breadcrumbs--light a {
    font-size: 14px;
    line-height: 1.6;
  }

  .page-hero--products .breadcrumbs--light {
    max-width: 100%;
  }

  .category-panel,
  .stats,
  .subcategory-strip {
    grid-template-columns: 1fr;
  }

  .about-gallery,
  .visit-gallery,
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side {
    position: static;
  }
}
