/* Variables */
:root {
  --primary: #f5a623;
  --primary-soft: #fff5df;
  --secondary: #198754;
  --green: #12653f;
  --deep-green: #123c2c;
  --dark: #172b22;
  --text: #283b31;
  --muted: #617067;
  --background: #fff;
  --background-soft: #f7faf7;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 96px;
  --shadow: 0 12px 35px rgb(20 50 33 / 6%);
}
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(
    var(--scroll-header-height, var(--header-height)) + 20px
  );
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  font-size: 16px;
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.16;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
svg {
  flex-shrink: 0;
}
/* Global */
.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
section[id] {
  scroll-margin-top: 15px;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  color: var(--green);
  margin-bottom: 19px;
  line-height: 1.5;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 720;
  letter-spacing: -0.045em;
}
h2 span {
  color: var(--green);
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 15px rgb(0 0 0 / 9%);
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-orange {
  background: var(--primary);
  color: var(--dark);
}
.button-orange:hover {
  background: #ffb638;
}
.button-green {
  background: var(--green);
  color: white;
}
.button-green:hover {
  background: var(--deep-green);
}
.button-outline {
  border-color: #b7c8bb;
  color: var(--deep-green);
  background: transparent;
}
.button-outline:hover {
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 44px;
}
.text-link:hover .icon {
  transform: translateX(5px);
}
.text-link .icon {
  transition: transform 0.2s;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 5px;
}
.footer a:focus-visible,
.support a:focus-visible {
  outline-color: var(--primary);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  z-index: 100;
  background: var(--deep-green);
  color: white;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.section-copy > p:not(.eyebrow) {
  margin-top: 23px;
  color: var(--muted);
}
.section-copy > .text-link {
  margin-top: 24px;
}
/* Top Bar */
.utility-bar {
  background: var(--deep-green);
  color: #fff;
  font-size: 0.75rem;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 35px;
  gap: 15px;
}
.utility-inner > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.utility-inner .icon {
  width: 14px;
  height: 14px;
}
.utility-inner strong {
  color: var(--primary);
  font-size: 0.85rem;
}
/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 98%);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled {
  box-shadow: 0 5px 24px rgb(18 60 44 / 9%);
}
.nav-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand > span {
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.015em;
}
.brand-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  font-weight: 650;
  margin-top: 4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  position: relative;
  padding: 14px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after,
.nav-link[aria-current]::after {
  transform: scaleX(1);
}
.nav-link[aria-current] {
  color: var(--green);
}
.nav-call {
  margin-left: 8px;
  padding-inline: 19px;
  min-height: 46px;
}
.menu-toggle {
  display: none;
}
/* Hero */
.hero {
  background: #f5f8f2;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 565px;
  gap: 26px;
}
.hero-copy {
  padding: 46px 0 52px;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px #1987540d;
  margin-right: 4px;
}
h1 {
  font-size: clamp(3.3rem, 4.8vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 1.06;
  font-weight: 750;
}
h1 > span {
  color: var(--green);
}
.hero-description {
  font-size: 1rem;
  max-width: 490px;
  margin: 25px 0 29px;
  color: var(--muted);
  line-height: 1.8;
}
.hero-assurance {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--muted);
}
.hero-assurance > .icon {
  color: var(--green);
  width: 19px;
  height: 19px;
}
.hero-assurance span > span {
  margin: 0 10px;
  color: #b3beb3;
}
.hero-visual {
  height: 565px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orbit {
  width: 460px;
  height: 460px;
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f7b73e;
  box-shadow: 0 0 0 25px rgb(245 166 35 / 7%);
}
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
}
.hero-word {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.3rem;
  font-weight: 850;
  letter-spacing: -0.045em;
  color: rgb(255 255 255 / 32%);
}
.hero-cylinder {
  position: relative;
  height: 440px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(15px 20px 15px rgb(102 62 0 / 15%));
  margin-bottom: 16px;
}
.hero-badge {
  position: absolute;
  bottom: 99px;
  left: -4px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 19px;
  background: #fff;
  border: 1px solid #f1e9d9;
  border-radius: 13px;
  box-shadow: var(--shadow);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-badge strong {
  display: block;
  font-size: 0.82rem;
  color: var(--deep-green);
}
.badge-icon {
  display: grid;
  place-items: center;
  background: #edf6ed;
  color: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.hero-caption {
  position: absolute;
  bottom: 27px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  font-weight: 650;
  color: #596447;
}
.caption-line {
  height: 1px;
  width: 35px;
  background: #849274;
}
/* Statistics */
.statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 31px;
  border-bottom: 1px solid #e5ede5;
}
.stat {
  padding: 6px 30px;
  border-right: 1px solid #e5ede5;
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 750;
  color: var(--deep-green);
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: 9px;
  font-size: 0.83rem;
  color: var(--muted);
}
.stat-care strong {
  color: var(--green);
}
.stat-care .icon {
  width: 26px;
  height: 26px;
}
/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 100px;
}
.about-visual {
  position: relative;
  height: 450px;
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
}
.about-visual > img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}
.vertical-label {
  position: absolute;
  left: 18px;
  top: 36px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: #786437;
  font-weight: 650;
}
.about-stamp {
  position: absolute;
  bottom: 24px;
  right: -24px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 25px;
  color: white;
  background: var(--deep-green);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}
