:root {
  --ink: #17201c;
  --muted: #5c6b64;
  --line: #dbe4df;
  --paper: #f7f4ec;
  --white: #ffffff;
  --green: #1d6b4b;
  --green-dark: #0f3d31;
  --sage: #dfe9df;
  --steel: #45606d;
  --gold: #c58a35;
  --shadow: 0 24px 70px rgba(22, 35, 31, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar span {
  color: rgba(255, 255, 255, .68);
}

.topbar a {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef6ef, #ffffff);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 11px;
  height: 18px;
  border: 2px solid var(--green);
  border-bottom: 0;
  clip-path: polygon(0 100%, 0 42%, 50% 0, 100% 42%, 100% 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 21px;
  right: 5px;
  bottom: 5px;
  background: var(--green);
  border-radius: 15px 0 15px 0;
  transform: rotate(42deg);
}

.brand-name {
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2d3a35;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 27px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .48);
  color: var(--white);
}

.btn-outline {
  border-color: var(--line);
  color: var(--green-dark);
  background: var(--white);
}

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--green-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 30, 25, .82) 0%, rgba(10, 30, 25, .48) 42%, rgba(10, 30, 25, .08) 100%),
    linear-gradient(0deg, rgba(10, 30, 25, .55) 0%, rgba(10, 30, 25, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 118px 0 78px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-quote-panel {
  width: min(640px, 100%);
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(9, 41, 32, .72);
  color: rgba(255, 255, 255, .82);
}

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

.hero-quote-panel a {
  width: fit-content;
  margin-top: 4px;
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-metrics {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 66px;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .2);
}

.metric {
  padding: 18px 20px;
  background: rgba(9, 41, 32, .7);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 68px 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.product-grid,
.project-grid,
.service-grid,
.proof-grid {
  display: grid;
  gap: 22px;
}

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

.catalog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.catalog-card,
.project-card,
.proof-card,
.quote-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--sage);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-card h3,
.catalog-card h3,
.project-card h3,
.proof-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.product-card p,
.catalog-card p,
.project-card p,
.proof-card p {
  margin: 0;
  color: var(--muted);
}

.product-card .inline-actions,
.catalog-card .inline-actions {
  margin-top: 20px;
}

.spec-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #30423b;
  font-size: 14px;
}

.spec-list li {
  padding-left: 18px;
  position: relative;
}

.spec-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: .65em;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 46px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.copy p {
  color: var(--muted);
  font-size: 17px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.check-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.check-item strong {
  display: block;
  margin-bottom: 4px;
}

.check-item span {
  color: var(--muted);
  font-size: 14px;
}

.project-grid {
  grid-template-columns: 1.1fr .9fr;
}

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

.project-card.feature img {
  height: 520px;
}

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

.service {
  border-top: 3px solid var(--green);
  background: var(--white);
  padding: 24px;
  min-height: 210px;
}

.service strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.quote-band {
  background: var(--green-dark);
  color: var(--white);
}

.quote-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.quote-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
}

.quote-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  max-width: 720px;
}

.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 78px 0;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: .9fr .75fr;
  gap: 46px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 66px);
}

.page-hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-hero img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.catalog-hero .inline-actions {
  margin-top: 28px;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 180px;
  gap: 12px;
}

.catalog-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.catalog-hero-grid img:first-child {
  grid-row: span 2;
}

.catalog-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.catalog-section-head p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.photo-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-catalog-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  background: #e9ece8;
}

.photo-catalog-grid figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-catalog-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.photo-catalog-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  background: rgba(12, 35, 30, .84);
  color: var(--white);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
}

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

