/* =========================================================
   FORMA
   Static website implementation
   ========================================================= */

:root {
  --bg: #f4f2ed;
  --bg-soft: #f7f6f2;
  --paper: #efeee9;
  --text: #171817;
  --muted: #6b6d68;
  --line: #d3d1ca;

  --green: #303926;
  --green-dark: #252d1f;
  --green-soft: #3a4530;

  --white: #ffffff;
  --black: #111210;

  --container: 1300px;

  --header-height: 92px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
  width: min(
    calc(100% - 96px),
    var(--container)
  );
  margin-inline: auto;
}

.section {
  padding: 56px 0 64px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 19px;

  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .16em;
  font-weight: 500;

  color: #656762;
}

.section-kicker.light {
  color: rgba(255, 255, 255, .65);
}

.button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;

  padding: 0 30px;

  border: 1px solid transparent;

  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  transition:
    background .25s var(--ease),
    color .25s var(--ease),
    border-color .25s var(--ease);
}

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

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

.button-outline {
  color: var(--text);
  border-color: #8b8b86;
  background: transparent;
}

.button-outline:hover {
  background: #e9e7e1;
}

.button-outline-light {
  border-color: rgba(255,255,255,.8);
  color: white;
}

.button-outline-light:hover {
  background: white;
  color: var(--green);
}

.arrow {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 4px;

  border-bottom: 1px solid #a9aaa5;

  font-size: 10px;
  font-weight: 600;

  white-space: nowrap;
}

.text-link span {
  font-size: 16px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  height: var(--header-height);

  position: sticky;
  z-index: 1000;
  top: 0;

  background: rgba(248, 247, 243, .97);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;

  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;

  gap: 45px;
}

.brand {
  width: max-content;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.brand-name {
  font-size: 45px;
  line-height: .85;
  letter-spacing: .025em;
  font-weight: 600;

  color: #303a2a;
}

.brand-tagline {
  font-size: 8px;
  line-height: 1;
  letter-spacing: .015em;

  color: #6f716e;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(28px, 3vw, 58px);
}

.main-nav a {
  position: relative;

  font-size: 14px;
  color: #343532;
}

.main-nav a::after {
  content: "";

  width: 0;
  height: 1px;

  position: absolute;
  left: 0;
  bottom: -8px;

  background: currentColor;

  transition: width .25s var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;

  gap: 31px;
}

.language-selector {
  padding: 5px 0;

  border: 0;
  background: transparent;

  cursor: pointer;

  font-size: 14px;
}

.language-selector .chevron {
  margin-left: 7px;
}

.header-quote {
  min-width: 240px;
  min-height: 70px;
}

.mobile-menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  padding: 8px;

  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;

  width: 27px;
  height: 1px;

  background: #222;

  margin: 6px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 590px;

  display: grid;
  grid-template-columns: 56% 44%;

  overflow: hidden;
}

.hero-copy {
  min-width: 0;

  background: #f3f1ec;
}

.hero-copy-inner {
  height: 100%;

  padding:
    93px
    max(50px, calc((100vw - var(--container)) / 2))
    31px
    max(50px, calc((100vw - var(--container)) / 2));

  display: flex;
  flex-direction: column;
}

