/* Brookewood Limited — website presentation layer */
:root {
  --forest-950: #0b1b14;
  --forest-900: #10271d;
  --forest-800: #173628;
  --forest-700: #244b36;
  --moss: #607a46;
  --leaf: #a8bd63;
  --amber: #d89b4a;
  --bark: #795439;
  --cream: #f2ede2;
  --sand: #e6ddcd;
  --paper: #fbf8f1;
  --ink: #172019;
  --muted: #657066;
  --line: rgba(23, 32, 25, 0.15);
  --white: #fffdf8;
  --shadow: 0 30px 80px rgba(10, 25, 18, 0.13);
  --radius-sm: 0.75rem;
  --radius: 1.5rem;
  --radius-lg: 3rem;
  --container: min(1180px, calc(100% - 40px));
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(16, 39, 29, 0.18) 0.45px, transparent 0.45px),
    radial-gradient(rgba(121, 84, 57, 0.12) 0.45px, transparent 0.45px);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1rem;
  background: var(--leaf);
  color: var(--forest-950);
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  color: var(--leaf);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: var(--moss);
}

.eyebrow-light {
  color: var(--leaf);
}

.mini-label,
.panel-kicker {
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button span {
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--leaf);
  color: var(--forest-950);
}

.button-primary:hover {
  background: #bdd27a;
}

.button-dark {
  background: var(--forest-900);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest-700);
}

.button-outline {
  border-color: rgba(255, 253, 248, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-950);
}

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

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

.button-small {
  min-height: 2.8rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.68rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
}

.site-header.is-sticky .main-nav {
  box-shadow: 0 12px 35px rgba(11, 27, 20, 0.09);
}