.detail {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.detail p {
  margin: 0;
  color: var(--muted);
}

.quote-checklist {
  display: grid;
  gap: 12px;
}

.quote-checklist div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-checklist strong {
  font-size: 18px;
}

.quote-checklist span {
  color: var(--muted);
}

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

.article-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.article-card a:hover {
  color: var(--green);
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  color: #263831;
  font-size: 17px;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 32px;
  line-height: 1.12;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.factory-gallery img {
  height: 420px;
}

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

.faq-section {
  background: #081116;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.section-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: -18px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 800;
}

.section-tabs a:hover {
  color: var(--white);
}

.faq-head h2,
.faq-head p {
  color: var(--white);
}

.faq-head p {
  color: rgba(255, 255, 255, .68);
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #111c28;
  overflow: hidden;
  padding: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 800;
  color: var(--white);
  list-style: none;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 58px 0 24px;
  background: #f6b900;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b5b00;
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 18px 24px 22px;
  color: rgba(255, 255, 255, .78);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9ece8;
  grid-column: span 6;
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(6) {
  grid-column: span 7;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(5) {
  grid-column: span 5;
}

.gallery figure:nth-child(3),
.gallery figure:nth-child(4) {
  grid-column: span 6;
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(12, 35, 30, .82);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

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

.catalog-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.catalog-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.catalog-gallery figcaption {
  min-height: 54px;
  padding: 14px 16px;
  color: #2f403a;
  font-size: 14px;
  font-weight: 750;
}

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

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f1d19;
}

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

.video-caption {
  padding: 18px 20px;
}

.video-caption strong {
  display: block;
  margin-bottom: 6px;
}

.video-caption span {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 28px;
}

.contact-card,
.quote-card {
  padding: 28px;
}

.owner-profile {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.owner-profile img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 7px;
}

.owner-profile h2 {
  margin: 0 0 8px;
}

.owner-profile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-card h2,
.quote-card h2 {
  margin: 0 0 18px;
}

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

.contact-list strong {
  display: block;
}

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

.wechat-box,
.qr-grid {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

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

.qr-card {
  display: grid;
  gap: 8px;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-card img {
  width: 100%;
  max-width: 190px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.wechat-box img {
  width: 180px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #2b3a35;
  font-size: 13px;
  font-weight: 800;
}

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

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.quote-help {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f3f7f2;
  color: var(--muted);
  font-size: 14px;
}

.quote-help strong {
  color: var(--green-dark);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(15, 61, 49, .94);
  box-shadow: var(--shadow);
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.floating-contact__quote {
  border: 1px solid rgba(255, 255, 255, .28);
}

.floating-contact__whatsapp {
  background: #1d9f64;
}

.site-footer {
  background: #111b18;
  color: rgba(255, 255, 255, .68);
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 36px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .66);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

@media (max-width: 920px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-inner span {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px 16px;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-metrics,
  .product-grid,
  .catalog-card-grid,
  .catalog-gallery,
  .service-grid,
  .detail-grid,
  .article-grid,
  .video-grid-three,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .catalog-section-head,
  .split,
  .page-hero .wrap,
  .quote-band .wrap,
  .contact-layout,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-tabs {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .split-image img,
  .page-hero img,
  .project-card.feature img {
    height: 360px;
  }

  .catalog-hero-grid {
    grid-auto-rows: 170px;
  }

  .catalog-hero-grid img {
    height: 100%;
  }

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

@media (max-width: 640px) {
  .topbar-inner,
  .nav-inner,
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  .hero-content {
    padding: 88px 0 40px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-metrics,
  .product-grid,
  .catalog-card-grid,
  .catalog-gallery,
  .service-grid,
  .detail-grid,
  .article-grid,
  .video-grid-three,
  .footer-grid,
  .field-row,
  .check-grid,
  .qr-grid,
  .owner-profile {
    grid-template-columns: 1fr;
  }

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(6) {
    grid-column: 1 / -1;
  }

  .gallery img,
  .split-image img {
    height: 280px;
  }

  .catalog-hero-grid,
  .photo-catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-grid img:first-child,
  .photo-catalog-grid figure.large {
    grid-column: auto;
    grid-row: auto;
  }

  .catalog-hero-grid {
    grid-auto-rows: 220px;
  }

  .catalog-hero-grid img {
    height: 100%;
  }

  .photo-catalog-grid figure,
  .photo-catalog-grid img {
    min-height: 240px;
  }

  .section {
    padding: 66px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .floating-contact a {
    flex: 1;
  }

  .faq-list summary {
    min-height: 68px;
    padding-left: 18px;
    padding-right: 48px;
  }
}
