:root {
  color-scheme: light;
  --ink: #10241a;
  --ink-soft: #5b6e63;
  --green: #059652;
  --green-bright: #12b768;
  --green-deep: #087846;
  --green-dark: #053a2a;
  --forest: #032c21;
  --red: #ec2e25;
  --red-dark: #c71f19;
  --yellow: #f5c844;
  --white: #ffffff;
  --paper: #f3f7f4;
  --line: rgba(16, 36, 26, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 16px 44px rgba(3, 44, 33, 0.09);
  --shadow-deep: 0 28px 80px rgba(3, 44, 33, 0.17);
  --radius-sm: 0.8rem;
  --radius-md: 1.35rem;
  --radius-lg: 2.25rem;
  --shell: min(1220px, calc(100% - 2rem));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.045em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 0.55rem;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.build-banner {
  position: relative;
  z-index: 110;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.build-banner-inner {
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  font-size: 0.84rem;
}

.build-banner-inner strong {
  color: #85e7b2;
}

.build-banner-inner > span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  background: #47e393;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(71, 227, 147, 0.45);
  animation: pulse 2.2s infinite;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(3, 44, 33, 0.07);
}

.header-inner {
  min-height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 3.55rem;
  height: 3.55rem;
  border: 1px solid rgba(5, 150, 82, 0.16);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 7px 20px rgba(3, 44, 33, 0.08);
}

.brand-copy {
  display: grid;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.header-actions a {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.91rem;
  font-weight: 760;
  text-decoration: none;
}

.text-link {
  position: relative;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.32rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link {
  padding-inline: 1.15rem;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--green);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.6rem) 0 clamp(4rem, 8vw, 7.2rem);
  background:
    radial-gradient(circle at 84% 25%, rgba(18, 183, 104, 0.12), transparent 31%),
    radial-gradient(circle at 9% 72%, rgba(236, 46, 37, 0.055), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(5, 150, 82, 0.11) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 58%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.6rem);
}

.eyebrow,
.section-label {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(5, 150, 82, 0.21);
  background: rgba(226, 248, 236, 0.78);
  border-radius: 999px;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  font-weight: 880;
}

h1 span {
  color: var(--green);
}

.hero-summary {
  max-width: 610px;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding-inline: 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(236, 46, 37, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 17px 36px rgba(236, 46, 37, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(5, 150, 82, 0.38);
  box-shadow: var(--shadow-soft);
}

.hero-details {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.hero-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 720;
}

.hero-details b {
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.product-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(5, 150, 82, 0.16);
  background:
    radial-gradient(circle at 50% 37%, rgba(255, 255, 255, 0.98), rgba(231, 250, 240, 0.82) 43%, rgba(209, 242, 225, 0.72) 74%),
    #e9f8f0;
  border-radius: 3rem;
  box-shadow: var(--shadow-deep);
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(5, 150, 82, 0.18);
  border-radius: 50%;
}

.stage-orbit-one {
  inset: 11% 8% 12%;
}

.stage-orbit-two {
  inset: 23% 20% 24%;
  border-color: rgba(236, 46, 37, 0.15);
}

.stage-card {
  position: absolute;
  margin: 0;
  padding: 0.65rem 0.65rem 0.8rem;
  border: 1px solid rgba(16, 36, 26, 0.09);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 24px 48px rgba(3, 44, 33, 0.17);
  transition: transform 260ms ease;
}

.stage-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  object-fit: contain;
}

.stage-card figcaption {
  padding: 0.58rem 0.25rem 0.05rem;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.stage-card-left {
  z-index: 1;
  top: 20%;
  left: 2.5%;
  width: 35%;
  transform: rotate(-7deg);
}

.stage-card-centre {
  z-index: 3;
  top: 6%;
  left: 30%;
  width: 40%;
}

.stage-card-right {
  z-index: 2;
  top: 20%;
  right: 2.5%;
  width: 35%;
  transform: rotate(7deg);
}

.product-stage:hover .stage-card-left {
  transform: rotate(-9deg) translateX(-4px);
}

.product-stage:hover .stage-card-centre {
  transform: translateY(-5px);
}

.product-stage:hover .stage-card-right {
  transform: rotate(9deg) translateX(4px);
}

.stage-badge {
  position: absolute;
  z-index: 5;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  color: var(--white);
  background: rgba(3, 44, 33, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  backdrop-filter: blur(14px);
}

.stage-badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-badge strong {
  font-size: 0.95rem;
}

.range-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.strip-track {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding-inline: 1rem;
  white-space: nowrap;
}

.strip-track span {
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.strip-track i {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.section {
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.products {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 3rem;
}

.section-label {
  margin-bottom: 0.85rem;
}

.section-heading h2,
.progress-copy h2,
.company-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  font-weight: 860;
}

.section-heading > p,
.company-copy > p:not(.section-label),
.contact-copy > p:not(.section-label) {
  margin-bottom: 0.2rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 1.4rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.filter-button {
  min-height: 2.8rem;
  padding-inline: 1rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 780;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--green-deep);
  border-color: rgba(5, 150, 82, 0.38);
  transform: translateY(-1px);
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.gallery-count {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 720;
  white-space: nowrap;
}

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

.product-card {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(16, 36, 26, 0.1);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 10px 32px rgba(3, 44, 33, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(3, 44, 33, 0.12);
}

.product-card[hidden] {
  display: none;
}

.product-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  padding: 0.42rem;
  border-radius: 1.08rem;
  background: var(--white);
}

.product-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0.22;
}

.product-photo img {
  width: 100%;
  height: 100%;
  border-radius: 0.85rem;
  object-fit: contain;
  transition: transform 300ms ease;
}

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

.product-photo-narrow img {
  object-position: center;
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 0.78rem;
  left: 0.78rem;
  min-width: 2rem;
  min-height: 2rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(3, 44, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.tone-yellow { color: #b28d00; background: #fff8d9; }
.tone-pink { color: #d33a77; background: #fff0f6; }
.tone-gold { color: #a86b00; background: #fff5d9; }
.tone-blue { color: #2858b8; background: #edf3ff; }
.tone-lime { color: #148b39; background: #eafbea; }
.tone-sky { color: #2282ad; background: #eaf8ff; }
.tone-mint { color: #008e51; background: #e5faef; }
.tone-red { color: #c6201a; background: #fff0ed; }
.tone-orange { color: #b95f0a; background: #fff3e4; }
.tone-sand { color: #8e6922; background: #f8f1df; }

.product-card-copy {
  padding: 1rem 0.48rem 0.7rem;
}

.product-card-copy p {
  margin-bottom: 0.35rem;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 830;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  font-weight: 830;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.availability-note {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
}

.progress-section {
  background: var(--white);
}

.progress-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(18, 183, 104, 0.28), transparent 32%),
    radial-gradient(circle at 8% 92%, rgba(236, 46, 37, 0.14), transparent 28%),
    var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.progress-panel::before {
  position: absolute;
  top: -12rem;
  right: -11rem;
  width: 29rem;
  height: 29rem;
  content: "";
  border: 5rem solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.progress-copy,
.progress-steps {
  position: relative;
  z-index: 1;
}

.progress-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #85e7b2;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot-light {
  width: 0.45rem;
  height: 0.45rem;
}

.progress-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  color: var(--white);
}

.progress-copy > p {
  max-width: 650px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

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

.button-light:hover,
.button-light:focus-visible {
  background: #e5faef;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.progress-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.progress-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.progress-steps li > span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 820;
}

.progress-steps li.is-ready > span {
  color: var(--forest);
  border-color: #85e7b2;
  background: #85e7b2;
}

.progress-steps div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.progress-steps strong {
  font-size: 0.95rem;
}

.progress-steps small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 720;
}

.progress-steps .is-ready small {
  color: #85e7b2;
}

.company {
  overflow: hidden;
  background: #f8fbf9;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.company-logo {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0 34%, transparent 35%),
    linear-gradient(145deg, #e2f8ec, #c7efda);
  border: 1px solid rgba(5, 150, 82, 0.15);
  border-radius: var(--radius-lg);
}

.company-logo img {
  position: relative;
  z-index: 2;
  width: min(58%, 17rem);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 28px 55px rgba(3, 44, 33, 0.16);
}

.logo-halo {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 150, 82, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.6rem rgba(255, 255, 255, 0.23),
    0 0 0 5.2rem rgba(5, 150, 82, 0.045);
}

.company-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.45rem;
}

.company-copy > p:not(.section-label) {
  max-width: 690px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.5rem 0 0;
  border-block: 1px solid var(--line);
}

.company-facts div {
  padding: 1.3rem 1rem;
  border-right: 1px solid var(--line);
}

.company-facts div:first-child {
  padding-left: 0;
}

.company-facts div:last-child {
  border-right: 0;
}

.company-facts dt {
  margin-bottom: 0.35rem;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact {
  background: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(1.6rem, 4vw, 3.4rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 248, 236, 0.76), rgba(255, 255, 255, 0.98) 52%),
    var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

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

.contact-item {
  display: grid;
  grid-template-columns: minmax(5.6rem, 0.35fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  margin: 0;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-item > span {
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.7;
  text-decoration: none;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.copy-button {
  min-height: 2rem;
  padding-inline: 0.7rem;
  color: var(--green-deep);
  border: 1px solid rgba(5, 150, 82, 0.24);
  background: rgba(226, 248, 236, 0.84);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 820;
}

.site-footer {
  padding: 2.3rem 0;
  color: rgba(255, 255, 255, 0.7);
  background: #021e17;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.footer-inner p {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.55;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.98rem;
}

.footer-inner > a {
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 760;
  text-decoration: none;
}

.footer-inner > a:hover,
.footer-inner > a:focus-visible {
  color: #85e7b2;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.78rem 1rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  box-shadow: 0 14px 40px rgba(3, 31, 23, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(5, 150, 82, 0.45);
  outline-offset: 4px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(71, 227, 147, 0.42); }
  70% { box-shadow: 0 0 0 0.5rem rgba(71, 227, 147, 0); }
  100% { box-shadow: 0 0 0 0 rgba(71, 227, 147, 0); }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 2.5rem;
  }

  .product-stage {
    min-height: 550px;
  }

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

@media (max-width: 920px) {
  .hero-grid,
  .progress-panel,
  .company-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    width: min(100%, 720px);
    min-height: 650px;
  }

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

  .company-logo {
    min-height: 400px;
  }

  .contact-panel {
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 1.25rem, 680px);
  }

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

  .build-banner-inner {
    min-height: 3.5rem;
    flex-wrap: wrap;
    gap: 0.18rem 0.5rem;
    padding-block: 0.55rem;
    line-height: 1.35;
  }

  .build-banner-inner > span:last-child {
    width: 100%;
  }

  .header-inner {
    min-height: 4.8rem;
    gap: 0.75rem;
  }

  .brand img {
    width: 2.95rem;
    height: 2.95rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small,
  .header-actions .text-link {
    display: none;
  }

  .contact-link {
    min-height: 2.55rem !important;
    padding-inline: 0.9rem;
    font-size: 0.83rem !important;
  }

  .hero {
    padding-top: 2.8rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-details {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .product-stage {
    min-height: 540px;
    border-radius: 2rem;
  }

  .stage-badge {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .strip-track {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .strip-track::-webkit-scrollbar {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .section-heading h2,
  .progress-copy h2,
  .company-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem);
  }

  .gallery-toolbar {
    display: block;
    margin-top: 2rem;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.45rem;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-count {
    margin-top: 0.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card {
    padding: 0.48rem;
    border-radius: 1.2rem;
  }

  .product-photo {
    border-radius: 0.88rem;
  }

  .product-card-copy {
    padding: 0.85rem 0.32rem 0.55rem;
  }

  .product-card-copy h3 {
    font-size: 1.12rem;
  }

  .progress-panel {
    gap: 2.5rem;
    padding: 1.6rem;
    border-radius: 1.6rem;
  }

  .progress-steps div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .company-logo {
    min-height: 340px;
    border-radius: 1.6rem;
  }

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

  .company-facts div,
  .company-facts div:first-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-facts div:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

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

  .contact-item > span {
    grid-column: 1 / -1;
  }

  .contact-item p {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

@media (max-width: 440px) {
  .hero-cta {
    display: grid;
  }

  .hero-cta,
  .hero-cta .button {
    width: 100%;
  }

  .button-primary {
    justify-content: space-between;
  }

  .button-secondary {
    justify-content: center;
  }

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

  .stage-card {
    padding: 0.4rem 0.4rem 0.55rem;
    border-radius: 1.1rem;
  }

  .stage-card img {
    border-radius: 0.78rem;
  }

  .stage-card figcaption {
    font-size: 0.58rem;
  }

  .stage-badge {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.72rem 0.85rem;
  }

  .stage-badge span {
    font-size: 0.62rem;
  }

  .stage-badge strong {
    font-size: 0.84rem;
  }

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

  .product-photo {
    aspect-ratio: 4 / 4.7;
  }
}

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