:root {
  --dark: #111;
  --text: #3c3f46;
  --muted: #74777d;
  --line: #e7e7e7;
  --light: #f6f6f6;
  --accent: #c1a683;
  --white: #fff;
  --container: 1180px;
}

@font-face {
  font-family: "Questrial";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/questrial-regular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Questrial", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 14px clamp(22px, 3vw, 54px);
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: block;
  padding: 10px 0;
  color: var(--dark);
  font-family: "Graphik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: capitalize;
  white-space: nowrap;
}

.site-nav .is-active,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a,
.site-nav .current-menu-parent > a {
  color: var(--accent);
}

.site-nav .has-children > a::after,
.site-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 245px;
  padding: 12px 18px;
  list-style: none;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.site-nav li li ul {
  top: -12px;
  left: calc(100% + 18px);
}

.site-nav li:hover > ul {
  display: block;
}

.site-nav li ul a {
  padding: 7px 0;
  color: var(--text);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dark);
  font-size: 16px;
}

.header-tools a,
.header-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: var(--dark);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
}

@media (min-width: 1101px) {
  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 87px);
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity .8s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - 87px);
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 80px 0 120px;
  text-align: right;
}

.hero-content p {
  margin: 0 0 16px;
  color: var(--accent);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0 0 34px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  overflow-wrap: break-word;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

.hero h1 span {
  display: block;
}

.button,
.contact-form button,
.subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  cursor: pointer;
}

.button.secondary {
  color: var(--dark);
  background: transparent;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: 40px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--accent);
}

.section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 96px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  background: var(--light);
}

#solutions {
  padding-right: max(20px, calc((100% - 1360px) / 2));
  padding-left: max(20px, calc((100% - 1360px) / 2));
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
}

.section-title span {
  display: block;
  margin-bottom: -18px;
  color: #e2e2e2;
  font-size: clamp(42px, 7vw, 74px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.section-title h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 600;
}

.section-title.compact {
  margin-bottom: 0;
  text-align: left;
}

.process-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--dark);
}

.process-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform .4s ease;
}

.process-card:hover img {
  transform: scale(1.04);
}

.process-card h3,
.process-card p {
  position: absolute;
  left: 18px;
  right: 18px;
  color: var(--white);
}

.process-card h3 {
  top: 18px;
  margin: 0;
  padding: 8px 12px;
  color: var(--dark);
  font-size: 15px;
  background: rgba(255, 255, 255, .82);
}

.process-card p {
  bottom: 18px;
  margin: 0;
  padding: 18px;
  background: rgba(193, 166, 131, .88);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: 1360px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--dark);
}

.solution-card.tall {
  grid-row: span 2;
}

.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.solution-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, .78) 20%);
}

.solution-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.solution-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .84);
}

.solution-card a,
.news-card a,
.text-link {
  color: var(--accent);
  font-weight: 600;
}

.project-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
}

.project-panel img {
  width: 100%;
  height: auto;
}

.project-panel h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.25;
}

.project-panel p {
  margin: 0 0 24px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

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

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

.news-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.news-body {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 20px;
}

.news-body time {
  color: var(--accent);
  line-height: 1.15;
}

.news-body time strong {
  display: block;
  font-size: 40px;
}

.news-body h3,
.news-body p,
.news-body a {
  grid-column: 2;
  margin: 0;
}

.news-body h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.35;
}

.news-body p {
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 92px max(20px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: var(--dark);
}

.contact-section h2 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.15;
}

.subscribe-form label {
  display: block;
  margin-bottom: 8px;
}

.subscribe-form div {
  display: flex;
  margin-bottom: 28px;
}

.subscribe-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.subscribe-form input {
  border-right: 0;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 12px;
}

.contact-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: inherit;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-form button {
  justify-self: start;
}

.quick-contact {
  position: fixed;
  right: 16px;
  bottom: 120px;
  z-index: 20;
  display: grid;
  gap: 8px;
}

.quick-contact a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.quick-contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer {
  padding: 66px max(20px, calc((100% - var(--container)) / 2)) 26px;
  color: rgba(255, 255, 255, .78);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover {
  color: var(--dark);
  border-color: var(--accent);
  background: var(--accent);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.copyright {
  margin: 44px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.page-hero {
  padding: 96px max(20px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)), url("../images/product-02.webp") center/cover;
}

.page-hero > div {
  max-width: 780px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
}

.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

.page-hero p:not(.breadcrumb) {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.product-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 64px 0 40px;
}

.product-intro h2,
.product-toolbar h2 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 32px;
  line-height: 1.2;
}

.product-intro p,
.product-toolbar p {
  margin: 0;
  color: var(--muted);
}

.product-intro aside {
  padding: 26px;
  border-left: 4px solid var(--accent);
  background: var(--light);
}

.product-intro h3 {
  margin: 0 0 10px;
  color: var(--dark);
}

.product-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 34px 0 96px;
}

