:root {
  --ink: #17211d;
  --muted: #5f6a64;
  --forest: #163f2f;
  --forest-2: #225941;
  --leaf: #23834f;
  --gold: #f4c542;
  --red: #c8322b;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --line: #dfe4dd;
  --shadow: 0 22px 70px rgba(22, 63, 47, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(22, 63, 47, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(205px, 20vw, 280px);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.language-select,
input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.language-select {
  min-height: 39px;
  padding: 0 12px;
  font-weight: 750;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: white;
  background: var(--forest);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.3vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.tech-copy p,
.gallery-copy p,
.quote-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 13px 28px rgba(200, 50, 43, 0.2);
}

.button.secondary {
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 0;
}

.proof-strip div,
.capacity-grid article {
  padding: 18px;
  border: 1px solid rgba(22, 63, 47, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.67);
}

.proof-strip dt,
.capacity-grid span {
  color: var(--forest);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 63, 47, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.hero-visual {
  min-height: 620px;
}

.hero-visual::after,
.heritage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 26, 22, 0.22));
  pointer-events: none;
}

.intro-band {
  padding: 28px clamp(18px, 5vw, 72px);
  color: white;
  background: linear-gradient(90deg, var(--forest), var(--forest-2));
}

.intro-band p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 700;
  text-align: center;
}

.section,
.technology,
.heritage-feature,
.gallery,
.quote-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

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

.product-card {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(22, 63, 47, 0.07);
}

.product-card h3,
.product-card p {
  padding: 0 20px;
}

.product-card p {
  color: var(--muted);
}

.product-art {
  display: block;
  width: 100%;
  height: 180px;
  margin-bottom: 22px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-art {
  transform: scale(1.035);
}

.advertising-products {
  background: #eef3ee;
}

.ad-flags-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.ad-flags-visual {
  min-height: 620px;
}

.ad-flags-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ad-flags-list article {
  padding: 20px;
  border: 1px solid rgba(22, 63, 47, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}

.ad-flags-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-flags-list h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.ad-flags-list p {
  margin: 0;
  color: var(--muted);
}

.heritage-feature {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(94, 15, 13, 0.94), rgba(143, 32, 28, 0.9)),
    var(--red);
}

.heritage-feature .eyebrow {
  color: #f4d793;
}

.heritage-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.heritage-feature .button.secondary {
  margin-top: 12px;
  color: #7f1d1a;
  border-color: rgba(255, 255, 255, 0.5);
}

.heritage-image {
  min-height: 520px;
}

.heritage-designs {
  background: #fff8eb;
}

.heritage-design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.heritage-design-card {
  overflow: hidden;
  border: 1px solid rgba(127, 29, 26, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(127, 29, 26, 0.08);
}

.heritage-design-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.heritage-design-card:hover img {
  transform: scale(1.03);
}

.heritage-design-card div {
  padding: 22px;
}

.heritage-design-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.heritage-design-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.technology {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: #eef3ee;
}

.tech-visual-stack {
  display: grid;
  gap: 16px;
}

.tech-visual {
  min-height: 420px;
  background: var(--paper);
}

.tech-visual img {
  object-fit: contain;
  padding: 16px;
}

.tech-visual-secondary {
  min-height: 560px;
}

.tech-visual-secondary img {
  object-fit: cover;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--leaf);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.capacity-grid article {
  background: var(--paper);
}

.capacity-grid h3 {
  margin-top: 18px;
}

.capacity-grid p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: var(--forest);
  color: white;
}

.gallery .eyebrow {
  color: var(--gold);
}

.gallery-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.gallery-item {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f7f4;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 6px;
  background: rgba(13, 21, 17, 0.7);
  font-weight: 850;
}

.item-one::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("assets/product-corporate-flags.png?v=3");
  background-position: center;
  background-size: cover;
}

.item-two::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("assets/historical-flag-facade.png?v=2");
  background-position: center;
  background-size: cover;
}

.item-three::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("assets/product-advertising-flags.png?v=3");
  background-position: center;
  background-size: cover;
}

.item-four::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("assets/product-table-accessories.png?v=3");
  background-position: center;
  background-size: cover;
}