.hero h1 {
  max-width: 820px;

  margin-bottom: 25px;

  font-size: clamp(62px, 5.4vw, 87px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

.hero-description {
  max-width: 650px;

  margin-bottom: 32px;

  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -.015em;

  color: #464844;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.hero-buttons .button {
  min-width: 275px;
}

.hero-bottom {
  margin-top: auto;
  padding-top: 48px;

  display: flex;
  justify-content: space-between;

  gap: 30px;
}

.hero-bottom-item {
  display: flex;
  flex-direction: column;

  gap: 6px;

  font-size: 11px;
  line-height: 1.2;

  color: #7a7c76;
}

.hero-bottom-left {
  padding-left: 28px;
  border-left: 1px solid #878983;
}

.hero-bottom-right {
  text-align: right;
}

.hero-image-wrap {
  min-height: 590px;

  position: relative;

  overflow: hidden;
}

.hero-image-wrap::before {
  content: "";

  width: 120px;
  height: 130%;

  position: absolute;
  z-index: 2;
  top: -15%;
  left: -59px;

  background: #f3f1ec;

  transform: rotate(-13deg);
  transform-origin: center;
}

.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.hero-image-label {
  position: absolute;
  z-index: 5;

  right: 38px;
  bottom: 34px;

  padding-left: 22px;

  display: flex;
  flex-direction: column;

  gap: 6px;

  border-left: 1px solid rgba(255,255,255,.8);

  color: white;

  font-size: 11px;
  line-height: 1;
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip {
  background: #f7f6f2;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  min-height: 105px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  padding: 25px 30px;

  display: flex;
  align-items: center;

  gap: 20px;

  border-right: 1px solid var(--line);
}

.feature-item:first-child {
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 46px;
  height: 46px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid #6f726a;
  border-radius: 50%;

  font-size: 22px;
}

.feature-item h2 {
  margin-bottom: 7px;

  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
}

.feature-item p {
  margin: 0;

  font-size: 11px;
  line-height: 1.3;

  color: #61635f;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products {
  background: #f5f4ef;
}

.products-heading {
  margin-bottom: 26px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.products-heading h2 {
  margin-bottom: 0;

  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 23px 16px;
}

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

.product-image {
  aspect-ratio: 1.55 / 1;

  overflow: hidden;

  background: #ddd;
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(.82);

  transition: transform .45s var(--ease);
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-meta {
  min-height: 43px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid transparent;

  font-size: 15px;

  transition: border-color .2s;
}

.product-card:hover .product-meta {
  border-color: #333;
}

.product-meta span:last-child {
  font-size: 18px;
}


/* =========================================================
   CUSTOM
   ========================================================= */

.custom-section {
  min-height: 445px;

  display: grid;
  grid-template-columns:
    minmax(360px, 42%)
    minmax(0, 46%)
    12%;

  background: var(--green);
}

.custom-content {
  color: white;
}

.custom-inner {
  height: 100%;

  padding:
    66px
    65px
    58px
    max(50px, calc((100vw - var(--container)) / 2));
}

.custom-inner h2 {
  margin-bottom: 24px;

  font-size: 53px;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 400;
}

.custom-inner p:not(.section-kicker) {
  max-width: 410px;

  margin-bottom: 31px;

  font-size: 16px;
  line-height: 1.4;

  color: rgba(255,255,255,.74);
}

.custom-image {
  min-height: 445px;

  overflow: hidden;
}

.custom-image img {
  height: 100%;
  object-fit: cover;

  filter: grayscale(1) contrast(.92);
}

.custom-side-copy {
  padding: 0 36px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #eeede8;

  color: #696b67;

  font-size: 10px;
  line-height: 1.5;
}

.custom-side-copy i,
.final-cta-side i {
  display: block;

  width: 45px;
  height: 1px;

  margin-top: 19px;

  background: currentColor;
}


/* =========================================================
   WHY
   ========================================================= */

.why-section {
  background: #f6f5f1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 20px;
}

.why-item {
  min-height: 165px;

  padding: 5px 44px 8px 0;
}

.why-item + .why-item {
  padding-left: 50px;
  border-left: 1px solid var(--line);
}

.why-number {
  display: block;

  margin-bottom: 8px;

  font-family: Georgia, serif;
  font-size: 33px;
  line-height: 1;
  font-weight: 400;
}

.why-item h3 {
  margin-bottom: 14px;

  font-size: 17px;
  font-weight: 400;
}

.why-item p {
  margin: 0;

  font-size: 13px;
  line-height: 1.45;

  color: #6a6c67;
}


/* =========================================================
   REACH / CONTACT
   ========================================================= */

.reach-section {
  display: grid;
  grid-template-columns: 68% 32%;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  background: #f4f3ef;
}

.reach-info {
  min-height: 390px;

  position: relative;

  display: grid;
  grid-template-columns: 51% 49%;

  overflow: hidden;
}

.reach-info-inner {
  padding:
    56px
    10px
    39px
    max(50px, calc((100vw - var(--container)) / 2));
}

.reach-info h2 {
  margin-bottom: 20px;

  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 400;
}

.reach-copy {
  max-width: 420px;

  font-size: 14px;
  line-height: 1.4;

  color: #666863;
}

.stats {
  margin-top: 42px;

  display: flex;
}

.stat {
  padding: 0 30px;
}

.stat:first-child {
  padding-left: 0;
}

.stat + .stat {
  border-left: 1px solid #b9bbb5;
}

.stat strong {
  display: block;

  font-family: Georgia, serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
}

.stat span {
  display: block;

  margin-top: 9px;

  font-size: 8px;
  letter-spacing: .06em;
}

.map-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}

.map-wrap img {
  width: 118%;
  max-width: none;

  opacity: .45;
}

.contact-panel {
  padding: 55px 40px 42px;

  background: #f8f7f3;

  border-left: 1px solid var(--line);
}

.contact-panel h2 {
  margin-bottom: 7px;

  font-size: 31px;
  line-height: 1;
  font-weight: 400;
}

.contact-intro {
  margin-bottom: 22px;

  font-size: 12px;
  color: #60625e;
}

.quote-form {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;

  border: 1px solid #c7c6c0;
  outline: none;

  background: transparent;

  padding: 13px 12px;

  color: #222;

  border-radius: 0;

  font-size: 11px;

  transition:
    border-color .2s,
    background .2s;
}

.form-field input {
  height: 43px;
}

.form-field textarea {
  min-height: 94px;

  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: white;
}

.form-submit {
  width: 100%;
  min-height: 49px;

  margin-top: 2px;

  justify-content: center;

  position: relative;
}

.form-submit span:last-child {
  position: absolute;
  right: 22px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  min-height: 306px;

  position: relative;

  overflow: hidden;

  background: #171816;
}

.final-cta-image {
  position: absolute;
  inset: 0;
}

.final-cta-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(10,11,10,.98) 0%,
      rgba(10,11,10,.82) 34%,
      rgba(10,11,10,.35) 67%,
      rgba(10,11,10,.66) 100%
    );
}

.final-cta-image img {
  height: 100%;
  object-fit: cover;
}

.final-cta-content {
  min-height: 306px;

  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;
}

.final-cta h2 {
  margin-bottom: 25px;

  font-size: 49px;
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 400;
}

.final-cta-side {
  padding-left: 21px;

  display: flex;
  flex-direction: column;

  border-left: 1px solid rgba(255,255,255,.35);

  font-size: 9px;
  line-height: 1.45;

  color: rgba(255,255,255,.75);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #f6f5f1;
}

.footer-main {
  min-height: 127px;

  display: grid;
  grid-template-columns: 300px 1fr 320px;
  align-items: center;

  gap: 40px;
}

.footer-brand .brand-name {
  font-size: 33px;
}

.footer-brand .brand-tagline {
  font-size: 6px;
}

.footer-nav {
  display: flex;
  justify-content: center;

  gap: 45px;
}

.footer-nav a {
  font-size: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 34px;
}

.footer-right .language-selector {
  font-size: 10px;
}

.footer-slogan {
  padding-left: 30px;

  display: flex;
  flex-direction: column;

  gap: 5px;

  border-left: 1px solid var(--line);

  font-size: 8px;
  line-height: 1;
  color: #6b6d68;
}

.footer-bottom {
  min-height: 66px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--line);

  font-size: 9px;
  color: #83847f;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 25px;
}


/* =========================================================
   RESPONSIVE — 1440
   ========================================================= */

@media (max-width: 1440px) {

  :root {
    --container: 1280px;
  }

  .container {
    width: min(
      calc(100% - 72px),
      var(--container)
    );
  }

  .header-inner {
    grid-template-columns: 285px 1fr auto;
    gap: 25px;
  }

  .brand-name {
    font-size: 39px;
  }

  .header-quote {
    min-width: 205px;
  }

  .hero-copy-inner {
    padding-left: max(
      36px,
      calc((100vw - var(--container)) / 2)
    );

    padding-right: 35px;
  }

  .hero h1 {
    font-size: clamp(59px, 5.5vw, 79px);
  }

}


/* =========================================================
   RESPONSIVE — 1200 / 1024
   ========================================================= */

@media (max-width: 1180px) {

  :root {
    --header-height: 78px;
  }

  .container {
    width: calc(100% - 50px);
  }

  .header-inner {
    grid-template-columns: 220px 1fr auto;
  }

  .brand-name {
    font-size: 33px;
  }

  .brand-tagline {
    font-size: 6px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-actions {
    gap: 17px;
  }

  .header-quote {
    min-width: auto;
    min-height: 54px;

    padding: 0 20px;
  }

  .hero {
    min-height: 550px;
    grid-template-columns: 57% 43%;
  }

  .hero-copy-inner {
    padding:
      72px
      30px
      28px
      25px;
  }

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

  .hero-description {
    font-size: 20px;
  }

  .hero-buttons .button {
    min-width: 220px;
    padding: 0 22px;
  }

  .feature-item {
    padding: 22px 18px;
  }

  .products-heading h2 {
    font-size: 41px;
  }

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

  .custom-section {
    grid-template-columns:
      42%
      49%
      9%;
  }

  .custom-inner {
    padding: 55px 40px 50px 25px;
  }

  .reach-section {
    grid-template-columns: 63% 37%;
  }

  .reach-info {
    grid-template-columns: 60% 40%;
  }

  .reach-info-inner {
    padding-left: 25px;
  }

  .stats {
    margin-top: 32px;
  }

  .stat {
    padding: 0 17px;
  }

  .footer-main {
    grid-template-columns: 220px 1fr 245px;
  }

  .footer-nav {
    gap: 25px;
  }

}


/* =========================================================
   RESPONSIVE — TABLET 768
   ========================================================= */

@media (max-width: 900px) {

  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    font-size: 31px;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    z-index: 1100;

    left: 0;
    right: 0;

    background: #f7f6f2;
  }

  .main-nav {
    height: auto;

    top: 76px;

    padding: 30px 20px;

    display: none;
    flex-direction: column;

    gap: 26px;

    border-top: 1px solid var(--line);
  }

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

  .main-nav a {
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    display: block;
  }

  .hero-copy-inner {
    min-height: 545px;

    padding:
      72px
      25px
      32px;
  }

  .hero h1 {
    font-size: clamp(54px, 8.5vw, 72px);
  }

  .hero-image-wrap {
    min-height: 550px;
  }

  .hero-image-wrap::before {
    display: none;
  }

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

  .feature-item:nth-child(2) {
    border-right: none;
  }

  .feature-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .products-heading {
    align-items: flex-start;
  }

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

  .custom-section {
    grid-template-columns: 1fr;
  }

  .custom-content {
    min-height: 410px;
  }

  .custom-inner {
    padding: 60px 25px;
  }

  .custom-image {
    height: 420px;
  }

  .custom-side-copy {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;

    row-gap: 30px;
  }

  .why-item:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .reach-section {
    grid-template-columns: 1fr;
  }

  .reach-info {
    min-height: 430px;
    grid-template-columns: 52% 48%;
  }

  .reach-info-inner {
    padding-left: 20px;
  }

  .contact-panel {
    border-top: 1px solid var(--line);
    border-left: 0;

    padding: 50px 20px;
  }

  .final-cta {
    min-height: 350px;
  }

  .final-cta-content {
    min-height: 350px;
  }

  .footer-main {
    padding: 32px 0;

    grid-template-columns: 1fr;
    justify-items: start;

    gap: 28px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE 375
   ========================================================= */

@media (max-width: 600px) {

  :root {
    --header-height: 69px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 45px 0 50px;
  }

  .site-header {
    height: 69px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-tagline {
    font-size: 5px;
  }

  .main-nav {
    top: 69px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy-inner {
    min-height: auto;

    padding:
      51px
      16px
      34px;
  }

  .eyebrow {
    max-width: 280px;

    margin-bottom: 22px;

    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 23px;

    font-size: 48px;
    line-height: .99;
  }

  .hero-description {
    margin-bottom: 30px;

    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
    min-width: 0;
  }

  .hero-bottom {
    margin-top: 45px;

    align-items: flex-end;
  }

  .hero-bottom-item {
    font-size: 8px;
  }

  .hero-image-wrap {
    min-height: 390px;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-image-label {
    right: 20px;
    bottom: 20px;

    font-size: 9px;
  }

  .feature-grid {
    width: 100%;

    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 93px;

    padding: 20px 16px;

    border-left: 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .products-heading {
    margin-bottom: 27px;

    display: block;
  }

  .products-heading h2 {
    margin-bottom: 25px;

    font-size: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-meta {
    font-size: 16px;
  }

  .custom-inner h2 {
    font-size: 46px;
  }

  .custom-content {
    min-height: auto;
  }

  .custom-image {
    height: 350px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    margin-top: 10px;
  }

  .why-item,
  .why-item + .why-item,
  .why-item:nth-child(3) {
    min-height: auto;

    padding:
      25px
      0
      30px;

    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-number {
    font-size: 31px;
  }

  .reach-info {
    grid-template-columns: 1fr;

    padding-bottom: 0;
  }

  .reach-info-inner {
    padding:
      49px
      16px
      20px;
  }

  .reach-info h2 {
    font-size: 31px;
  }

  .stats {
    margin-top: 35px;

    justify-content: space-between;
  }

  .stat {
    padding: 0 12px;
  }

  .stat strong {
    font-size: 29px;
  }

  .stat span {
    font-size: 6px;
  }

  .map-wrap {
    height: 300px;
  }

  .map-wrap img {
    width: 125%;
  }

  .contact-panel {
    padding: 45px 16px;
  }

  .contact-panel h2 {
    font-size: 32px;
  }

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

  .final-cta-content {
    padding-top: 50px;
    padding-bottom: 45px;

    align-items: flex-start;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .final-cta-side {
    display: none;
  }

  .footer-main {
    width: calc(100% - 32px);
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
  }

  .footer-right {
    width: 100%;

    justify-content: space-between;
  }

  .footer-bottom {
    min-height: auto;

    padding: 22px 0;

    align-items: flex-start;
    flex-direction: column;

    gap: 20px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

}


/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 380px) {

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

  .hero-description {
    font-size: 17px;
  }

  .button {
    min-height: 54px;
  }

  .products-heading h2 {
    font-size: 35px;
  }

  .stats {
    gap: 0;
  }

  .stat {
    padding: 0 8px;
  }

  .stat strong {
    font-size: 27px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.products-page-hero {
  min-height: 505px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f3f1ec;
}

.products-page-hero-copy {
  min-width: 0;
  background: #f3f1ec;
}

.products-page-hero-inner {
  height: 100%;
  padding:
    86px
    58px
    58px
    max(50px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(58px, 4.7vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

.products-page-hero-description {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: 21px;
  line-height: 1.34;
  letter-spacing: -.015em;
  color: #4e504c;
}

.products-page-hero-actions {
  display: flex;
  gap: 10px;
}

.products-page-hero-actions .button {
  min-width: 230px;
}

.products-page-hero-media {
  min-height: 505px;
  position: relative;
  overflow: hidden;
}

.products-page-hero-media::before {
  content: "";
  width: 124px;
  height: 130%;
  position: absolute;
  z-index: 2;
  top: -15%;
  left: -64px;
  background: #f3f1ec;
  transform: rotate(-13deg);
  transform-origin: center;
}

.products-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(.98);
}

.product-catalog {
  padding-top: 50px;
  padding-bottom: 42px;
  background: #f5f4ef;
}

.product-catalog-heading {
  margin-bottom: 27px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr);
  align-items: end;
  gap: 60px;
}

.product-catalog-heading h2 {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 400;
}

.product-catalog-heading > p {
  max-width: 420px;
  margin: 0 0 7px auto;
  font-size: 14px;
  line-height: 1.42;
  color: #666863;
}

.catalog-grid {
  display: grid;
}

.catalog-grid-featured {
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.catalog-grid-secondary {
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.catalog-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #f5f4ef;
}

.catalog-card:first-child {
  border-left: 1px solid var(--line);
}

.catalog-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-card-image {
  aspect-ratio: 1.36 / 1;
  overflow: hidden;
  background: #ddd;
}

.catalog-card-featured .catalog-card-image {
  aspect-ratio: 1.45 / 1;
}

.catalog-card-image img,
.catalog-custom-media img,
.industry-card img,
.products-custom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(.96);
  transition: transform .45s var(--ease);
}

.catalog-card:hover .catalog-card-image img,
.catalog-custom-card:hover .catalog-custom-media img,
.industry-card:hover img {
  transform: scale(1.025);
}

.catalog-card-body {
  min-height: 181px;
  padding: 15px 15px 17px;
  display: flex;
  flex-direction: column;
}

.catalog-card-body h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 400;
}

.catalog-card-body p {
  margin-bottom: 19px;
  font-size: 12px;
  line-height: 1.42;
  color: #6a6c67;
}

.catalog-card-body .text-link {
  width: max-content;
  margin-top: auto;
}

.catalog-custom-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-custom-card > a {
  min-height: 220px;
  display: grid;
  grid-template-columns: 72% 28%;
}

.catalog-custom-media {
  min-width: 0;
  overflow: hidden;
}

.catalog-custom-copy {
  padding: 28px 28px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #efeee9;
}

.catalog-custom-copy h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 400;
}

.catalog-custom-copy p {
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.4;
  color: #676965;
}

.catalog-custom-copy .text-link {
  width: max-content;
}

.industries-section {
  padding: 38px 0 39px;
  border-bottom: 1px solid var(--line);
  background: #f6f5f1;
}

.industries-section .section-kicker {
  margin-bottom: 10px;
}

.industries-section h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 400;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.industry-card {
  min-width: 0;
}

.industry-card img {
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
}

.industry-card h3 {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.products-custom-section {
  min-height: 410px;
  display: grid;
  grid-template-columns: 46% 44% 10%;
  background: var(--green);
}

.products-custom-copy {
  color: white;
}

.products-custom-copy-inner {
  height: 100%;
  padding:
    56px
    54px
    49px
    max(50px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-custom-copy h2 {
  margin-bottom: 20px;
  font-size: 47px;
  line-height: 1.01;
  letter-spacing: -.04em;
  font-weight: 400;
}

.products-custom-copy p:not(.section-kicker) {
  max-width: 500px;
  margin-bottom: 27px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,.74);
}

.products-custom-copy .button {
  width: max-content;
  min-width: 288px;
}

.products-custom-image {
  min-height: 410px;
  overflow: hidden;
}

.products-custom-image img {
  filter: grayscale(1) contrast(.9);
}

.products-custom-side {
  padding: 0 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #eeede8;
  color: #696b67;
  font-size: 10px;
  line-height: 1.5;
}

.products-custom-side i {
  width: 45px;
  height: 1px;
  display: block;
  margin-top: 19px;
  background: currentColor;
}

.products-final-cta {
  min-height: 285px;
}

.products-final-cta .final-cta-content {
  min-height: 285px;
}

.products-final-cta .final-cta h2,
.products-final-cta h2 {
  font-size: 45px;
}


@media (max-width: 1180px) {

  .products-page-hero-inner {
    padding-left: 25px;
    padding-right: 35px;
  }

  .products-page-hero h1 {
    font-size: 58px;
  }

  .products-page-hero-description {
    font-size: 18px;
  }

  .products-page-hero-actions .button {
    min-width: 200px;
    padding-inline: 21px;
  }

  .product-catalog-heading h2 {
    font-size: 43px;
  }

  .catalog-card-body h3 {
    font-size: 18px;
  }

  .catalog-card-body {
    min-height: 170px;
  }

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

  .products-custom-section {
    grid-template-columns: 45% 47% 8%;
  }

  .products-custom-copy-inner {
    padding-left: 25px;
    padding-right: 36px;
  }

}


@media (max-width: 900px) {

  .products-page-hero {
    display: block;
  }

  .products-page-hero-inner {
    min-height: 455px;
    padding: 65px 20px 55px;
  }

  .products-page-hero-media {
    min-height: 480px;
  }

  .products-page-hero-media::before {
    display: none;
  }

  .product-catalog-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-catalog-heading > p {
    max-width: 560px;
    margin: 0;
  }

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

  .catalog-grid-featured .catalog-card:nth-child(3) {
    grid-column: span 2;
  }

  .catalog-grid-featured .catalog-card:nth-child(3) .catalog-card-image {
    aspect-ratio: 2.1 / 1;
  }

  .catalog-custom-card > a {
    grid-template-columns: 62% 38%;
  }

  .products-custom-section {
    grid-template-columns: 1fr;
  }

  .products-custom-copy-inner {
    min-height: 380px;
    padding: 58px 20px;
  }

  .products-custom-image {
    min-height: 420px;
  }

  .products-custom-side {
    display: none;
  }

}


@media (max-width: 600px) {

  .products-page-hero-inner {
    min-height: auto;
    padding: 50px 16px 45px;
  }

  .products-page-hero h1 {
    font-size: 46px;
  }

  .products-page-hero-description {
    font-size: 17px;
  }

  .products-page-hero-actions {
    flex-direction: column;
  }

  .products-page-hero-actions .button {
    width: 100%;
  }

  .products-page-hero-media {
    min-height: 340px;
  }

  .product-catalog {
    padding-top: 42px;
  }

  .product-catalog-heading h2 {
    font-size: 37px;
  }

  .catalog-grid-featured,
  .catalog-grid-secondary {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .catalog-grid-featured .catalog-card:nth-child(3) {
    grid-column: auto;
  }

  .catalog-grid-featured .catalog-card:nth-child(3) .catalog-card-image,
  .catalog-card-image,
  .catalog-card-featured .catalog-card-image {
    aspect-ratio: 1.5 / 1;
  }

  .catalog-card,
  .catalog-card:first-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .catalog-card + .catalog-card {
    border-top: 0;
  }

  .catalog-card-body {
    min-height: 155px;
  }

  .catalog-custom-card > a {
    grid-template-columns: 1fr;
  }

  .catalog-custom-media {
    aspect-ratio: 1.5 / 1;
  }

  .catalog-custom-copy {
    min-height: 205px;
  }

  .industries-section h2 {
    font-size: 34px;
  }

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

  .industry-card h3 {
    font-size: 11px;
  }

  .products-custom-copy h2 {
    font-size: 39px;
  }

  .products-custom-copy .button {
    width: 100%;
    min-width: 0;
  }

  .products-custom-image {
    min-height: 330px;
  }

  .products-final-cta h2 {
    font-size: 38px;
  }

}


/* =========================================================
   CONCRETE FENCE MOULDS PAGE
   ========================================================= */

.fence-page {
  background: #f5f4ef;
}

.fence-hero {
  min-height: 525px;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.fence-hero-copy {
  background: #f3f1ec;
}

.fence-hero-inner {
  height: 100%;
  padding:
    76px
    max(48px, calc((100vw - var(--container)) / 2))
    35px
    max(48px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
}

.fence-hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(55px, 4.8vw, 77px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

.fence-hero-description {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: #4c4e49;
}

.fence-hero .button {
  align-self: flex-start;
  min-width: 245px;
}

.fence-hero-notes {
  margin-top: auto;
  padding-top: 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 9px;
  line-height: 1.35;
  color: #767873;
}

.fence-hero-notes span:first-child {
  padding-left: 20px;
  border-left: 1px solid #8c8d88;
}

.fence-hero-notes span:last-child {
  text-align: right;
}

.fence-hero-media {
  min-height: 525px;
  position: relative;
  overflow: hidden;
}

.fence-hero-media::before {
  content: "";
  width: 120px;
  height: 135%;
  position: absolute;
  z-index: 2;
  top: -17%;
  left: -60px;
  background: #f3f1ec;
  transform: rotate(-13deg);
}

.fence-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.75) contrast(.96);
}

.fence-section-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: end;
  gap: 40px;
}

.fence-section-heading h2,
.fence-applications h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
}

.fence-section-heading > p {
  max-width: 500px;
  margin: 0 0 5px auto;
  font-size: 14px;
  line-height: 1.45;
  color: #5d5f5a;
}

.fence-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fence-product-card {
  min-width: 0;
  background: #f7f6f2;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fence-product-card > img {
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  filter: grayscale(.9) contrast(.92);
}

.fence-product-body {
  min-height: 150px;
  padding: 12px 13px 10px;
  display: flex;
  flex-direction: column;
}

.fence-product-body h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
}

.fence-product-body p {
  max-width: 330px;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.35;
  color: #737570;
}

.fence-card-links {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.fence-card-links .text-link {
  font-size: 9px;
}

.fence-applications {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.fence-applications-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.fence-applications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.fence-applications-grid article {
  min-width: 0;
}

.fence-applications-grid img {
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  filter: saturate(.72) contrast(.95);
}

.fence-applications-grid h3 {
  margin: 9px 0 0;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 400;
}

.fence-texture-section {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(0, 48%) 8%;
  background: var(--green);
}

.fence-texture-copy {
  color: white;
}

.fence-texture-inner {
  height: 100%;
  padding:
    55px
    55px
    50px
    max(48px, calc((100vw - var(--container)) / 2));
}

.fence-texture-inner h2 {
  max-width: 520px;
  margin-bottom: 17px;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
}

.fence-texture-inner p:not(.section-kicker) {
  max-width: 510px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}

.fence-texture-image {
  min-height: 340px;
  overflow: hidden;
}

.fence-texture-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(.94);
}

.fence-texture-side {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #eeede8;
  color: #696b67;
  font-size: 9px;
  line-height: 1.45;
}

.fence-texture-side i {
  display: block;
  width: 45px;
  height: 1px;
  margin-top: 18px;
  background: currentColor;
}

.fence-custom {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #f6f5f1;
}

.fence-custom-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: stretch;
}

.fence-custom-copy {
  padding: 24px 45px 22px 0;
}

.fence-custom-copy h2 {
  margin-bottom: 11px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 400;
}

.fence-custom-copy p:not(.section-kicker) {
  max-width: 590px;
  margin-bottom: 21px;
  font-size: 13px;
  line-height: 1.42;
  color: #62645f;
}

.fence-custom-copy .button {
  min-height: 48px;
  padding-inline: 23px;
}

.fence-custom-image {
  min-height: 215px;
  overflow: hidden;
}

.fence-custom-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(.9) contrast(.9);
}

.fence-info {
  display: grid;
  grid-template-columns: 58% 42%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f3ef;
}

.fence-delivery {
  min-height: 330px;
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
}

.fence-delivery-inner {
  padding:
    40px
    15px
    30px
    max(48px, calc((100vw - var(--container)) / 2));
}

.fence-delivery h2 {
  margin-bottom: 13px;
  font-size: 33px;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 400;
}

.fence-delivery-inner > p:not(.section-kicker) {
  max-width: 390px;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #686a65;
}

.fence-delivery .stats {
  margin-top: 40px;
}

.fence-delivery-map {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.fence-delivery-map img {
  width: 135%;
  max-width: none;
  opacity: .35;
}

.fence-faq {
  padding: 39px 48px 28px;
  border-left: 1px solid var(--line);
  background: #f7f6f2;
}

.fence-faq-list {
  margin: 7px 0 17px;
  border-top: 1px solid var(--line);
}

.fence-faq details {
  border-bottom: 1px solid var(--line);
}

.fence-faq summary {
  position: relative;
  padding: 13px 28px 13px 0;
  list-style: none;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.35;
}

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

.fence-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 11px;
  font-size: 16px;
  font-weight: 300;
}

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

.fence-faq details p {
  max-width: 560px;
  margin: -2px 30px 14px 0;
  font-size: 11px;
  line-height: 1.45;
  color: #6c6e69;
}

.fence-page .products-final-cta h2 {
  max-width: 620px;
}


@media (max-width: 1180px) {
  .fence-hero-inner {
    padding-left: 25px;
    padding-right: 35px;
  }

  .fence-hero h1 {
    font-size: 58px;
  }

  .fence-section-heading h2,
  .fence-applications h2 {
    font-size: 39px;
  }

  .fence-texture-section {
    grid-template-columns: 44% 48% 8%;
  }

  .fence-texture-inner {
    padding-left: 25px;
  }

  .fence-delivery-inner {
    padding-left: 25px;
  }

  .fence-faq {
    padding-inline: 32px;
  }
}


@media (max-width: 900px) {
  .fence-hero {
    display: block;
  }

  .fence-hero-inner {
    min-height: 450px;
    padding: 62px 20px 45px;
  }

  .fence-hero-media {
    min-height: 460px;
  }

  .fence-hero-media::before {
    display: none;
  }

  .fence-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fence-section-heading > p {
    max-width: 600px;
    margin: 0;
  }

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

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

  .fence-texture-section {
    grid-template-columns: 1fr;
  }

  .fence-texture-inner {
    padding: 55px 20px;
  }

  .fence-texture-image {
    min-height: 400px;
  }

  .fence-texture-side {
    display: none;
  }

  .fence-custom-grid {
    grid-template-columns: 1fr;
  }

  .fence-custom-copy {
    padding: 36px 0;
  }

  .fence-custom-image {
    min-height: 340px;
  }

  .fence-info {
    grid-template-columns: 1fr;
  }

  .fence-delivery {
    min-height: 380px;
  }

  .fence-delivery-inner {
    padding-left: 20px;
  }

  .fence-faq {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 40px 20px;
  }
}


@media (max-width: 600px) {
  .fence-hero-inner {
    min-height: auto;
    padding: 50px 16px 38px;
  }

  .fence-hero h1 {
    font-size: 47px;
  }

  .fence-hero-description {
    font-size: 17px;
  }

  .fence-hero .button {
    width: 100%;
    min-width: 0;
  }

  .fence-hero-notes {
    margin-top: 42px;
    font-size: 8px;
  }

  .fence-hero-media {
    min-height: 340px;
  }

  .fence-section-heading h2,
  .fence-applications h2 {
    font-size: 35px;
  }

  .fence-product-grid {
    grid-template-columns: 1fr;
  }

  .fence-product-body {
    min-height: 142px;
  }

  .fence-applications-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fence-applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .fence-texture-inner h2 {
    font-size: 37px;
  }

  .fence-texture-image {
    min-height: 310px;
  }

  .fence-custom-copy h2 {
    font-size: 31px;
  }

  .fence-custom-copy .button {
    width: 100%;
  }

  .fence-custom-image {
    min-height: 270px;
  }

  .fence-delivery {
    grid-template-columns: 1fr;
  }

  .fence-delivery-inner {
    padding: 42px 16px 20px;
  }

  .fence-delivery-map {
    height: 230px;
  }

  .fence-delivery-map img {
    width: 125%;
  }

  .fence-faq {
    padding-inline: 16px;
  }
}


/* =========================================================
   DELIVERY PAGE
   ========================================================= */

.delivery-page {
  background: #f5f4ef;
}

.delivery-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.delivery-hero-copy {
  min-width: 0;
  background: #f3f1ec;
}

.delivery-hero-inner {
  height: 100%;
  padding:
    88px
    52px
    34px
    max(50px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
}

.delivery-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(58px, 5vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

.delivery-hero-description {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.32;
  letter-spacing: -.015em;
  color: #464844;
}

.delivery-hero .button {
  min-width: 275px;
  width: max-content;
}

.delivery-hero-notes {
  margin-top: auto;
  padding-top: 46px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #777974;
  font-size: 10px;
  line-height: 1.35;
}

.delivery-hero-notes span:first-child {
  padding-left: 26px;
  border-left: 1px solid #8b8d87;
}

.delivery-hero-notes span:last-child {
  text-align: right;
}

.delivery-hero-media {
  min-height: 590px;
  position: relative;
  overflow: hidden;
}

.delivery-hero-media::before {
  content: "";
  width: 120px;
  height: 130%;
  position: absolute;
  z-index: 2;
  top: -15%;
  left: -59px;
  background: #f3f1ec;
  transform: rotate(-13deg);
  transform-origin: center;
}

.delivery-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88);
}

.delivery-options {
  background: #f7f6f2;
}

.delivery-section-heading {
  margin-bottom: 31px;
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: end;
  gap: 40px;
}

.delivery-section-heading h2 {
  margin: 0;
  font-size: 49px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
}

.delivery-section-heading > p {
  max-width: 640px;
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.45;
  color: #5f615d;
}

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

.delivery-option-card {
  min-width: 0;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.delivery-option-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.delivery-option-card img {
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  filter: saturate(.8);
}

.delivery-option-card h3 {
  margin: 13px 0 8px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
}

.delivery-option-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #686a65;
}

.delivery-packaging {
  min-height: 280px;
  display: grid;
  grid-template-columns: 28% 40% 32%;
  background: #efeee9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-packaging-copy,
.delivery-packaging-text {
  padding-top: 52px;
  padding-bottom: 45px;
}

.delivery-packaging-copy {
  padding-left: max(50px, calc((100vw - var(--container)) / 2));
  padding-right: 30px;
}

.delivery-packaging-copy h2 {
  margin: 0;
  font-size: 47px;
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 400;
}

.delivery-packaging-text {
  display: flex;
  align-items: center;
  padding-inline: 38px;
}

.delivery-packaging-text p {
  max-width: 570px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f615d;
}

.delivery-packaging-media {
  min-height: 280px;
  overflow: hidden;
}

.delivery-packaging-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.delivery-reach {
  display: grid;
  grid-template-columns: 68% 32%;
  background: #f5f4ef;
  border-bottom: 1px solid var(--line);
}

.delivery-reach-main {
  min-height: 400px;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
}

.delivery-reach-copy {
  padding:
    52px
    20px
    38px
    max(50px, calc((100vw - var(--container)) / 2));
}

.delivery-reach-copy h2 {
  margin-bottom: 18px;
  font-size: 39px;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 400;
}

.delivery-reach-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 1.45;
  color: #686a65;
}

.delivery-stats {
  display: flex;
  align-items: stretch;
}

.delivery-stats > div {
  min-width: 0;
  padding: 0 28px;
}

.delivery-stats > div:first-child {
  padding-left: 0;
}

.delivery-stats > div + div {
  border-left: 1px solid #bdbeb8;
}

.delivery-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 400;
}

.delivery-stats span {
  display: block;
  font-size: 8px;
  line-height: 1.25;
}

.delivery-map {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.delivery-map img {
  width: 118%;
  max-width: none;
  opacity: .42;
}

.delivery-quote-panel {
  padding: 52px 42px 40px;
  background: #f8f7f3;
  border-left: 1px solid var(--line);
}

.delivery-quote-panel h2 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.08;
  font-weight: 400;
}

.delivery-quote-panel > p:not(.section-kicker) {
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.4;
  color: #696b66;
}

.delivery-quote-panel ul {
  margin: 0 0 27px;
  padding-left: 20px;
  color: #666863;
  font-size: 13px;
  line-height: 1.55;
}

.delivery-quote-panel .button {
  width: 100%;
}

.delivery-faq-section {
  min-height: 305px;
  display: grid;
  grid-template-columns: 30% 40% 30%;
  background: #f7f6f2;
}

.delivery-faq-heading {
  padding:
    46px
    42px
    40px
    max(50px, calc((100vw - var(--container)) / 2));
}

.delivery-faq-heading h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
}

.delivery-faq-list {
  padding: 45px 42px 35px;
  border-left: 1px solid var(--line);
}

.delivery-faq-list details {
  border-bottom: 1px solid var(--line);
}

.delivery-faq-list summary {
  position: relative;
  padding: 13px 30px 13px 0;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.3;
}

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

.delivery-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 11px;
  right: 2px;
  font-size: 17px;
  font-weight: 300;
}

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

.delivery-faq-list details p {
  margin: -2px 34px 14px 0;
  font-size: 11px;
  line-height: 1.45;
  color: #6b6d68;
}

.delivery-faq-media {
  min-height: 305px;
  overflow: hidden;
}

.delivery-faq-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.delivery-page .products-final-cta h2 {
  max-width: 760px;
}


@media (max-width: 1180px) {
  .delivery-hero-inner {
    padding-left: 25px;
    padding-right: 35px;
  }

  .delivery-hero h1 {
    font-size: 58px;
  }

  .delivery-section-heading h2,
  .delivery-packaging-copy h2 {
    font-size: 41px;
  }

  .delivery-packaging-copy,
  .delivery-reach-copy,
  .delivery-faq-heading {
    padding-left: 25px;
  }

  .delivery-quote-panel {
    padding-inline: 30px;
  }
}


@media (max-width: 900px) {
  .delivery-hero {
    display: block;
  }

  .delivery-hero-inner {
    min-height: 455px;
    padding: 62px 20px 45px;
  }

  .delivery-hero-media {
    min-height: 460px;
  }

  .delivery-hero-media::before {
    display: none;
  }

  .delivery-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .delivery-section-heading > p {
    max-width: 650px;
    margin: 0;
  }

  .delivery-option-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }

  .delivery-option-card:nth-child(2) {
    border-right: 0;
  }

  .delivery-packaging {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-packaging-copy {
    padding-left: 20px;
  }

  .delivery-packaging-text {
    padding-inline: 20px;
  }

  .delivery-packaging-media {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .delivery-reach {
    grid-template-columns: 1fr;
  }

  .delivery-reach-copy {
    padding-left: 20px;
  }

  .delivery-quote-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 45px 20px;
  }

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

  .delivery-faq-heading {
    padding-left: 20px;
  }

  .delivery-faq-media {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}


@media (max-width: 600px) {
  .delivery-hero-inner {
    min-height: auto;
    padding: 50px 16px 38px;
  }

  .delivery-hero h1 {
    font-size: 47px;
  }

  .delivery-hero-description {
    font-size: 17px;
  }

  .delivery-hero .button {
    width: 100%;
    min-width: 0;
  }

  .delivery-hero-notes {
    margin-top: 42px;
    font-size: 8px;
  }

  .delivery-hero-media {
    min-height: 340px;
  }

  .delivery-section-heading h2,
  .delivery-packaging-copy h2,
  .delivery-faq-heading h2 {
    font-size: 35px;
  }

  .delivery-option-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .delivery-option-card,
  .delivery-option-card:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .delivery-packaging {
    grid-template-columns: 1fr;
  }

  .delivery-packaging-copy,
  .delivery-packaging-text {
    padding: 38px 16px 0;
  }

  .delivery-packaging-text {
    padding-top: 16px;
    padding-bottom: 35px;
  }

  .delivery-packaging-media {
    min-height: 270px;
  }

  .delivery-reach-main {
    grid-template-columns: 1fr;
  }

  .delivery-reach-copy {
    padding: 42px 16px 25px;
  }

  .delivery-reach-copy h2 {
    font-size: 34px;
  }

  .delivery-stats > div {
    padding: 0 12px;
  }

  .delivery-stats strong {
    font-size: 20px;
  }

  .delivery-stats span {
    font-size: 6px;
  }

  .delivery-map {
    height: 230px;
  }

  .delivery-map img {
    width: 125%;
  }

  .delivery-quote-panel {
    padding-inline: 16px;
  }

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

  .delivery-faq-heading,
  .delivery-faq-list {
    padding: 38px 16px;
  }

  .delivery-faq-list {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .delivery-faq-media {
    min-height: 270px;
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background: #f6f5f1;
}

.contact-hero {
  min-height: 535px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.contact-hero-copy {
  min-width: 0;
  background: #f3f1ec;
}

.contact-hero-inner {
  height: 100%;
  padding:
    74px
    58px
    34px
    max(50px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
}

.contact-hero h1 {
  margin-bottom: 19px;
  font-size: clamp(59px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

.contact-hero-description {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 23px;
  line-height: 1.32;
  color: #4e504b;
}

.contact-hero .button {
  min-width: 255px;
  width: max-content;
}

.contact-hero-notes {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  line-height: 1.35;
  color: #747670;
}

.contact-hero-notes span:first-child {
  padding-left: 27px;
  border-left: 1px solid #858781;
}

.contact-hero-notes span:last-child {
  text-align: right;
}

.contact-hero-media {
  min-height: 535px;
  position: relative;
  overflow: hidden;
}

.contact-hero-media::before {
  content: "";
  width: 120px;
  height: 130%;
  position: absolute;
  z-index: 2;
  top: -15%;
  left: -59px;
  background: #f3f1ec;
  transform: rotate(-13deg);
  transform-origin: center;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.8);
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  border-bottom: 1px solid var(--line);
  background: #f7f6f2;
}

.contact-form-panel {
  padding:
    48px
    40px
    58px
    max(50px, calc((100vw - var(--container)) / 2));
  border-right: 1px solid var(--line);
}

.contact-form-panel h2,
.contact-details-panel h2,
.contact-faq-heading h2 {
  margin-bottom: 27px;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
}

.contact-enquiry-form {
  gap: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.contact-form-panel .form-field input,
.contact-form-panel .form-field textarea,
.contact-form-panel .form-field select {
  width: 100%;
  border: 1px solid #c7c6c0;
  outline: none;
  border-radius: 0;
  background: transparent;
  color: #333532;
  font: inherit;
  font-size: 13px;
  transition: border-color .2s, background .2s;
}

.contact-form-panel .form-field input,
.contact-form-panel .form-field select {
  height: 57px;
  padding: 0 18px;
}

.contact-form-panel .form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 16px;
  right: 18px;
  pointer-events: none;
  font-size: 16px;
}

.contact-form-panel .form-field textarea {
  min-height: 190px;
  padding: 18px;
  resize: vertical;
}

.contact-form-panel .form-field input:focus,
.contact-form-panel .form-field textarea:focus,
.contact-form-panel .form-field select:focus {
  border-color: var(--green);
  background: white;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-submit {
  width: 100%;
  min-height: 67px;
  margin-top: 15px;
  justify-content: center;
  position: relative;
}

.contact-submit .arrow {
  position: absolute;
  right: 31px;
}

.contact-details-panel {
  padding:
    48px
    max(50px, calc((100vw - var(--container)) / 2))
    58px
    36px;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
  margin: 7px 0 40px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
}

.contact-detail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #1c1d1b;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.contact-detail-item h3 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 400;
}

.contact-detail-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6b6d68;
}

.contact-location-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 58% 42%;
  background: #f0efeb;
}

.contact-location-map {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.contact-location-map img {
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.contact-map-pin {
  position: absolute;
  left: 56%;
  top: 47%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  color: white;
  font-size: 8px;
  rotate: -45deg;
}

.contact-map-pin::first-letter {
  rotate: 45deg;
}

.contact-location-copy {
  padding: 42px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-location-copy .section-kicker {
  margin-bottom: 8px;
  font-size: 9px;
}

.contact-location-copy h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 400;
}

.contact-location-copy p:not(.section-kicker) {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6b6d68;
}

.contact-faq {
  background: #f5f4ef;
  border-bottom: 1px solid var(--line);
}

.contact-faq-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 17px;
}

.contact-faq-heading h2 {
  margin-bottom: 0;
}

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

.contact-faq-list details {
  border-bottom: 1px solid var(--line);
}

.contact-faq-list summary {
  min-height: 49px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 34px 0 8px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
}

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

.contact-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 19px;
  font-weight: 300;
}

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

.contact-faq-list details p {
  max-width: 920px;
  margin: -1px 34px 16px 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #6b6d68;
}

.contact-page .products-final-cta h2 {
  max-width: 800px;
}

@media (max-width: 1180px) {
  .contact-hero-inner {
    padding-left: 25px;
    padding-right: 35px;
  }

  .contact-hero h1 {
    font-size: 58px;
  }

  .contact-form-panel {
    padding-left: 25px;
  }

  .contact-details-panel {
    padding-right: 25px;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    display: block;
  }

  .contact-hero-inner {
    min-height: 455px;
    padding: 62px 20px 45px;
  }

  .contact-hero-media {
    min-height: 460px;
  }

  .contact-hero-media::before {
    display: none;
  }

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

  .contact-form-panel {
    padding: 48px 20px 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details-panel {
    padding: 48px 20px 55px;
  }

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

  .contact-location-card {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .contact-hero-inner {
    min-height: auto;
    padding: 50px 16px 38px;
  }

  .contact-hero h1 {
    font-size: 47px;
  }

  .contact-hero-description {
    font-size: 17px;
  }

  .contact-hero .button {
    width: 100%;
    min-width: 0;
  }

  .contact-hero-notes {
    margin-top: 42px;
    font-size: 8px;
  }

  .contact-hero-media {
    min-height: 340px;
  }

  .contact-form-panel h2,
  .contact-details-panel h2,
  .contact-faq-heading h2 {
    font-size: 35px;
  }

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

  .contact-message-field {
    grid-column: auto;
  }

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

  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .contact-location-map {
    height: 220px;
  }

  .contact-faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-faq-list summary {
    min-height: 55px;
  }
}
/* Production accessibility and shared page refinements */
.brand-logo { width: 270px; height: 90px; object-fit: contain; }
.brand { flex-shrink: 0; }
.language-selector { display: none; }
.language-selector::after { content: none; }
.prose { max-width: 900px; min-height: 60vh; line-height: 1.8; }
.prose h1 { font-size: clamp(36px,6vw,64px); line-height: 1.1; }
.prose h2 { margin-top: 36px; }
.prose a:not(.button), .form-privacy a { text-decoration: underline; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy, .imagery-note { font-size: 12px; line-height: 1.6; color: var(--muted); }
.form-privacy { margin-top: 16px; }
.imagery-note { padding-top: 24px; padding-bottom: 24px; margin-bottom: 0; }
.form-status { min-height: 1.5em; font-size: 15px; line-height: 1.5; }
.form-status[data-state="error"] { color: #a32720; }
.form-status[data-state="success"] { color: #303926; font-weight: 700; }
button:disabled { opacity: .6; cursor: wait; }
:focus-visible { outline: 3px solid #798d55; outline-offset: 5px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 16px; background: white; }
.skip-link:focus { top: 16px; }
[id] { scroll-margin-top: 110px; }
@media(max-width: 1100px) { .brand-logo { width: 200px; height: 70px; } }
@media(max-width: 600px) { .brand-logo { width: 180px; height: 60px; } .prose { padding-top: 48px; padding-bottom: 48px; } }
@media(prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { transition: none !important; animation: none !important; } }
/* Complete language navigation, also available on small screens. */
.language-menu { position: relative; flex: 0 0 auto; font-size: 13px; letter-spacing: .03em; z-index: 110; }
.language-menu summary { display: flex; align-items: center; gap: 7px; min-height: 44px; padding: 10px 12px; cursor: pointer; list-style: none; border: 1px solid var(--line); }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu nav { position: absolute; top: calc(100% + 6px); right: 0; min-width: 155px; padding: 6px; background: var(--bg-soft); border: 1px solid var(--line); box-shadow: 0 8px 22px #0002; }
.language-menu nav a { display: block; padding: 12px; white-space: nowrap; }
.language-menu nav a:hover, .language-menu nav a[aria-current] { color: var(--green); background: var(--paper); }
.header-inner > .language-menu { order: 2; margin-left: auto; }
.header-inner > .main-nav { order: 1; }
.header-inner > .header-actions { order: 3; }
.header-inner > .mobile-menu-toggle { order: 4; }
.header-actions { flex-shrink: 0; }
.header-quote { white-space: normal; text-align: center; }
.footer-right .language-menu { align-self: flex-start; }
html:not([lang="en"]) h1 { overflow-wrap: anywhere; hyphens: auto; }
html:not([lang="en"]) .hero h1 { font-size: clamp(38px, 4.4vw, 72px); }
html:not([lang="en"]) .main-nav { gap: 20px; }
html:not([lang="en"]) .button { white-space: normal; }
@media(max-width: 1180px) { .header-inner { gap: 16px; } .header-quote { padding: 16px; font-size: 11px; } }
@media(max-width: 600px) { .header-inner { gap: 10px; } .header-inner .brand-logo { width: 160px; } .language-menu summary { padding: 9px; } html:not([lang="en"]) .hero h1 { font-size: 40px; } }
@media(max-width: 360px) { .header-inner .brand-logo { width: 135px; } }
.header-inner { display: flex; gap: clamp(12px, 2vw, 28px); }
.header-inner > .main-nav { flex: 1 1 auto; gap: clamp(12px, 1.5vw, 24px); }
.header-inner .header-quote { min-width: 0; max-width: 215px; padding: 18px 20px; }
.header-inner > .mobile-menu-toggle { flex: 0 0 auto; }
@media(max-width: 1100px) and (min-width: 901px) { .header-inner .brand-logo { width: 180px; } .header-inner .header-quote { max-width: 170px; } }
@media(max-width: 600px) { .header-inner { gap: 8px; } }
.footer-right .language-menu nav { top: auto; bottom: calc(100% + 6px); left: 0; right: auto; }
html:not([lang="en"]) :is(h2,h3,p) { overflow-wrap: anywhere; hyphens: auto; }
html:not([lang="en"]) :is(.fence-texture-copy,.fence-texture-inner,.final-cta-content > div) { min-width: 0; }
.custom-side-copy { min-width: 0; padding-inline: clamp(12px, 2vw, 30px); }
.custom-side-copy span { overflow-wrap: anywhere; hyphens: auto; }
.custom-side-copy i { max-width: 100%; }