.sidebar-box {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.sidebar-box h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: 20px;
  text-transform: uppercase;
}

.sidebar-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-box li + li {
  border-top: 1px solid var(--line);
}

.sidebar-box a {
  display: block;
  padding: 10px 0;
  color: var(--text);
}

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

.contact-box p {
  margin: 0 0 12px;
}

.product-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.product-toolbar p {
  max-width: 500px;
  text-align: right;
  overflow-wrap: anywhere;
}

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

.product-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--light);
}

.product-card h3 {
  margin: 0;
  padding: 16px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.pagination .is-current,
.pagination a:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.product-detail-hero {
  padding: 58px max(20px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .62)), url("../images/detail-01.webp") center/cover;
}

.product-detail-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.detail-layout {
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-top {
  display: grid;
  grid-template-columns: minmax(320px, 48%) 1fr;
  gap: 34px;
  margin-bottom: 42px;
}

.product-gallery {
  min-width: 0;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--light);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.product-summary {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
}

.product-summary h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: 32px;
  line-height: 1.2;
}

.product-summary p {
  margin: 0 0 18px;
}

.product-summary ul {
  margin: 0 0 26px;
  padding-left: 20px;
}

.detail-block {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-block h2 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: 30px;
  line-height: 1.2;
}

.detail-block h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 18px;
}

.detail-block p {
  margin: 0 0 14px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

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

.spec-table th {
  width: 220px;
  color: var(--dark);
  background: var(--light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.feature-grid > div {
  padding: 20px;
  background: var(--light);
}

.detail-block details {
  border-top: 1px solid var(--line);
}

.detail-block details:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-block summary {
  padding: 15px 0;
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
}

.inquiry-form textarea,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form button {
  justify-self: start;
  min-height: 46px;
  padding: 12px 28px;
  color: var(--white);
  border: 1px solid var(--accent);
  background: var(--accent);
  cursor: pointer;
}

.prev-product {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
}

.prev-product span {
  color: var(--muted);
}

.prev-product a {
  color: var(--dark);
  font-weight: 600;
}

.news-list-layout {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.news-list-title {
  margin-bottom: 34px;
  text-align: center;
}

.news-list-title h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--light);
}

.blog-card div {
  padding: 20px;
}

.blog-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
}

.blog-card h3 {
  min-height: 86px;
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.35;
}

.blog-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
}

.article-page {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.article-header {
  margin-bottom: 34px;
  text-align: center;
}

.article-header h1 {
  max-width: 860px;
  margin: 18px auto 18px;
  color: var(--dark);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta span:first-child {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.article-cover {
  width: 100%;
  max-height: 560px;
  margin-bottom: 48px;
  object-fit: cover;
  background: var(--light);
}

.article-body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.article-body h2 {
  margin: 42px 0 16px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.25;
}

.article-body p,
.article-body ul {
  margin: 0 0 20px;
}

.article-body ul {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-callout {
  margin-top: 42px;
  padding: 30px;
  border-left: 4px solid var(--accent);
  background: var(--light);
}

.article-callout h2 {
  margin-top: 0;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-nav a {
  color: var(--accent);
  font-weight: 600;
}

.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)), url("../images/ab1.webp");
}

.about-intro,
.about-band,
.about-section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  gap: 54px;
  padding: 86px 0;
}

.about-copy h2,
.about-band-content h2 {
  margin: 10px 0 22px;
  color: var(--dark);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.about-copy p,
.about-band-content p {
  margin: 0 0 18px;
  font-size: 17px;
}

.about-intro img,
.about-band img,
.about-gallery img {
  width: 100%;
  object-fit: cover;
  background: var(--light);
}

.about-intro img {
  aspect-ratio: 1.2;
}

.about-band {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 46px;
  align-items: center;
  padding: 54px;
  background: var(--light);
}

.about-band-media img {
  aspect-ratio: 4 / 3;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 26px;
}

.advantage-grid div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.advantage-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 24px;
}

.advantage-grid span {
  color: var(--muted);
}

.about-section {
  padding: 88px 0 0;
}

.about-section.alt {
  padding-bottom: 96px;
}

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

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

.about-gallery img {
  height: 230px;
}

.contact-page {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.contact-page-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.breadcrumb.dark {
  color: var(--muted);
}

.contact-page-head h1 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

.contact-page-head p:not(.breadcrumb) {
  margin: 0;
  font-size: 18px;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-info-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-info-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  background: var(--light);
}

.contact-info-body {
  padding: 30px;
}

.contact-info-body h2,
.contact-enquiry-form h2 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: 30px;
  line-height: 1.2;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  display: grid;
  gap: 5px;
}

.contact-detail-list strong {
  color: var(--dark);
  font-size: 15px;
  text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list span {
  color: var(--text);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--dark);
  border: 1px solid var(--line);
  background: var(--white);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.contact-social a:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.contact-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-enquiry-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--light);
}