.utility-bar {
  background: var(--forest-950);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.utility-inner {
  display: flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner p {
  display: flex;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}

.status-dot {
  width: 0.43rem;
  height: 0.43rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(168, 189, 99, 0.1);
}

.utility-separator {
  margin-inline: 0.65rem;
  color: var(--leaf);
}

.utility-links {
  display: flex;
  gap: 1.5rem;
}

.utility-links a:hover {
  color: var(--white);
}

.main-nav {
  position: relative;
  display: grid;
  min-height: 5.75rem;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: 194px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav-menu a {
  position: relative;
  padding: 0.65rem 0;
  color: #2e3b32;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--forest-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--forest-900);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(30deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px, 78px 78px;
}

.hero::after {
  position: absolute;
  bottom: -11rem;
  left: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(168, 189, 99, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2rem rgba(168, 189, 99, 0.025), 0 0 0 4.5rem rgba(168, 189, 99, 0.025), 0 0 0 7rem rgba(168, 189, 99, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 8.2rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.hero-copy {
  padding: 1rem 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 1.65rem;
  font-family: var(--display);
  font-size: clamp(4.15rem, 7vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.hero h1 em {
  color: var(--leaf);
  font-weight: 400;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 2.15rem;
  color: rgba(255, 253, 248, 0.73);
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  display: grid;
  margin-top: 4.3rem;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  display: flex;
  min-height: 5.4rem;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 0.7rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div + div {
  padding-left: 0.75rem;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--leaf);
  font-family: var(--display);
  font-size: 0.78rem;
}

.hero-proof strong {
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  height: min(650px, 69vh);
  margin: 0;
  overflow: hidden;
  border-radius: 9rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 0 35px 90px rgba(4, 12, 8, 0.4);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, transparent 45%, rgba(7, 19, 13, 0.75));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-media:hover img {
  transform: scale(1.035);
}

.hero-media figcaption {
  position: absolute;
  right: 2rem;
  bottom: 1.75rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-media figcaption span {
  color: var(--leaf);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  max-width: 14rem;
  text-align: right;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.05;
}

.hero-stamp {
  position: absolute;
  top: 2.3rem;
  right: 1.75rem;
  z-index: 2;
  display: flex;
  width: 7rem;
  height: 7rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(11, 27, 20, 0.35);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
  transform: rotate(9deg);
}

.hero-stamp b {
  margin-block: 0.12rem;
  color: var(--leaf);
  font-family: var(--display);
  font-size: 1.6rem;
}

.hero-stamp span {
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-tree-rings {
  position: absolute;
  top: 22%;
  left: 45%;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(168, 189, 99, 0.1);
  border-radius: 46% 54% 55% 45%;
  box-shadow: 0 0 0 1.6rem rgba(168, 189, 99, 0.025), 0 0 0 3.2rem rgba(168, 189, 99, 0.02);
  transform: rotate(20deg);
}

.hero-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--leaf);
  color: var(--forest-950);
}

.hero-ticker div {
  width: max-content;
  padding: 0.82rem 0;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  animation: ticker 28s linear infinite;
}

.hero-ticker i {
  margin-inline: 1.4rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Product families */
.product-families {
  overflow: hidden;
  background: var(--paper);
}

.product-families::before {
  position: absolute;
  top: -2rem;
  right: -5rem;
  color: rgba(16, 39, 29, 0.035);
  content: "TIMBER";
  font-family: var(--display);
  font-size: 15vw;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.75rem;
}

.split-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.product-card-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-900);
  color: var(--white);
}

.product-card-large {
  min-height: 580px;
}

.product-card img,
.product-card-shade,
.product-card-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.product-card-shade {
  background: linear-gradient(to bottom, rgba(8, 21, 14, 0.12) 25%, rgba(8, 21, 14, 0.9) 100%);
}

.product-card-top,
.product-card-content {
  position: absolute;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.product-card-top {
  top: 1.4rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card-content {
  bottom: 1.6rem;
}

.product-card-content > p:first-child {
  margin-bottom: 0.45rem;
  color: var(--leaf);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card-content h3 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.product-card-content a,
.product-card-content button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-text {
  background: var(--sand);
  color: var(--forest-950);
}

.product-card-text .product-card-pattern {
  opacity: 0.35;
  background:
    radial-gradient(circle at 78% 20%, transparent 0 2.4rem, rgba(16, 39, 29, 0.15) 2.45rem 2.5rem, transparent 2.55rem 4.3rem, rgba(16, 39, 29, 0.11) 4.35rem 4.4rem, transparent 4.45rem),
    linear-gradient(135deg, transparent 60%, rgba(16, 39, 29, 0.08));
}

.product-card-text .product-card-top {
  color: var(--forest-700);
}

.product-card-text .product-card-content > p:first-child {
  color: var(--moss);
}

.product-card-text .product-card-content button {
  border-bottom-color: var(--forest-900);
  color: var(--forest-900);
}

.product-card-text .card-description {
  margin-bottom: 1.4rem;
  color: #526057;
  font-size: 0.9rem;
}

/* Catalogue */
.catalogue-section {
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.catalogue-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.9;
  background:
    radial-gradient(circle at 10% 80%, rgba(96, 122, 70, 0.16), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(216, 155, 74, 0.08), transparent 25%);
}

.catalogue-section .container {
  position: relative;
  z-index: 1;
}

.catalogue-header {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.catalogue-header h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.catalogue-header > p {
  margin-bottom: 0.4rem;
  color: rgba(255, 253, 248, 0.62);
  line-height: 1.8;
}

.catalogue-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.length-panel {
  padding: 2.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.panel-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-label span {
  color: var(--leaf);
}

.length-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.length-tab {
  min-height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.65rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.length-tab:hover,
.length-tab.is-active {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--forest-950);
}

.loading-line {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.length-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.length-note span {
  color: var(--leaf);
}

.length-note p {
  margin: 0;
}

.price-panel {
  min-width: 0;
  padding: 2.1rem clamp(1.3rem, 4vw, 3.1rem);
  background: var(--paper);
  color: var(--ink);
}

.price-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-panel-heading h3 {
  margin: 0.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.availability-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(96, 122, 70, 0.25);
  border-radius: 999px;
  color: var(--moss);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-badge i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--leaf);
}

.table-wrap {
  overflow-x: auto;
}

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

th,
td {
  padding: 1rem 0.6rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  font-size: 0.88rem;
}

td:nth-child(2) {
  color: var(--forest-900);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

td:last-child {
  text-align: right;
}

.row-quote {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.row-quote:hover {
  background: var(--forest-900);
  color: var(--white);
}

.price-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
}

.price-footnote p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.price-footnote button {
  flex: 0 0 auto;
  padding: 0 0 0.2rem;
  border: 0;
  border-bottom: 1px solid var(--forest-900);
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.65fr;
  gap: 1rem;
  margin-top: 1rem;
}

.calculator-card {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 0.75fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.calculator-heading,
.calculator-form,
.calculator-result {
  padding: 2rem;
}

.calculator-heading {
  background: var(--sand);
}

.calculator-heading h3 {
  margin: 0.8rem 0 0.75rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.calculator-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 1rem;
}

.calculator-form label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.input-with-unit {
  display: flex;
  margin-top: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.input-with-unit input {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 1.35rem;
}

.input-with-unit b {
  align-self: center;
  color: var(--muted);
  font-size: 0.65rem;
}

.calculator-form .button {
  min-height: 3rem;
  grid-column: 1 / -1;
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest-700);
  color: var(--white);
  text-align: center;
}

.calculator-result > span {
  color: var(--leaf);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-result strong {
  margin: 0.25rem 0;
  font-family: var(--display);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;
}

.calculator-result p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.calculator-result button {
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--leaf);
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-aside {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.aside-number {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}

.calculator-aside h3 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.calculator-aside p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.calculator-aside a {
  width: fit-content;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--leaf);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Transmission */
.transmission-section {
  overflow: hidden;
  background: var(--forest-800);
  color: var(--white);
}

.transmission-section::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  content: "";
  opacity: 0.35;
  background: repeating-linear-gradient(112deg, transparent 0 45px, rgba(255, 255, 255, 0.045) 46px 47px);
}

.transmission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.transmission-image {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 8rem var(--radius-sm);
}

.transmission-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 22, 14, 0.75), transparent 55%);
}

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

.image-label {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.image-label span {
  color: var(--leaf);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-label strong {
  max-width: 15rem;
  text-align: right;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.05;
}

.transmission-copy h2 {
  max-width: 600px;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
}

.transmission-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.85;
}

.pole-lengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pole-lengths span {
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: 1.4rem;
  text-align: center;
}

.pole-lengths span:last-child {
  border-right: 0;
}

.transmission-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  padding: 0 0 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Capability */
.capability-section {
  background: var(--paper);
}

.capability-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  gap: 1rem;
}

.capability-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.capability-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 22, 14, 0.72), transparent 50%);
}

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

.image-corner-copy {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.image-corner-copy span {
  color: var(--leaf);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-corner-copy strong {
  text-align: right;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.quality-card {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--radius);
  background: var(--sand);
}

.quality-card h3 {
  margin: 1rem 0 1.8rem;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.quality-card ol {
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
}

.quality-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(16, 39, 29, 0.13);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quality-card li span {
  color: var(--moss);
  font-family: var(--display);
  font-size: 0.77rem;
}

.quality-card > p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: rgba(96, 122, 70, 0.5);
  box-shadow: 0 18px 50px rgba(16, 39, 29, 0.08);
  transform: translateY(-4px);
}

.service-index {
  color: var(--moss);
  font-family: var(--display);
  font-size: 0.83rem;
}

.service-card h3 {
  margin: 2.5rem 0 0.85rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.service-card p {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.8rem;
}

.service-card button {
  align-self: flex-start;
  padding: 0 0 0.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Process */
.process-section {
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.65fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.process-heading h2 {
  grid-column: 1 / 3;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.process-heading > p:last-child {
  margin: 0 0 0.3rem;
  color: rgba(255, 255, 255, 0.55);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.process-track li {
  position: relative;
  min-height: 250px;
  padding: 1.45rem 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-track li::before {
  position: absolute;
  top: -0.35rem;
  left: 1.15rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
  box-shadow: 0 0 0 6px var(--forest-950);
}

.process-track li:last-child {
  border-right: 0;
}

.process-track span {
  display: block;
  margin-bottom: 4.4rem;
  color: var(--leaf);
  font-family: var(--display);
  font-size: 0.76rem;
}

.process-track strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
}

.process-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

/* Industries */
.industries-section {
  background: var(--cream);
}

.industries-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.industries-intro {
  position: sticky;
  top: 8rem;
}

.industries-intro h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.industries-intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

.industry-list article {
  display: grid;
  grid-template-columns: 2.4rem minmax(140px, 0.8fr) 1.2fr;
  align-items: center;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.industry-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.industry-list span {
  color: var(--moss);
  font-family: var(--display);
  font-size: 0.8rem;
}

.industry-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.industry-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Gallery */
.gallery-section {
  background: var(--paper);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 350px;
  margin-bottom: 0.4rem;
  color: var(--muted);
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--forest-900);
  cursor: zoom-in;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 22, 14, 0.75), transparent 55%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-item > span {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-item b {
  font-size: 1rem;
}

/* Forestry */
.forestry-section {
  overflow: hidden;
  background: var(--forest-700);
  color: var(--white);
}

.forestry-section::before {
  position: absolute;
  right: -13rem;
  bottom: -13rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(168, 189, 99, 0.12);
  border-radius: 48% 52% 45% 55%;
  content: "";
  box-shadow: 0 0 0 3.5rem rgba(168, 189, 99, 0.025), 0 0 0 7rem rgba(168, 189, 99, 0.02);
}

.forestry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.forestry-copy h2 {
  font-size: clamp(3.2rem, 5.8vw, 6rem);
}

.forestry-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.forestry-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 2rem 0;
}

.forestry-points span {
  position: relative;
  padding: 0.9rem 0.75rem 0.9rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
}

.forestry-points span::before {
  position: absolute;
  top: 1.2rem;
  left: 0.35rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.forestry-image {
  position: relative;
  height: 630px;
}

.forestry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8rem var(--radius-sm) var(--radius-sm) var(--radius-sm);
}

.forestry-tag {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(11, 27, 20, 0.72);
  backdrop-filter: blur(12px);
}

.forestry-tag span {
  color: var(--leaf);
}

.forestry-tag strong {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* FAQ */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading h2 {
  max-width: 520px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--forest-900);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Contact */
.contact-section {
  padding: 1rem 0;
  background: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  padding: clamp(2.2rem, 5vw, 5.25rem);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--forest-950);
  color: var(--white);
}

.contact-card::before {
  position: absolute;
  width: 25rem;
  height: 25rem;
  margin: -18rem 0 0 -16rem;
  border: 1px solid rgba(168, 189, 99, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2.8rem rgba(168, 189, 99, 0.025), 0 0 0 5.4rem rgba(168, 189, 99, 0.02);
}

.contact-copy {
  position: relative;
}

.contact-copy .mini-label {
  color: var(--leaf);
}

.contact-copy h2 {
  max-width: 760px;
  margin: 1rem 0;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.contact-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-details {
  align-self: end;
}

.contact-details a,
.contact-details div {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-details span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--leaf);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.meeting-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(2.4rem, 6vw, 5.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0, rgba(168, 189, 99, 0.18), transparent 34%),
    var(--paper);
}

.meeting-booking-copy {
  position: relative;
  max-width: 760px;
}

.meeting-booking .mini-label {
  color: var(--moss);
}

.meeting-booking h3 {
  margin: 0.65rem 0 0.55rem;
  color: var(--forest-900);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.meeting-booking p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.meeting-booking .button {
  justify-self: end;
  white-space: nowrap;
}
/* Footer */
.site-footer {
  padding: 5.5rem 0 1.5rem;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  width: 220px;
  height: 100px;
  object-fit: contain;
  object-position: left;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.3;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-links > div > span {
  margin-bottom: 0.6rem;
  color: var(--moss);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: none;
  color: #48544b;
  cursor: pointer;
  font-size: 0.76rem;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--forest-900);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials a span {
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.footer-socials a:hover span {
  transform: translate(2px, -2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: #1f9d58;
  color: white;
  box-shadow: 0 12px 35px rgba(8, 40, 23, 0.28);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #147c42;
  font-size: 0.68rem;
  font-weight: 900;
}

.floating-whatsapp b {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Dialog */
dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(7, 18, 12, 0.78);
  backdrop-filter: blur(6px);
}

.quote-dialog {
  width: min(1040px, calc(100% - 2rem));
  max-height: min(90vh, 860px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.dialog-grid {
  display: grid;
  min-height: min(82vh, 760px);
  grid-template-columns: 0.65fr 1.35fr;
}

.dialog-aside {
  position: relative;
  padding: 3.2rem 2.4rem;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}

.dialog-aside::after {
  position: absolute;
  right: -9rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(168, 189, 99, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2rem rgba(168, 189, 99, 0.035), 0 0 0 4rem rgba(168, 189, 99, 0.025);
}

.dialog-aside .mini-label {
  color: var(--leaf);
}

.dialog-aside h2 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.dialog-aside > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.dialog-aside ol {
  position: relative;
  z-index: 1;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.dialog-aside li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-aside li span {
  color: var(--leaf);
  font-family: var(--display);
}

.dialog-form-wrap {
  position: relative;
  overflow-y: auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
}

.dialog-close-light {
  display: none;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.dialog-heading > span {
  color: var(--moss);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-heading h2 {
  margin: 0.5rem 0 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.dialog-heading p {
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
}

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

.form-field label,
.form-field legend {
  color: #4b574e;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.82rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(96, 122, 70, 0.1);
}

.form-field textarea {
  resize: vertical;
}

.form-field small {
  color: var(--muted);
  font-size: 0.65rem;
}

.delivery-field {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  padding: 0;
  border: 0;
}

.delivery-field legend {
  width: 100%;
  margin-bottom: 0.35rem;
}

.delivery-field label {
  cursor: pointer;
}

.delivery-field input {
  position: absolute;
  opacity: 0;
}

.delivery-field span {
  display: block;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.delivery-field input:checked + span {
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: var(--white);
}

.form-separator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--moss);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-separator::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

.form-submit {
  margin-top: 0.25rem;
}

.form-privacy {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.61rem;
  text-align: center;
}

.meeting-dialog {
  width: min(860px, calc(100% - 2rem));
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.meeting-dialog-shell {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
}

.meeting-dialog-heading {
  max-width: 650px;
  padding-right: 2.5rem;
}

.meeting-dialog-heading > span,
.callback-panel-heading > span,
.callback-step-label {
  color: var(--moss);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.meeting-dialog-heading h2 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.94;
}

.meeting-dialog-heading p,
.callback-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.meeting-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.meeting-choice {
  display: grid;
  min-height: 190px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.meeting-choice:hover,
.meeting-choice:focus-visible,
.meeting-choice.is-active {
  border-color: var(--moss);
  background: rgba(168, 189, 99, 0.1);
  transform: translateY(-2px);
}

.meeting-choice-number {
  color: var(--moss);
  font-family: var(--display);
  font-size: 0.85rem;
}

.meeting-choice-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.meeting-choice-copy small {
  margin-bottom: 0.65rem;
  color: var(--moss);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.meeting-choice-copy strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
}

.meeting-choice-copy > span {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.meeting-choice > b {
  color: var(--moss);
  font-size: 1rem;
  font-weight: 500;
}

.callback-panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.callback-panel-heading {
  max-width: 610px;
  margin-bottom: 1.5rem;
}

.callback-panel-heading h3,
.callback-verification h3,
.callback-success h3 {
  margin: 0.45rem 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.callback-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.callback-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1.5;
}

.callback-consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  accent-color: var(--forest-900);
}

.callback-server-note {
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid #c58554;
  border-radius: 0.6rem;
  background: #fff5eb;
  color: #70421f;
  font-size: 0.72rem;
}

.callback-server-note a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.callback-verification {
  max-width: 520px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(168, 189, 99, 0.08);
}

.callback-verification > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.callback-verification .form-field {
  margin-bottom: 1rem;
}

.otp-input {
  max-width: 260px;
  font-family: var(--sans);
  font-size: 1.5rem !important;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-align: center;
}

.callback-resend {
  display: block;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--moss);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.callback-resend:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.callback-status {
  min-height: 1.3rem;
  margin: 1rem 0 0;
  font-size: 0.72rem;
}

.callback-status[data-state="error"] {
  color: #a23d32;
}

.callback-status[data-state="success"] {
  color: var(--moss);
}

.callback-success {
  max-width: 560px;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--forest-900);
  color: var(--white);
  text-align: center;
}

.callback-success-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--forest-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.callback-success p {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.callback-success .button {
  background: var(--white);
  color: var(--forest-950);
}

#callback-send-code[aria-busy="true"],
#callback-verify[aria-busy="true"],
#callback-resend[aria-busy="true"] {
  cursor: wait;
  opacity: 0.68;
}
.lightbox {
  width: min(1100px, calc(100% - 2rem));
  max-height: 90vh;
  overflow: visible;
  background: transparent;
  color: var(--white);
}

.lightbox button {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--forest-950);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 0.75rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav {
    grid-template-columns: 180px 1fr auto;
    gap: 1rem;
  }

  .brand {
    width: 170px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 3rem;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:nth-child(2) {
    border-right: 0;
  }

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

  .product-card-large {
    grid-column: 1 / -1;
  }

  .calculator-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .calculator-result {
    min-height: 190px;
    grid-column: 1 / -1;
  }

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

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

  .process-track li:nth-child(3) {
    border-right: 0;
  }

  .process-track li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  .utility-links a:last-child {
    display: none;
  }

  .main-nav {
    min-height: 5.1rem;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 170px;
  }

  .brand img {
    height: 62px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: -15px;
    left: -15px;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 30px 40px rgba(11, 27, 20, 0.12);
    transition: max-height 250ms ease;
  }

  .nav-menu.is-open {
    max-height: 420px;
    border-top: 1px solid var(--line);
  }

  .nav-menu a {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a::after,
  .nav-quote {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    height: 620px;
  }

  .split-heading,
  .catalogue-header,
  .transmission-grid,
  .capability-feature,
  .industries-grid,
  .forestry-grid,
  .faq-grid,
  .contact-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .catalogue-header {
    gap: 1.4rem;
  }

  .catalogue-shell {
    grid-template-columns: 1fr;
  }

  .length-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

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

  .transmission-image {
    height: 500px;
    order: 2;
  }

  .industries-intro {
    position: static;
  }

  .process-heading {
    grid-template-columns: 1fr;
  }

  .process-heading h2,
  .process-heading > p:last-child {
    grid-column: 1;
  }

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

  .gallery-wide {
    grid-column: span 1;
  }

  .forestry-image {
    height: 520px;
  }

  .footer-main {
    gap: 2rem;
  }

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

  .dialog-aside {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 5.8rem;
  }

  .section {
    padding: 5.2rem 0;
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-separator,
  .utility-inner p span + text,
  .utility-links {
    display: none;
  }

  .utility-inner p {
    font-size: 0.61rem;
  }

  .main-nav {
    min-height: 4.8rem;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    height: 56px;
  }

  .hero-grid {
    gap: 2.5rem;
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.15rem);
  }

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

  .hero-proof {
    margin-top: 3rem;
  }

  .hero-media {
    height: 440px;
    border-radius: 5rem 0.8rem 0.8rem 0.8rem;
  }

  .hero-media figcaption {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .hero-media figcaption strong {
    font-size: 1.1rem;
  }

  .hero-stamp {
    top: 1.2rem;
    right: 1rem;
    width: 5.6rem;
    height: 5.6rem;
  }

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

  .product-card-large {
    min-height: 470px;
    grid-column: auto;
  }

  .product-card {
    min-height: 440px;
  }

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

  .price-panel-heading,
  .price-footnote {
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-badge {
    white-space: normal;
  }

  th,
  td {
    padding: 0.9rem 0.25rem;
  }

  .row-quote {
    padding: 0.42rem 0.55rem;
  }

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

  .calculator-form,
  .calculator-result {
    grid-column: 1;
  }

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

  .calculator-form .button {
    grid-column: 1;
  }

  .transmission-image,
  .capability-image,
  .forestry-image {
    height: 430px;
    min-height: 0;
  }

  .image-label,
  .image-corner-copy {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .image-corner-copy strong {
    font-size: 1.35rem;
  }

  .pole-lengths span {
    font-size: 1.05rem;
  }

  .service-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  .process-track li,
  .process-track li:nth-child(3) {
    min-height: 180px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-track span {
    margin-bottom: 2.5rem;
  }

  .industry-list article {
    grid-template-columns: 2.2rem 1fr;
  }

  .industry-list article p {
    grid-column: 2;
  }

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

  .gallery-heading > p {
    text-align: left;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr;
  }

  .gallery-tall {
    grid-row: span 1;
  }

  .forestry-points {
    grid-template-columns: 1fr;
  }

  .contact-card {
    gap: 2.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .contact-actions .button {
    width: 100%;
  }

  .meeting-booking {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .meeting-booking .button {
    width: 100%;
    justify-self: stretch;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp b {
    display: none;
  }

  .floating-whatsapp {
    padding-right: 0.45rem;
  }

  .quote-dialog {
    width: 100%;
    max-height: 94vh;
    margin: auto 0 0;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .dialog-form-wrap {
    padding: 2.3rem 1rem 2.5rem;
  }

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

  .form-field,
  .form-field-full {
    grid-column: 1;
  }
}

@media (max-width: 700px) {
  .meeting-dialog {
    width: 100%;
    max-height: 94vh;
    margin: auto 0 0;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .meeting-dialog-shell {
    padding: 2.5rem 1rem 2rem;
  }

  .meeting-dialog-heading h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .meeting-choice-grid,
  .callback-details {
    grid-template-columns: 1fr;
  }

  .meeting-choice {
    min-height: 165px;
  }

  .callback-details .form-field,
  .callback-details .form-field-full {
    grid-column: 1;
  }

  .callback-verification,
  .callback-success {
    padding: 1.25rem;
  }

  .callback-verification .button,
  .callback-success .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