.macro-products {
  background: #f5f7f2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(22, 63, 47, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-grid img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-grid article:hover img {
  transform: scale(1.03);
}

.service-grid strong {
  display: block;
  margin: 22px 22px 10px;
  color: var(--forest);
  font-size: 1.08rem;
}

.service-grid p {
  margin: 0 22px 22px;
  color: var(--muted);
}

.blog-section {
  background: var(--cream);
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(22, 63, 47, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(22, 63, 47, 0.07);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.blog-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

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

.blog-card a {
  margin-top: 6px;
  color: var(--forest);
  font-weight: 850;
}

.featured-blog {
  background: #fff8eb;
  border-color: rgba(200, 50, 43, 0.2);
}

.article-page {
  background:
    linear-gradient(180deg, rgba(245, 248, 243, 0.9), rgba(255, 255, 255, 0.96)),
    var(--cream);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 96px) clamp(24px, 5vw, 72px) clamp(34px, 6vw, 70px);
}

.article-hero-copy {
  max-width: 760px;
}

.article-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.article-hero-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.article-hero-image {
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(22, 63, 47, 0.14);
}

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

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px) clamp(64px, 8vw, 112px);
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body section {
  border: 1px solid rgba(22, 63, 47, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 12px 40px rgba(22, 63, 47, 0.06);
}

.article-body h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-body p {
  margin: 0;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(22, 63, 47, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 18px 55px rgba(22, 63, 47, 0.08);
}

.article-aside h2 {
  margin: 0;
  color: var(--forest);
  font-size: 1.15rem;
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-list-item {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(22, 63, 47, 0.1);
  border-radius: 8px;
  background: #f7faf5;
  color: var(--ink);
}

.article-list-item span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-list-item strong {
  font-size: 0.98rem;
  line-height: 1.24;
}

.article-list-item.active {
  border-color: rgba(17, 121, 82, 0.45);
  background: #edf6ef;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(220px, 0.55fr) minmax(420px, 1.2fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #111a16;
}

.footer-brand-block,
.footer-contact-card,
.footer-details-card {
  min-width: 0;
}

.footer-contact-card,
.footer-details-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer strong {
  color: white;
}

.site-footer .brand-logo {
  width: clamp(205px, 20vw, 280px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
}

address {
  display: grid;
  gap: 9px;
  margin-top: 13px;
  font-style: normal;
}

address a {
  width: fit-content;
}

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

.legal p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-card-title {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.company-details div {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 14px 0 0;
}

.company-details div:nth-child(odd) {
  padding-right: 18px;
}

.company-details div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.company-details dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.footer-privacy {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer-privacy span {
  color: var(--gold);
  font-weight: 900;
}

.footer-privacy p {
  flex: 1 1 420px;
  max-width: none;
  margin: 0;
}

.footer-privacy a {
  color: white;
  font-weight: 850;
}

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

.policy-page {
  background: var(--cream);
}

.policy-hero {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) 34px;
}

.policy-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.policy-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 112px);
}

.policy-content article {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.policy-content a {
  color: var(--forest);
  font-weight: 800;
}

.policy-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.policy-details div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf6;
}

.policy-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-details dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.compact-footer {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .technology,
  .heritage-feature,
  .ad-flags-layout,
  .article-hero,
  .article-shell,
  .gallery,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-grid,
  .capacity-grid,
  .ad-flags-list,
  .service-grid,
  .heritage-design-grid,
  .blog-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-details-card {
    grid-column: 1 / -1;
  }

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

  .article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand-logo {
    width: 178px;
  }

  .header-cta,
  .language-label {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .proof-strip,
  .product-grid,
  .capacity-grid,
  .ad-flags-list,
  .service-grid,
  .heritage-design-grid,
  .blog-grid,
  .gallery-grid,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-hero-image,
  .article-hero-image img {
    min-height: 300px;
  }

  .article-hero,
  .article-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-section {
    padding-bottom: 70px;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details div:nth-child(odd),
  .company-details div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-contact-card,
  .footer-details-card {
    padding: 18px;
  }

  .policy-details {
    grid-template-columns: 1fr;
  }
}