.contact-enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 15px;
}

.contact-enquiry-form input,
.contact-enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-enquiry-form button {
  justify-self: start;
  min-height: 48px;
  padding: 12px 28px;
  color: var(--white);
  border: 1px solid var(--accent);
  background: var(--accent);
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .site-nav > ul {
    gap: 14px;
  }

  .process-grid,
  .solution-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .product-intro,
  .product-layout {
    grid-template-columns: 1fr;
  }

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

  .detail-top {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

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

  .about-intro,
  .about-band {
    grid-template-columns: 1fr;
  }

  .about-band {
    padding: 40px;
  }

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

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

@media (max-width: 1100px) {
  .header-inner {
    display: flex;
    min-height: 75px;
    width: 100%;
    padding: 10px 18px;
    justify-content: space-between;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 40;
    display: flex;
  }

  .header-tools {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 75px);
    overflow: auto;
    padding: 10px 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > ul {
    display: block;
  }

  .site-nav a {
    padding: 11px 0;
    white-space: normal;
  }

  .site-nav li ul {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 16px;
    box-shadow: none;
  }

  .site-nav li li ul {
    position: static;
    padding-left: 16px;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    width: min(100% - 32px, var(--container));
    padding-bottom: 90px;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .section,
  .section.alt {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .process-grid,
  .solution-grid,
  .news-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .product-intro {
    padding-top: 48px;
  }

  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-toolbar p {
    text-align: left;
  }

  .product-detail-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .product-detail-hero h1 {
    font-size: 30px;
  }

  .product-summary,
  .detail-block {
    padding: 22px;
  }

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

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .news-list-layout {
    padding-top: 52px;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-card h3 {
    min-height: 0;
  }

  .article-page {
    width: 100%;
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    padding: 52px 20px 72px;
  }

  .article-header {
    width: 100%;
    max-width: 350px;
    margin-bottom: 26px;
  }

  .article-header h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.18;
    word-break: break-word;
  }

  .article-meta {
    display: grid;
    gap: 6px;
  }

  .article-cover {
    width: calc(100% + 40px);
    max-width: none;
    max-height: none;
    margin: 0 0 34px -20px;
  }

  .article-body {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
  }

  .article-body h2 {
    margin-top: 34px;
    font-size: 25px;
  }

  .article-callout {
    padding: 24px;
  }

  .article-nav {
    flex-direction: column;
  }

  .about-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero.about-hero {
    max-width: 390px;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero.about-hero > div {
    max-width: 350px;
  }

  .about-intro {
    width: 100%;
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
    gap: 28px;
    overflow: hidden;
    padding: 58px 20px;
  }

  .about-copy h2,
  .about-band-content h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .about-copy p,
  .about-band-content p {
    overflow-wrap: anywhere;
  }

  .about-band {
    width: 100%;
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    padding: 34px 20px;
  }

  .advantage-grid,
  .about-gallery,
  .about-gallery.three {
    grid-template-columns: 1fr;
  }

  .about-section {
    width: 100%;
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 64px;
  }

  .about-section.alt {
    padding-bottom: 72px;
  }

  .about-gallery img {
    height: auto;
  }

  .contact-page {
    width: 100%;
    max-width: 390px;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    padding: 58px 20px 72px;
  }

  .contact-page-head {
    max-width: 350px;
    margin-bottom: 32px;
  }

  .contact-page-head h1 {
    font-size: 38px;
  }

  .contact-page-head p:not(.breadcrumb),
  .contact-info-body,
  .contact-enquiry-form {
    overflow-wrap: anywhere;
  }

  .contact-info-body,
  .contact-enquiry-form {
    padding: 24px;
  }

  .contact-info-body h2,
  .contact-enquiry-form h2 {
    font-size: 25px;
  }

  .solution-card.tall {
    grid-row: auto;
  }

  .project-panel {
    padding: 24px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-body {
    grid-template-columns: 64px 1fr;
  }

  .subscribe-form div {
    display: grid;
  }

  .subscribe-form input {
    border-right: 1px solid var(--line);
  }

  .quick-contact {
    right: 10px;
    bottom: 72px;
  }
}