.about-stamp > .icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.about-stamp strong {
  font-size: 0.95rem;
}
.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 27px;
  font-weight: 600;
  font-size: 0.9rem;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-list .icon {
  background: #ecf5ec;
  color: var(--green);
  border-radius: 50%;
  padding: 4px;
  width: 25px;
  height: 25px;
}
/* Products */
.products {
  background: var(--background-soft);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 345px;
  font-size: 0.92rem;
  color: var(--muted);
  padding-bottom: 5px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  background: white;
  border: 1px solid rgb(245 166 35 / 25%);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgb(15 40 25 / 3%);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 0 0 5px 5px;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgb(245 166 35 / 55%);
  box-shadow:
    0 22px 50px rgb(0 0 0 / 8%),
    0 0 0 4px rgb(245 166 35 / 4%);
}
.product-image-wrapper {
  position: relative;
  margin: 14px 14px 0;
  height: 240px;
  background: radial-gradient(circle at center, #fff3db, #fffaf2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-wrapper img {
  width: 90%;
  height: 190px;
  object-fit: contain;
  margin-top: 22px;
}
.product-category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: #75603c;
  font-weight: 700;
}
.product-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 11px 0 24px;
  line-height: 1.7;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f4eddf;
}
.product-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.product-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.84rem;
  min-height: 44px;
}
.product-link .icon {
  width: 18px;
  height: 18px;
}
.product-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.price-enquiry {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.products-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
  font-size: 0.83rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.products-note > .icon {
  width: 17px;
  height: 17px;
  color: var(--green);
}
.products-note a {
  font-weight: 750;
  color: var(--green);
  text-decoration: underline;
}
/* Services */
.center-heading {
  text-align: center;
  margin-bottom: 42px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid #dcebdd;
  border-radius: var(--radius-md);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #a5caaa;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: #edf5ef;
  border-radius: 15px;
  color: var(--green);
  margin-bottom: 30px;
}
.icon-box > .icon {
  width: 27px;
  height: 27px;
}
.card-number {
  position: absolute;
  right: 22px;
  top: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c7967;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 14px;
}
.service-card:nth-child(2n) .icon-box {
  background: var(--primary-soft);
  color: #986000;
}
/* Why SOMGAS */
.why-section {
  background: var(--deep-green);
  color: #c6d8cf;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 66px;
}
.why-intro .eyebrow {
  color: var(--primary);
}
.why-intro h2 {
  color: white;
}
.why-intro > p:not(.eyebrow) {
  margin: 24px 0;
  line-height: 1.85;
}
.why-intro .text-link {
  color: var(--primary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 25px;
}
.why-card {
  padding: 6px 0 19px;
  border-bottom: 1px solid #39604e;
}
.why-card > .icon {
  color: var(--primary);
  width: 27px;
  height: 27px;
  margin-bottom: 18px;
}
.why-card h3 {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.why-card p {
  color: #bed0c4;
  font-size: 0.82rem;
  margin-top: 8px;
}
/* Safety */
.safety-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  background: #f4f7f0;
  border-radius: 28px;
  padding: 56px 64px;
}
.safety-copy > p:not(.eyebrow) {
  margin-top: 23px;
  max-width: 500px;
  color: var(--muted);
}
.safety-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 12px;
  margin: 29px 0;
  font-size: 0.86rem;
  font-weight: 600;
}
.safety-list li {
  display: flex;
  gap: 7px;
  align-items: center;
}
.safety-list .icon {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.safety-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}
.safety-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: #e5ecdd;
  border: 1px solid #d7e3cc;
}
.safety-visual img {
  height: 350px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(10px 10px 9px #00000012);
}
.safety-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  color: var(--green);
}
/* Support CTA */
.support {
  background: var(--deep-green);
  color: white;
  padding: 58px 0;
  position: relative;
}
.support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.support .eyebrow {
  color: var(--primary);
  margin-bottom: 14px;
}
.support h2 {
  color: white;
  font-size: 2.2rem;
}
.support p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #c6d8cf;
}
.support-number {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 7.5rem;
  letter-spacing: -0.07em;
  line-height: 1;
  font-weight: 750;
  color: var(--primary);
}
.support-number > .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.3;
}
/* Agents */
.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.agency-visual {
  border: 1px solid #e1eadf;
  position: relative;
  min-height: 355px;
  border-radius: var(--radius-lg);
  background: var(--background-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
}
.agency-icon {
  display: grid;
  place-items: center;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: #a16400;
  margin-bottom: 15px;
}
.agency-icon > .icon {
  width: 29px;
  height: 29px;
}
.agency-visual > strong {
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: -0.06em;
  font-weight: 750;
  color: var(--deep-green);
}
.agency-visual > strong span {
  color: var(--secondary);
}
.agency-visual > p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 13px;
  text-align: center;
}
.agency-line {
  display: flex;
  justify-content: space-between;
  width: 200px;
  position: relative;
  margin-top: 29px;
}
.agency-line::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #bccfbe;
}
.agency-line > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a9c2af;
  position: relative;
}
.agency-line > span:nth-child(3) {
  background: var(--primary);
}
/* Final CTA */
.final-cta {
  background: #fff3db;
  padding: 67px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-inner {
  position: relative;
}
.final-inner h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}
.final-inner > p:not(.eyebrow) {
  color: #68664f;
  margin: 23px auto 29px;
  max-width: 560px;
}
.final-inner .button-row {
  justify-content: center;
}
.final-inner .button-outline {
  border-color: #bcb597;
}
/* Footer */
.footer {
  background: #102c22;
  color: #c0d0c6;
  padding-top: 67px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;
  gap: 50px;
  padding-bottom: 53px;
}
.footer .brand {
  color: white;
}
.footer .brand > img {
  width: 63px;
  height: 63px;
}
.footer .brand-sub {
  color: #bacabd;
}
.footer-brand > p {
  font-size: 0.86rem;
  line-height: 1.9;
  margin-top: 20px;
}
.footer h3 {
  color: white;
  font-size: 0.85rem;
  font-weight: 650;
  margin: 10px 0 22px;
  letter-spacing: 0;
}
.footer li {
  font-size: 0.82rem;
  margin-top: 9px;
}
.footer li > a {
  display: inline-block;
  min-height: 27px;
}
.footer li > a:hover {
  color: var(--primary);
}
.footer-contact > p {
  font-size: 0.82rem;
}
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--primary);
  font-size: 2.8rem;
  letter-spacing: -0.035em;
  font-weight: 750;
  margin: 3px 0 11px;
}
.footer-contact > a > .icon {
  width: 24px;
  height: 24px;
}
.footer .social-heading {
  margin-top: 24px;
  margin-bottom: 13px;
}
.social-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
}
.social-labels li {
  margin: 0;
  color: #a8beb0;
  font-size: 0.75rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #315042;
  padding: 24px 0;
  font-size: 0.73rem;
  color: #a5bbad;
}
/* Text enlargement: allow grid items and long headings to reflow. */
.hero-grid > *,
.about-grid > *,
.agents-grid > *,
.why-layout > *,
.footer-grid > *,
.statistics > * {
  min-width: 0;
}
h1,
h2,
h3,
p,
.brand-sub {
  overflow-wrap: anywhere;
}
.menu-toggle {
  flex-shrink: 0;
}
.nav-inner > .brand {
  flex-shrink: 1;
  overflow-wrap: anywhere;
}
@media (min-width: 1440px) {
  .product-card:nth-child(5) {
    grid-column: 2;
  }
  .product-card:nth-child(6) {
    grid-column: 3;
  }
}
/* Animations */
.reveal {
  transition:
    opacity 0.6s ease,
    translate 0.6s ease;
}
.reveal.is-pending {
  opacity: 0;
  translate: 0 18px;
}
.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
/* Responsive */
@media (min-width: 1440px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-body {
    padding: 22px;
  }
  .product-image-wrapper {
    height: 225px;
  }
  .product-image-wrapper img {
    height: 175px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 56px);
  }
  .primary-nav {
    gap: 16px;
  }
  .brand > span {
    font-size: 1.25rem;
  }
  .brand-sub {
    font-size: 0.49rem;
  }
  .brand > img {
    width: 56px;
    height: 56px;
  }
  .nav-call {
    padding-inline: 14px;
    margin-left: 0;
  }
  .hero-grid {
    gap: 15px;
    min-height: 520px;
  }
  .hero-visual {
    height: 520px;
  }
  .hero-orbit {
    width: 375px;
    height: 375px;
  }
  .hero-cylinder {
    height: 390px;
  }
  .hero-word {
    font-size: 4.6rem;
  }
  .hero-badge {
    left: -8px;
    bottom: 80px;
    padding: 11px 14px;
  }
  .hero-caption {
    font-size: 0.58rem;
  }
  .about-grid,
  .agents-grid {
    gap: 65px;
  }
  .about-visual {
    height: 400px;
  }
  .section {
    padding: 80px 0;
  }
  .safety-panel {
    padding: 45px 38px;
  }
  .safety-list {
    grid-template-columns: 1fr;
  }
  .why-layout {
    gap: 40px;
  }
  .why-grid {
    gap: 20px;
  }
  .footer-grid {
    gap: 30px;
  }
  .support-number {
    font-size: 6rem;
  }
  .support-inner {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  :root {
    --header-height: 82px;
  }
  .brand > span {
    font-size: 1.35rem;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d5e4d6;
    background: white;
    border-radius: 9px;
    width: 46px;
    height: 46px;
    align-items: center;
    color: var(--deep-green);
    cursor: pointer;
  }
  .menu-toggle > span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition:
      transform 0.2s,
      opacity 0.2s;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 28px 24px;
    background: white;
    border-top: 1px solid #e5ece6;
    box-shadow: 0 12px 20px #123c2c14;
    max-height: calc(100dvh - 82px);
    overflow: auto;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .nav-link {
    padding: 12px 5px;
  }
  .nav-link::after {
    right: auto;
    width: 24px;
    bottom: 5px;
  }
  .nav-call {
    margin-top: 12px;
    align-self: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-copy h1 {
    font-size: 3rem;
  }
  .hero-orbit {
    width: 315px;
    height: 315px;
  }
  .hero-cylinder {
    height: 350px;
  }
  .hero-word {
    font-size: 3.9rem;
    top: 113px;
  }
  .hero-badge {
    bottom: 85px;
    left: 0;
  }
  .hero-caption {
    display: none;
  }
  .hero-copy .button-row {
    gap: 10px;
  }
  .hero-copy .button {
    padding-inline: 15px;
    font-size: 0.8rem;
  }
  .hero-description {
    font-size: 0.92rem;
  }
  .hero-assurance {
    font-size: 0.69rem;
  }
  .hero-assurance span > span {
    margin: 0 4px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card {
    padding: 28px;
  }
  .why-layout {
    grid-template-columns: 1fr;
  }
  .why-intro h2 br {
    display: none;
  }
  .why-intro > p:not(.eyebrow) {
    margin: 17px 0;
  }
  .why-intro > p br {
    display: none;
  }
  .why-grid {
    gap: 28px;
  }
  .about-grid,
  .agents-grid {
    gap: 40px;
  }
  .about-visual {
    height: 360px;
  }
  .about-stamp {
    right: -12px;
    padding: 14px 18px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 240px;
  }
  .safety-panel {
    gap: 20px;
  }
  .safety-ring {
    width: 260px;
    height: 260px;
  }
  .support-inner {
    flex-wrap: wrap;
  }
  .support-number {
    font-size: 5.5rem;
  }
  .support-inner > .button {
    margin-left: auto;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 35px 50px;
  }
  .agency-visual {
    padding: 25px;
    min-height: 330px;
  }
  .agency-visual > strong {
    font-size: 4.1rem;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .utility-inner {
    font-size: 0.65rem;
    gap: 8px;
    min-height: 32px;
  }
  .utility-inner .icon {
    display: none;
  }
  .utility-inner strong {
    font-size: 0.75rem;
  }
  .section {
    padding: 63px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero-copy {
    padding: 38px 0 6px;
  }
  .hero-copy h1 {
    font-size: clamp(2.8rem, 8.2vw, 3.7rem);
  }
  .hero-copy .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 17px;
  }
  .hero-description {
    margin: 20px 0 23px;
    max-width: 520px;
  }
  .hero-copy .button {
    font-size: 0.84rem;
    padding: 13px 18px;
    min-height: 50px;
  }
  .hero-assurance {
    margin-top: 21px;
    font-size: 0.72rem;
  }
  .hero-visual {
    height: 370px;
    margin-top: 9px;
  }
  .hero-orbit {
    width: 302px;
    height: 302px;
    top: 49%;
    box-shadow: 0 0 0 17px #f5a62312;
  }
  .hero-cylinder {
    height: 317px;
    margin-bottom: 5px;
  }
  .hero-word {
    font-size: 3.8rem;
    top: 62px;
  }
  .hero-badge {
    left: calc(50% - 155px);
    bottom: 33px;
    font-size: 0.65rem;
    padding: 11px 14px;
  }
  .hero-badge strong {
    font-size: 0.76rem;
  }
  .badge-icon {
    width: 34px;
    height: 34px;
  }
  .statistics {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 0;
  }
  .stat {
    padding: 20px;
  }
  .stat:first-child {
    padding-left: 20px;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid #e5ede5;
  }
  .stat strong {
    font-size: 2.2rem;
  }
  .stat span {
    font-size: 0.76rem;
    margin-top: 7px;
  }
  .about-grid,
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-visual {
    height: 340px;
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }
  .about-stamp {
    right: 14px;
    bottom: 18px;
  }
  .section-copy h2 {
    font-size: 2.15rem;
  }
  .section-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.94rem;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 0.88rem;
  }
  .section-heading > p br {
    display: none;
  }
  .product-grid {
    gap: 17px;
  }
  .product-image-wrapper {
    height: 200px;
    margin: 10px 10px 0;
  }
  .product-image-wrapper img {
    height: 154px;
  }
  .product-body {
    padding: 19px;
  }
  .product-body h3 {
    font-size: 1.06rem;
  }
  .product-body p {
    font-size: 0.8rem;
  }
  .product-price {
    font-size: 1.45rem;
  }
  .product-link {
    font-size: 0.76rem;
    gap: 4px;
  }
  .product-category {
    font-size: 0.55rem;
    left: 11px;
  }
  .product-bottom {
    gap: 5px;
  }
  .price-enquiry {
    font-size: 0.75rem;
  }
  .products-note {
    font-size: 0.78rem;
    gap: 5px;
    text-align: center;
  }
  .center-heading {
    margin-bottom: 30px;
  }
  .center-heading h2 {
    font-size: 2rem;
  }
  .service-grid {
    gap: 15px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-card p {
    font-size: 0.83rem;
  }
  .service-card h3 {
    font-size: 1.12rem;
  }
  .icon-box {
    margin-bottom: 24px;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .safety-panel {
    grid-template-columns: 1fr;
    padding: 32px 25px;
    gap: 20px;
  }
  .safety-list {
    grid-template-columns: 1fr 1fr;
    font-size: 0.8rem;
    gap: 15px;
  }
  .safety-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }
  .safety-visual {
    height: 320px;
  }
  .safety-visual img {
    height: 295px;
  }
  .safety-tag {
    bottom: 5px;
    font-size: 0.6rem;
  }
  .support {
    padding: 44px 0;
  }
  .support-inner {
    gap: 25px;
  }
  .support-inner > div {
    width: 100%;
  }
  .support h2 {
    font-size: 2rem;
  }
  .support h2 br {
    display: none;
  }
  .support-number {
    font-size: 5rem;
    gap: 15px;
  }
  .support-number > .icon {
    width: 32px;
    height: 32px;
  }
  .support-inner > .button {
    min-height: 49px;
    padding-inline: 18px;
  }
  .agency-visual {
    min-height: 300px;
  }
  .agency-visual > strong {
    font-size: 4.7rem;
  }
  .agents .section-copy h2 br {
    display: none;
  }
  .final-cta {
    padding: 53px 0;
  }
  .final-inner > p:not(.eyebrow) {
    font-size: 0.92rem;
  }
  .footer {
    padding-top: 48px;
  }
  .footer-grid {
    gap: 30px 22px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand > p br {
    display: none;
  }
  .footer-brand > p {
    max-width: 320px;
  }
  .footer-contact {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    padding-top: 20px;
    border-top: 1px solid #315042;
  }
  .footer-contact h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }
  .footer-contact > p:first-of-type {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-contact > a {
    grid-column: 2;
    grid-row: 1/3;
    justify-self: end;
    margin: 0;
  }
  .footer-contact > p:last-of-type {
    grid-column: 1/-1;
    margin-top: 8px;
  }
  .footer-contact > p:last-of-type br {
    display: none;
  }
  .footer-bottom {
    display: block;
    font-size: 0.7rem;
  }
  .footer-bottom > span {
    display: block;
    margin-top: 7px;
  }
  .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-image-wrapper {
    height: 255px;
    margin: 14px 14px 0;
  }
  .product-image-wrapper img {
    height: 208px;
  }
  .product-category {
    font-size: 0.6rem;
    left: 14px;
  }
  .product-body {
    padding: 23px;
  }
  .product-body h3 {
    font-size: 1.23rem;
  }
  .product-body p {
    font-size: 0.9rem;
  }
  .product-price {
    font-size: 1.75rem;
  }
  .product-link {
    font-size: 0.88rem;
    gap: 9px;
  }
  .price-enquiry {
    font-size: 0.88rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .service-card .icon-box {
    margin-bottom: 22px;
  }
  .safety-list {
    grid-template-columns: 1fr;
  }
  .why-card h3 {
    font-size: 0.93rem;
  }
  .hero-assurance {
    font-size: 0.65rem;
  }
  .hero-copy .button {
    font-size: 0.8rem;
    padding-inline: 14px;
  }
  .support-number {
    font-size: 4.5rem;
  }
  .support-inner > .button {
    padding-inline: 15px;
    font-size: 0.8rem;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .utility-inner > span {
    font-size: 0.57rem;
  }
  .brand > img {
    width: 49px;
    height: 49px;
  }
  .brand > span {
    font-size: 1.2rem;
  }
  .brand-sub {
    font-size: 0.45rem;
  }
  .hero-copy h1 {
    font-size: 2.7rem;
  }
  .hero-copy .button-row {
    gap: 8px;
  }
  .hero-copy .button {
    font-size: 0.72rem;
    padding: 12px;
  }
  .hero-copy .button .icon {
    width: 16px;
    height: 16px;
  }
  .hero-orbit {
    width: 267px;
    height: 267px;
  }
  .hero-visual {
    height: 340px;
  }
  .hero-cylinder {
    height: 290px;
  }
  .hero-word {
    font-size: 3.4rem;
  }
  .hero-badge {
    left: 0;
    bottom: 25px;
  }
  .hero-assurance {
    font-size: 0.6rem;
  }
  .stat {
    padding: 18px 13px;
  }
  .stat:first-child {
    padding-left: 13px;
  }
  .stat strong {
    font-size: 2rem;
  }
  .safety-panel {
    padding-inline: 20px;
  }
  .safety-ring {
    width: 220px;
    height: 220px;
  }
  .support-number {
    font-size: 3.9rem;
    gap: 10px;
  }
  .support-number > .icon {
    width: 27px;
    height: 27px;
  }
  .why-grid {
    gap: 18px;
  }
  .why-card h3 {
    font-size: 0.85rem;
  }
  .footer-grid {
    column-gap: 15px;
  }
}
@media (max-width: 700px) {
  .statistics {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  }
  .agency-visual > strong {
    font-size: clamp(2rem, 18vw, 4.7rem);
  }
  .brand {
    min-width: 0;
  }
  .brand > span {
    min-width: 0;
  }
  .brand > img {
    flex-shrink: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    translate: none;
  }
}
/* Services experience — scoped to the homepage Services section. */
.services-experience {
  position: relative;
  isolation: isolate;
  --svc-line-progress: 0;
}
.services-experience h3 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.16;
}
.services-experience h3 span {
  color: var(--green);
}
.services-experience h4 {
  margin: 0;
  color: var(--dark);
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.services-experience .svc-hero {
  background: #f5f8f2;
  padding: 66px 0;
}
.svc-story-thread {
  position: absolute;
  left: max(14px, calc((100% - 1240px) / 2 - 35px));
  top: 64px;
  bottom: 64px;
  width: 2px;
  z-index: 2;
  background: #dce8dc;
  pointer-events: none;
  opacity: 0.65;
}
.svc-story-thread > span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(var(--svc-line-progress));
  transform-origin: top;
  background: linear-gradient(var(--primary), var(--secondary));
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}
.svc-hero-copy {
  min-width: 0;
}
.svc-hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
}
.svc-hero-copy h2 {
  font-size: clamp(2.8rem, 4.1vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
}
.svc-hero-copy > p:not(.eyebrow) {
  margin: 24px 0 28px;
  max-width: 535px;
  color: var(--muted);
  font-size: 0.98rem;
}
.svc-hero-copy .svc-hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  margin: 24px 0 0;
}
.svc-hero-note .icon {
  color: var(--green);
  width: 19px;
  height: 19px;
}
.svc-network {
  position: relative;
  height: 470px;
  min-width: 0;
  background: #fff;
  border: 1px solid #e2eadc;
  border-radius: 32px;
  box-shadow: 0 22px 50px #143c2c06;
}
.svc-network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.svc-route-base {
  stroke: #e1e9dc;
  stroke-width: 2.5;
}
.svc-route-draw {
  stroke: url(#svc-route-gradient);
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.svc-reveal-group.is-in-view .svc-route-draw {
  animation: svc-route-draw 1.8s ease-out 0.45s forwards;
}
.svc-source {
  position: absolute;
  left: 6%;
  top: 85px;
  width: 42%;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.svc-source-disc {
  position: absolute;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: #fff0ce;
  box-shadow: 0 0 0 13px #f5a6230b;
}
.svc-source > img {
  height: 280px;
  width: 80%;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(8px 13px 9px #70531416);
}
.svc-source > span:last-child {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--green);
  margin-top: 15px;
  position: relative;
}
.svc-destination {
  position: absolute;
  right: 5%;
  width: 37%;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid #dce7dc;
  border-radius: 14px;
  padding: 14px 17px;
  box-shadow: 0 7px 20px #123c2c05;
}
.svc-destination > .icon {
  width: 28px;
  height: 28px;
  color: var(--green);
}
.svc-destination > span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}
.svc-destination strong {
  display: block;
  font-size: 1rem;
  color: var(--deep-green);
}
.svc-destination-home {
  top: 12%;
}
.svc-destination-business {
  top: 42%;
}
.svc-destination-delivery {
  top: 73%;
  border-color: #eedabd;
}
.svc-destination-delivery > .icon {
  color: #9b6409;
}
.svc-network-caption {
  position: absolute;
  top: 23px;
  width: 100%;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 650;
}
.svc-network-caption > span {
  margin: 0 10px;
  color: var(--secondary);
}
.svc-chapter {
  padding: 86px 0;
  position: relative;
}
.svc-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 43px;
}
.svc-heading > p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 330px;
}
.svc-journey {
  background: #fff;
  padding-bottom: 0;
}
.svc-flow-shell {
  min-height: 700px;
  position: relative;
  --svc-flow-progress: 0;
}
.svc-flow-sticky {
  position: sticky;
  top: calc(var(--scroll-header-height, 96px) + 32px);
  padding-top: 8px;
  padding-bottom: 34px;
}
.svc-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}
.svc-flow-track {
  position: absolute;
  left: 28px;
  right: calc(20% - 28px);
  top: 36px;
  height: 2px;
  background: #e0e9dd;
}
.svc-flow-track > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(var(--svc-flow-progress));
  transform-origin: left;
}
.svc-flow-step {
  position: relative;
  min-width: 0;
}
.svc-flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  background: white;
  border: 1px solid #cddccc;
  outline: 7px solid white;
  border-radius: 16px;
  color: var(--green);
  transform: scale(0.9);
  transition:
    transform 0.35s,
    background 0.35s,
    border-color 0.35s,
    color 0.35s;
}
.svc-flow-icon > .icon {
  width: 27px;
  height: 27px;
}
.svc-flow-step.is-active .svc-flow-icon {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: #925f07;
  transform: scale(1);
  box-shadow: 0 0 0 4px #f5a6230c;
}
.svc-flow-step.is-complete .svc-flow-icon {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: scale(1);
}
.svc-flow-step .svc-step-label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 22px 0 12px;
  color: var(--muted);
}
.svc-flow-step.is-active .svc-step-label {
  color: #87560b;
}
.svc-flow-step h4 {
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.svc-flow-step > p:not(.svc-step-label) {
  font-size: 0.86rem;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.svc-flow-step .text-link {
  margin-top: 10px;
  font-size: 0.84rem;
}
.svc-flow-caption {
  margin-top: 36px;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid #e3eae0;
  padding-top: 16px;
}
.svc-showcase {
  background: var(--background-soft);
}
.svc-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 27px;
}
.svc-feature-card {
  position: relative;
  min-width: 0;
  border: 1px solid #e7dec9;
  border-radius: 24px;
  background: white;
  box-shadow: 0 8px 26px #123c2c04;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.svc-feature-card:hover,
.svc-feature-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 18px 36px #123c2c0c;
}
.svc-feature-card .text-link {
  font-size: 0.91rem;
  margin-top: 23px;
}
.svc-feature-card:hover .text-link .icon,
.svc-feature-card:focus-within .text-link .icon {
  transform: translateX(5px);
}
.svc-card-photo {
  height: 270px;
  position: relative;
  overflow: hidden;
  background: #f1f3ec;
}
.svc-card-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.svc-feature-card:hover .svc-card-photo > img:first-child,
.svc-feature-card:focus-within .svc-card-photo > img:first-child {
  transform: scale(1.035);
}
.svc-card-photo > .svc-photo-cylinder {
  position: absolute;
  left: 26px;
  bottom: 9px;
  height: 218px;
  width: 145px;
  object-fit: contain;
  padding: 12px 15px;
  background: #fff5e1;
  border: 1px solid #f0dcb7;
  border-radius: 90px 90px 12px 12px;
  filter: drop-shadow(5px 7px 8px #00000020);
}
.svc-photo-label {
  position: absolute;
  top: 20px;
  left: 22px;
  background: #fffffff0;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  font-weight: 650;
  color: var(--deep-green);
}
.svc-card-copy {
  padding: 30px 34px;
}
.svc-card-index {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}
.svc-card-copy > h4 {
  font-size: 1.55rem;
}
.svc-card-copy > p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 480px;
}
.svc-household {
  grid-column: span 7;
}
.svc-hospitality {
  grid-column: span 5;
}
.svc-commercial {
  grid-column: span 5;
  background: var(--deep-green);
  border-color: var(--deep-green);
}
.svc-commercial .svc-card-index {
  color: var(--primary);
}
.svc-commercial h4 {
  color: white;
}
.svc-commercial .svc-card-copy > p {
  color: #c1d3c6;
}
.svc-commercial .text-link,
.svc-commercial .svc-large-icon {
  color: var(--primary);
}
.svc-large-icon {
  position: absolute;
  right: 30px;
  top: 29px;
  width: 34px;
  height: 34px;
  color: var(--green);
}
.svc-cylinders {
  grid-column: span 7;
  background: #fffaf0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
.svc-cylinder-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 15px 18px 15px 0;
}
.svc-cylinder-pair figure {
  margin: 0;
  min-width: 0;
  width: 50%;
}
.svc-cylinder-pair figure:first-child {
  width: 55%;
}
.svc-cylinder-pair img {
  width: 100%;
  height: 207px;
  object-fit: contain;
  transition: transform 0.35s;
}
.svc-cylinder-pair figure:first-child img {
  height: 150px;
}
.svc-cylinder-pair figcaption {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.09em;
}
.svc-cylinders:hover img {
  transform: scale(1.035);
}
.svc-delivery {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  background: #eef5ef;
  border-color: #d2e6d5;
}
.svc-delivery-symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  color: var(--green);
  padding: 30px;
}
.svc-delivery-symbol > .icon {
  width: 104px;
  height: 104px;
  stroke-width: 0.9;
}
.svc-delivery-symbol > span {
  font-size: 0.8rem;
  font-weight: 600;
}
.svc-technical {
  grid-column: span 5;
  background: #fff;
}
.svc-technical .svc-card-copy {
  padding-top: 72px;
}
.svc-technical .svc-card-index {
  position: absolute;
  top: 30px;
  left: 34px;
}
.svc-business {
  background: white;
}
.svc-business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.svc-business-grid > * {
  min-width: 0;
}
.svc-business-photo {
  height: 520px;
  border-radius: 24px;
  position: relative;
  background: #eff2e9;
  overflow: hidden;
}
.svc-business-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.svc-business-photo::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, #102c22a0);
  pointer-events: none;
}
.svc-business-product {
  position: absolute;
  bottom: 53px;
  left: 24px;
  background: #fff3dc;
  border: 1px solid #ffefd5;
  border-radius: 100px 100px 14px 14px;
  padding: 24px 24px 9px;
  z-index: 1;
  box-shadow: 0 15px 30px #00000015;
}
.svc-business-product > img {
  width: 130px;
  height: 235px;
  object-fit: contain;
}
.svc-business-caption {
  position: absolute;
  bottom: 23px;
  left: 27px;
  color: white;
  font-weight: 650;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  z-index: 1;
}
.svc-business-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 23px;
}
.svc-business-copy > .button {
  margin-top: 31px;
}
.svc-selector {
  background: #f5f8f2;
}
.svc-customer-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.svc-customer-tab {
  border: 1px solid #d8e3d5;
  background: white;
  color: var(--green);
  border-radius: 12px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.svc-customer-tab > span {
  font-size: 0.98rem;
  font-weight: 650;
}
.svc-customer-tab > .icon:last-child {
  width: 18px;
  height: 18px;
  margin-left: auto;
}
.svc-customer-tab[aria-selected="true"] {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: white;
}
.svc-customer-tab[aria-selected="true"] > .icon:first-child {
  color: var(--primary);
}
.svc-customer-tab:hover {
  border-color: var(--primary);
}
.svc-customer-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid #dfe7d8;
  border-radius: 20px;
  padding: 38px;
  background: white;
  animation: svc-panel-in 0.3s ease-out;
}
.svc-customer-panel + .svc-customer-panel {
  margin-top: 16px;
}
.svc-customer-panel[hidden] {
  display: none;
}
.svc-customer-panel[hidden] + .svc-customer-panel {
  margin-top: 0;
}
.svc-customer-panel h4 {
  font-size: 1.8rem;
}
.svc-customer-panel p:not(.eyebrow) {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 14px;
}
.svc-customer-panel .text-link {
  font-size: 0.9rem;
  margin-top: 15px;
}
.svc-customer-panel ul {
  display: grid;
  gap: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.svc-customer-panel li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.svc-customer-panel li > .icon {
  color: var(--green);
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
.svc-customer-panel > .button {
  white-space: nowrap;
  padding-inline: 19px;
}
.svc-safety {
  background: var(--deep-green);
  color: white;
}
.svc-safety-grid {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 90px;
  align-items: center;
}
.svc-safety-emblem {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  color: var(--primary);
  padding: 40px 0;
}
.svc-safety-emblem::before {
  content: "";
  position: absolute;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: #f5a6230d;
  box-shadow: 0 0 55px #f5a6230d;
  top: 5px;
}
.svc-safety-emblem > .icon {
  width: 115px;
  height: 115px;
  stroke-width: 1.05;
  position: relative;
}
.svc-safety-emblem > span {
  position: relative;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.svc-safety .eyebrow {
  color: var(--primary);
}
.services-experience .svc-safety h3 {
  color: white;
}
.svc-safety-grid > div > p:not(.eyebrow) {
  color: #c1d3c6;
  max-width: 670px;
  margin-top: 20px;
  font-size: 0.95rem;
}
.svc-safety ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
  margin: 27px 0 20px;
  font-size: 0.85rem;
}
.svc-safety li {
  display: flex;
  gap: 9px;
  align-items: center;
}
.svc-safety li > .icon {
  color: var(--primary);
  width: 19px;
  height: 19px;
}
.svc-safety .text-link {
  color: var(--primary);
}
.svc-trust {
  padding: 54px 0;
  background: white;
}
.svc-trust .eyebrow {
  text-align: center;
  font-size: 0.65rem;
  margin-bottom: 30px;
}
.svc-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  row-gap: 24px;
}
.svc-trust-grid > div {
  text-align: center;
  border-right: 1px solid #e0e8dc;
}
.svc-trust-grid > div:last-child {
  border: 0;
}
.svc-trust-grid strong {
  font-size: 2.65rem;
  font-weight: 750;
  letter-spacing: -0.06em;
  color: var(--deep-green);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.svc-trust-grid span {
  display: block;
  margin-top: 9px;
  font-size: 0.82rem;
  color: var(--muted);
}
.svc-closing {
  background: #fff2d8;
  padding: 50px 0;
}
.svc-closing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.svc-closing-grid > div > p:not(.eyebrow) {
  font-size: 0.97rem;
  color: #666b54;
  max-width: 500px;
  margin: 23px 0 28px;
}
.svc-closing-visual {
  height: 325px;
  position: relative;
  display: grid;
  place-items: center;
}
.svc-closing-visual > span {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #ffe4ad;
  border-radius: 50%;
  border: 1px solid #efce8d;
  box-shadow: 0 0 0 19px #f5a6230b;
}
.svc-closing-visual > img {
  position: relative;
  height: 315px;
  width: 90%;
  object-fit: contain;
}
.svc-closing.is-in-view .svc-closing-visual > img {
  animation: svc-float 6s ease-in-out infinite;
}
.svc-safety.is-in-view .svc-safety-emblem::before {
  animation: svc-safety-glow 2s ease-in-out 1;
}
.svc-reveal-group.is-in-view .svc-hero-copy h2 {
  animation: svc-fade-up 0.65s both;
}
.svc-reveal-group.is-in-view .svc-hero-copy > p:not(.eyebrow) {
  animation: svc-fade-up 0.65s 0.1s both;
}
.svc-reveal-group.is-in-view .svc-hero-copy > .button-row {
  animation: svc-fade-up 0.65s 0.2s both;
}
.svc-reveal-group.is-in-view .svc-source > img {
  animation: svc-product-enter 0.8s 0.15s both;
}
.svc-business.is-in-view .svc-business-photo {
  animation: svc-image-enter 0.7s both;
}
.svc-business.is-in-view .svc-business-copy {
  animation: svc-fade-up 0.7s 0.08s both;
}
.svc-business.is-in-view .benefit-list li {
  animation: svc-fade-up 0.55s both;
  animation-delay: var(--benefit-delay);
}
.svc-closing.is-in-view:not(.is-currently-visible) .svc-closing-visual > img {
  animation-play-state: paused;
}
@keyframes svc-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes svc-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes svc-product-enter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes svc-image-enter {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes svc-panel-in {
  from {
    opacity: 0;
    transform: translateX(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes svc-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes svc-safety-glow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .svc-hero-grid {
    gap: 30px;
  }
  .svc-hero-copy h2 {
    font-size: 3rem;
  }
  .svc-network {
    height: 435px;
  }
  .svc-source {
    top: 75px;
    height: 285px;
  }
  .svc-source > img {
    height: 260px;
  }
  .svc-source-disc {
    width: 180px;
    height: 180px;
  }
  .svc-destination {
    padding: 13px 12px;
    gap: 9px;
  }
  .svc-destination strong {
    font-size: 0.9rem;
  }
  .svc-flow-list {
    gap: 24px;
  }
  .svc-flow-step h4 {
    font-size: 0.96rem;
  }
  .svc-flow-step > p:not(.svc-step-label) {
    font-size: 0.82rem;
  }
  .svc-business-grid,
  .svc-safety-grid {
    gap: 55px;
  }
  .svc-customer-panel {
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
  }
  .svc-customer-panel > .button {
    justify-self: start;
  }
  .svc-card-copy {
    padding: 28px;
  }
  .svc-large-icon {
    right: 25px;
  }
  .svc-cylinders {
    grid-template-columns: 1.2fr 1fr;
  }
  .svc-cylinder-pair {
    gap: 3px;
    padding-right: 12px;
  }
  .svc-cylinder-pair img {
    height: 180px;
  }
  .svc-cylinder-pair figure:first-child img {
    height: 140px;
  }
}
@media (max-width: 1000px) {
  .svc-chapter {
    padding: 65px 0;
  }
  .svc-hero-grid {
    gap: 22px;
    grid-template-columns: 1fr 1fr;
  }
  .svc-hero-copy h2 {
    font-size: 2.6rem;
  }
  .svc-hero-copy > .eyebrow {
    font-size: 0.59rem;
  }
  .svc-hero-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .svc-hero-copy .button {
    font-size: 0.8rem;
    padding-inline: 14px;
  }
  .svc-network {
    height: 390px;
  }
  .svc-source {
    top: 73px;
    left: 5%;
    height: 260px;
  }
  .svc-source > img {
    height: 235px;
  }
  .svc-source-disc {
    width: 145px;
    height: 145px;
  }
  .svc-destination {
    right: 4%;
    width: 41%;
    padding: 12px 10px;
    gap: 8px;
  }
  .svc-destination > .icon {
    width: 23px;
    height: 23px;
  }
  .svc-destination strong {
    font-size: 0.82rem;
  }
  .svc-destination > span {
    font-size: 0.62rem;
  }
  .svc-destination-home {
    top: 13%;
  }
  .svc-destination-business {
    top: 43%;
  }
  .svc-destination-delivery {
    top: 73%;
  }
  .svc-network-caption {
    font-size: 0.46rem;
    top: 20px;
  }
  .svc-network-caption > span {
    margin: 0 5px;
  }
  .svc-source > span:last-child {
    font-size: 0.48rem;
  }
  .svc-heading {
    gap: 24px;
  }
  .svc-heading > p {
    max-width: 235px;
    font-size: 0.86rem;
  }
  .svc-flow-list {
    gap: 16px;
  }
  .svc-flow-step h4 {
    font-size: 0.92rem;
  }
  .svc-flow-step .svc-step-label {
    font-size: 0.56rem;
  }
  .svc-flow-shell {
    min-height: 730px;
  }
  .svc-showcase-grid {
    gap: 20px;
  }
  .svc-card-copy {
    padding: 25px;
  }
  .svc-card-copy > h4 {
    font-size: 1.3rem;
  }
  .svc-card-copy > p {
    font-size: 0.88rem;
  }
  .svc-card-photo {
    height: 225px;
  }
  .svc-card-photo > .svc-photo-cylinder {
    height: 185px;
    width: 125px;
    left: 16px;
  }
  .svc-household,
  .svc-hospitality,
  .svc-commercial,
  .svc-cylinders,
  .svc-delivery,
  .svc-technical {
    grid-column: span 6;
  }
  .svc-cylinders {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .svc-cylinder-pair {
    padding: 0 35px 22px;
    max-height: 190px;
    gap: 10px;
  }
  .svc-cylinder-pair figure {
    max-width: 110px;
  }
  .svc-cylinder-pair img {
    height: 145px;
  }
  .svc-cylinder-pair figure:first-child img {
    height: 115px;
  }
  .svc-delivery {
    display: block;
  }
  .svc-delivery-symbol {
    padding: 0 25px 25px;
    align-items: flex-start;
    gap: 10px;
  }
  .svc-delivery-symbol > .icon {
    width: 80px;
    height: 80px;
  }
  .svc-feature-card .text-link {
    font-size: 0.82rem;
  }
  .svc-commercial .svc-card-copy {
    padding-top: 72px;
  }
  .svc-commercial .svc-card-index {
    position: absolute;
    top: 26px;
    left: 25px;
  }
  .svc-large-icon {
    width: 28px;
    height: 28px;
    top: 23px;
    right: 22px;
  }
  .svc-business-grid {
    gap: 40px;
  }
  .svc-business-photo {
    height: 535px;
  }
  .svc-business-product {
    left: 18px;
    padding: 15px 18px 8px;
  }
  .svc-business-product > img {
    height: 195px;
    width: 108px;
  }
  .svc-business-caption {
    left: 22px;
    font-size: 0.57rem;
  }
  .svc-business-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .svc-business-copy .benefit-list {
    font-size: 0.82rem;
    gap: 13px;
  }
  .svc-customer-tab {
    padding: 18px 15px;
    gap: 8px;
  }
  .svc-customer-tab > span {
    font-size: 0.86rem;
  }
  .svc-customer-tab > .icon:last-child {
    display: none;
  }
  .svc-customer-panel {
    padding: 30px;
  }
  .svc-customer-panel h4 {
    font-size: 1.55rem;
  }
  .svc-customer-panel ul {
    font-size: 0.83rem;
  }
  .svc-safety-grid {
    gap: 38px;
    grid-template-columns: 1fr 2.4fr;
  }
  .svc-safety ul {
    font-size: 0.78rem;
    gap: 15px;
  }
  .svc-safety-emblem > span {
    font-size: 0.53rem;
  }
  .svc-closing-grid {
    gap: 25px;
  }
  .svc-closing-visual > span {
    width: 240px;
    height: 240px;
  }
  .svc-closing-visual > img {
    height: 280px;
  }
}
@media (max-width: 700px) {
  .svc-story-thread {
    display: none;
  }
  .svc-chapter {
    padding: 57px 0;
  }
  .services-experience .svc-hero {
    padding: 43px 0 34px;
  }
  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-hero-copy h2 {
    font-size: clamp(2.45rem, 8vw, 3rem);
  }
  .svc-hero-copy > .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.09em;
  }
  .svc-hero-copy h2 br {
    display: none;
  }
  .svc-hero-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    margin: 22px 0 25px;
  }
  .svc-hero-copy .button {
    font-size: 0.8rem;
    min-height: 50px;
  }
  .svc-hero-copy .svc-hero-note {
    font-size: 0.73rem;
    margin-top: 20px;
  }
  .svc-network {
    height: 390px;
    max-width: 490px;
    width: 100%;
    margin-inline: auto;
  }
  .svc-source {
    top: 77px;
  }
  .svc-source > img {
    height: 235px;
  }
  .svc-source-disc {
    width: 160px;
    height: 160px;
  }
  .svc-destination {
    width: 40%;
    right: 5%;
  }
  .svc-destination > .icon {
    width: 25px;
    height: 25px;
  }
  .svc-destination strong {
    font-size: 0.9rem;
  }
  .svc-network-caption {
    font-size: 0.53rem;
  }
  .svc-source > span:last-child {
    font-size: 0.48rem;
  }
  .svc-heading {
    display: block;
    margin-bottom: 32px;
  }
  .svc-heading > p {
    font-size: 0.88rem;
    max-width: 100%;
    margin-top: 18px;
  }
  .svc-heading > p br {
    display: none;
  }
  .services-experience h3 {
    font-size: 2rem;
  }
  .svc-heading h3 br {
    display: none;
  }
  .svc-flow-shell {
    min-height: 0;
  }
  .svc-flow-sticky {
    position: relative;
    top: auto;
    padding: 0;
  }
  .svc-flow-list {
    display: block;
  }
  .svc-flow-step {
    padding: 0 0 32px 83px;
    min-height: 145px;
  }
  .svc-flow-step:last-child {
    padding-bottom: 0;
  }
  .svc-flow-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
  }
  .svc-flow-step .svc-step-label {
    margin: 0 0 10px;
    font-size: 0.6rem;
  }
  .svc-flow-step h4 {
    font-size: 1.15rem;
  }
  .svc-flow-step > p:not(.svc-step-label) {
    font-size: 0.91rem;
    margin-top: 12px;
    max-width: 470px;
  }
  .svc-flow-track {
    top: 27px;
    bottom: 145px;
    left: 27px;
    width: 2px;
    height: auto;
    right: auto;
  }
  .svc-flow-track > span {
    transform: scaleY(var(--svc-flow-progress));
    transform-origin: top;
    background: linear-gradient(var(--primary), var(--secondary));
  }
  .svc-flow-caption {
    font-size: 0.74rem;
    margin-top: 27px;
  }
  .svc-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .svc-household,
  .svc-hospitality,
  .svc-commercial,
  .svc-cylinders,
  .svc-delivery,
  .svc-technical {
    grid-column: 1;
  }
  .svc-card-photo {
    height: 250px;
  }
  .svc-card-photo > .svc-photo-cylinder {
    height: 204px;
    width: 135px;
  }
  .svc-photo-label {
    font-size: 0.55rem;
    left: 17px;
    top: 16px;
  }
  .svc-card-copy {
    padding: 25px;
  }
  .svc-card-copy > h4 {
    font-size: 1.5rem;
  }
  .svc-card-copy > p {
    font-size: 0.95rem;
  }
  .svc-feature-card .text-link {
    font-size: 0.91rem;
    margin-top: 21px;
  }
  .svc-cylinders {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .svc-cylinder-pair {
    padding: 15px 15px 15px 0;
    gap: 5px;
    max-height: none;
  }
  .svc-cylinder-pair img {
    height: 180px;
  }
  .svc-cylinder-pair figure:first-child img {
    height: 125px;
  }
  .svc-delivery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
  }
  .svc-delivery-symbol {
    align-items: center;
    padding: 20px;
  }
  .svc-delivery-symbol > .icon {
    width: 85px;
    height: 85px;
  }
  .svc-business-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .svc-business-photo {
    height: 380px;
  }
  .svc-business-product {
    bottom: 50px;
    left: 23px;
  }
  .svc-business-product > img {
    height: 215px;
    width: 120px;
  }
  .svc-business-caption {
    font-size: 0.6rem;
    left: 24px;
  }
  .svc-business-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .svc-business-copy .benefit-list {
    font-size: 0.9rem;
  }
  .svc-customer-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 4px 10px;
    margin: 0 -4px 12px;
    scrollbar-width: thin;
  }
  .svc-customer-tab {
    min-width: 141px;
    justify-content: center;
    padding: 18px;
    flex-shrink: 0;
  }
  .svc-customer-tab > span {
    font-size: 0.9rem;
  }
  .svc-customer-panel {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 28px;
  }
  .svc-customer-panel h4 {
    font-size: 1.65rem;
  }
  .svc-customer-panel p:not(.eyebrow) {
    font-size: 0.93rem;
  }
  .svc-customer-panel ul {
    font-size: 0.9rem;
  }
  .svc-customer-panel > .button {
    justify-self: stretch;
  }
  .svc-safety-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-safety-emblem {
    padding: 14px 0;
    gap: 17px;
    align-items: flex-start;
  }
  .svc-safety-emblem::before {
    width: 130px;
    height: 130px;
    top: -10px;
    left: -20px;
  }
  .svc-safety-emblem > .icon {
    width: 75px;
    height: 75px;
  }
  .svc-safety-emblem > span {
    font-size: 0.58rem;
  }
  .svc-safety-grid > div > p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .svc-safety ul {
    grid-template-columns: 1fr;
    font-size: 0.88rem;
    gap: 14px;
  }
  .svc-trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    gap: 25px 0;
  }
  .svc-trust-grid > div:nth-child(2) {
    border: 0;
  }
  .svc-trust-grid strong {
    font-size: 2.3rem;
  }
  .svc-trust-grid span {
    font-size: 0.76rem;
  }
  .svc-closing {
    padding: 45px 0 26px;
  }
  .svc-closing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .svc-closing-grid > div > p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .svc-closing-visual {
    height: 290px;
  }
  .svc-closing-visual > img {
    height: 270px;
    width: 310px;
    max-width: 95%;
  }
}
@media (max-width: 420px) {
  .svc-network {
    height: 355px;
  }
  .svc-source {
    top: 63px;
    height: 245px;
  }
  .svc-source > img {
    height: 215px;
  }
  .svc-source-disc {
    width: 135px;
    height: 135px;
  }
  .svc-destination {
    gap: 6px;
    padding: 10px 9px;
    min-height: 65px;
  }
  .svc-destination > .icon {
    width: 21px;
    height: 21px;
  }
  .svc-destination strong {
    font-size: 0.78rem;
  }
  .svc-destination > span {
    font-size: 0.56rem;
  }
  .svc-destination-delivery {
    top: 73%;
  }
  .svc-source > span:last-child {
    font-size: 0.44rem;
  }
  .svc-network-caption {
    font-size: 0.46rem;
  }
  .svc-hero-copy .button-row {
    gap: 10px;
  }
  .svc-cylinders {
    display: flex;
  }
  .svc-cylinder-pair {
    padding: 0 30px 25px;
    max-width: 330px;
    align-self: center;
  }
  .svc-cylinder-pair img {
    height: 190px;
  }
  .svc-cylinder-pair figure:first-child img {
    height: 145px;
  }
  .svc-delivery {
    display: block;
  }
  .svc-delivery-symbol {
    align-items: flex-start;
    padding: 0 25px 25px;
  }
  .svc-delivery-symbol > .icon {
    width: 75px;
    height: 75px;
  }
  .svc-flow-step {
    padding-left: 75px;
  }
  .svc-flow-step h4 {
    font-size: 1.05rem;
  }
  .svc-flow-step > p:not(.svc-step-label) {
    font-size: 0.88rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-experience *,
  .services-experience *::before {
    animation: none !important;
    transition: none !important;
  }
  .svc-route-draw {
    stroke-dashoffset: 0;
  }
  .svc-flow-shell {
    min-height: 0;
  }
  .svc-flow-sticky {
    position: relative;
    top: auto;
  }
  .svc-flow-track > span {
    transform: scale(1);
  }
  .svc-story-thread > span {
    transform: scaleY(1);
  }
}
/* Standalone About page */
.about-page-hero {
  background: #f5f8f2;
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  align-items: center;
  min-height: 530px;
  padding-block: 48px;
}
.about-hero-copy,
.about-hero-image,
.company-grid > * {
  min-width: 0;
}
.about-hero-copy h1 {
  font-size: clamp(2.8rem, 4.3vw, 3.9rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
}
.about-hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.about-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 25px 0 17px;
  color: var(--muted);
  font-size: 1rem;
}
.about-hero-image {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image-ring {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: #f8bb47;
  box-shadow: 0 0 0 22px #f5a6230e;
}
.about-image-ring::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
}
.about-hero-image > img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(12px 17px 12px #5e3a001c);
}
.about-image-caption {
  position: absolute;
  bottom: -3px;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  font-weight: 650;
  color: var(--green);
  text-align: center;
}
.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 110px;
  align-items: center;
}
.company-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 28px;
}
.company-values li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.87rem;
  font-weight: 600;
}
.company-values .icon {
  width: 24px;
  height: 24px;
  color: var(--green);
  background: #edf5ed;
  border-radius: 50%;
  padding: 4px;
}
.company-image {
  position: relative;
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.company-image > img {
  width: 75%;
  height: 360px;
  object-fit: contain;
}
.company-image-label {
  position: absolute;
  right: 20px;
  bottom: 23px;
  display: flex;
  gap: 13px;
  align-items: center;
  background: var(--deep-green);
  color: white;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}
.company-image-label > .icon {
  color: var(--primary);
  width: 29px;
  height: 29px;
}
.company-image-label strong {
  display: block;
  font-size: 0.9rem;
}
.journey-section {
  background: var(--background-soft);
}
.journey-heading {
  margin-bottom: 58px;
}
.journey-heading > p:last-child {
  max-width: 570px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.journey-timeline {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  --timeline-progress: 1;
}
.timeline-track {
  position: absolute;
  left: 50%;
  width: 3px;
  top: 36px;
  bottom: 36px;
  transform: translateX(-50%);
  background: #dfebdf;
  border-radius: 3px;
  overflow: hidden;
}
.timeline-progress {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(var(--timeline-progress));
  transform-origin: top;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  margin-bottom: 25px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-card {
  grid-column: 1;
  position: relative;
  background: white;
  border: 1px solid #eaddc3;
  border-radius: var(--radius-md);
  padding: 27px 30px;
  box-shadow: 0 10px 30px #123c2c06;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  min-width: 0;
}
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
  border-color: #d4e7d9;
}
.timeline-card::after {
  content: "";
  position: absolute;
  right: -57px;
  top: 35px;
  width: 56px;
  height: 1px;
  background: #dec99f;
}
.timeline-item:nth-child(even) .timeline-card::after {
  right: auto;
  left: -57px;
  background: #bdd4c1;
}
.milestone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.milestone-top .eyebrow {
  margin: 0;
  color: #86520c;
  font-size: 0.7rem;
}
.milestone-top > .icon {
  color: #ac7113;
  width: 23px;
  height: 23px;
}
.timeline-item:nth-child(even) .milestone-top .eyebrow,
.timeline-item:nth-child(even) .milestone-top > .icon {
  color: var(--green);
}
.timeline-card h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.timeline-card > p {
  color: var(--muted);
  font-size: 0.91rem;
  margin-top: 14px;
  line-height: 1.8;
}
.timeline-node {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 28px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid #d0dfd0;
  background: white;
  box-shadow: 0 0 0 6px var(--background-soft);
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.timeline-node.is-active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow:
    0 0 0 6px var(--background-soft),
    0 0 0 10px #f5a62318;
}
.timeline-item:nth-child(even) .timeline-node.is-active {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow:
    0 0 0 6px var(--background-soft),
    0 0 0 10px #19875414;
}
.timeline-node.is-pulsing {
  animation: timeline-pulse 600ms ease-out 1;
}
.timeline-item.is-pending .timeline-card {
  opacity: 0;
  transform: translateX(-40px);
}
.timeline-item:nth-child(even).is-pending .timeline-card {
  transform: translateX(40px);
}
.timeline-item.is-revealed .timeline-card {
  opacity: 1;
  transform: translateX(0);
}
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.purpose-card {
  padding: 32px;
  border: 1px solid #dcebdd;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: white;
}
.purpose-card:nth-child(2) {
  background: #fffaf0;
  border-color: #f0dfbb;
}
.purpose-card .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 13px;
}
.purpose-card h3 {
  font-size: 1.45rem;
  line-height: 1.35;
}
.purpose-card > p:last-child {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 17px;
}
.purpose-card .icon-box {
  margin-bottom: 29px;
}
.purpose-card:nth-child(2) .icon-box {
  background: #f9eccf;
  color: #8b5800;
}
@keyframes timeline-pulse {
  0%,
  100% {
    scale: 1;
  }
  45% {
    scale: 1.18;
  }
}
@media (max-width: 1200px) {
  .about-hero-grid {
    gap: 40px;
  }
  .about-image-ring {
    width: 330px;
    height: 330px;
  }
  .company-grid {
    gap: 65px;
  }
  .purpose-card {
    padding: 27px;
  }
}
@media (max-width: 1000px) {
  .about-hero-grid {
    gap: 28px;
    min-height: 500px;
    grid-template-columns: 1.2fr 1fr;
  }
  .about-hero-copy h1 {
    font-size: 2.8rem;
  }
  .about-hero-image {
    height: 340px;
  }
  .about-hero-image > img {
    height: 320px;
  }
  .about-image-ring {
    width: 280px;
    height: 280px;
  }
  .about-image-caption {
    font-size: 0.58rem;
  }
  .company-grid {
    gap: 40px;
  }
  .company-image {
    height: 390px;
  }
  .company-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .timeline-item {
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  }
  .timeline-card {
    padding: 24px;
  }
  .timeline-card::after {
    width: 38px;
    right: -39px;
  }
  .timeline-item:nth-child(even) .timeline-card::after {
    left: -39px;
  }
  .purpose-grid {
    gap: 16px;
  }
  .purpose-card {
    padding: 23px;
  }
  .purpose-card h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 700px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0 32px;
  }
  .about-hero-copy h1 {
    font-size: clamp(2.5rem, 7.8vw, 3.2rem);
  }
  .about-hero-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    margin-top: 21px;
  }
  .about-hero-image {
    height: 330px;
  }
  .about-hero-image > img {
    height: 310px;
    width: 340px;
    max-width: 100%;
  }
  .about-image-ring {
    width: 280px;
    height: 280px;
  }
  .about-image-caption {
    font-size: 0.6rem;
    bottom: 0;
  }
  .company-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .company-values {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  }
  .company-image {
    height: 370px;
  }
  .company-image > img {
    height: 320px;
  }
  .company-image-label {
    right: 15px;
    bottom: 20px;
    padding: 14px 18px;
  }
  .journey-heading {
    text-align: left;
    margin-bottom: 39px;
  }
  .journey-heading > p:last-child {
    margin: 20px 0 0;
  }
  .journey-heading h2 br {
    display: none;
  }
  .timeline-track {
    left: 10px;
  }
  .timeline-node {
    left: 10px;
  }
  .timeline-item {
    display: block;
    padding-left: 43px;
    margin-bottom: 24px;
  }
  .timeline-card {
    padding: 23px 21px;
  }
  .timeline-card::after,
  .timeline-item:nth-child(even) .timeline-card::after {
    left: -34px;
    right: auto;
    width: 33px;
  }
  .timeline-card h3 {
    font-size: 1.17rem;
  }
  .timeline-card > p {
    font-size: 0.87rem;
  }
  .timeline-item.is-pending .timeline-card,
  .timeline-item:nth-child(even).is-pending .timeline-card {
    transform: translateY(24px);
  }
  .timeline-item.is-revealed .timeline-card {
    transform: translateY(0);
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .purpose-card {
    padding: 28px;
  }
  .purpose-card h3 {
    font-size: 1.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item.is-pending .timeline-card,
  .timeline-item:nth-child(even).is-pending .timeline-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .timeline-node {
    animation: none;
    transition: none;
  }
  .timeline-progress {
    transform: scaleY(1);
  }
}
@media print {
  .timeline-item.is-pending .timeline-card {
    opacity: 1;
    transform: none;
  }
  .timeline-card {
    break-inside: avoid;
  }
  .utility-bar,
  .site-header,
  .button,
  .menu-toggle,
  .footer,
  .support {
    display: none;
  }
  .section {
    padding: 25px 0;
  }
  .reveal.is-pending {
    opacity: 1;
    translate: none;
  }
  .hero {
    break-after: page;
  }
  .product-card {
    break-inside: avoid;
  }
  .container {
    width: 100%;
  }
}
