:root {
  --ink: #18222f;
  --muted: #5f6d78;
  --line: #dfe7ee;
  --paper: #fff8ee;
  --surface: #ffffff;
  --green: #14715f;
  --green-soft: #dff6ef;
  --gold: #f0a522;
  --gold-soft: #fff1c9;
  --blue: #1769c2;
  --blue-soft: #e3f2ff;
  --teal: #0a9292;
  --teal-soft: #dcf7f4;
  --coral: #e84d4f;
  --coral-soft: #ffe2dc;
  --rose: #c93b7c;
  --rose-soft: #ffe2ef;
  --indigo: #4f5bd5;
  --indigo-soft: #e8ebff;
  --shadow: 0 22px 60px rgba(24, 34, 47, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8ee 0%, #f0fbff 34%, #fff7fb 68%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(223, 231, 238, 0.94);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #3d4641;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--teal-soft);
  color: var(--teal);
  outline: none;
}

.site-nav a:last-child {
  background: linear-gradient(135deg, var(--teal), var(--coral));
  color: #ffffff;
}

.site-nav a:last-child:hover,
.site-nav a:last-child:focus-visible {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(52px, 8vw, 112px) clamp(18px, 5vw, 88px);
  background:
    linear-gradient(128deg, rgba(5, 116, 116, 0.95) 0%, rgba(20, 113, 95, 0.94) 32%, rgba(23, 105, 194, 0.92) 66%, rgba(232, 77, 79, 0.9) 100%),
    linear-gradient(38deg, rgba(240, 165, 34, 0.85), rgba(201, 59, 124, 0.35));
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 58% 61%, transparent 61% 100%);
  opacity: 0.72;
}

.hero-content {
  min-width: 0;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff3bf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(232, 77, 79, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.hero-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(255, 243, 191, 0.15), rgba(220, 247, 244, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-logo {
  width: min(220px, 64vw);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-contact {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-contact a {
  color: #ffffff;
  font-weight: 700;
}

.hero-branch {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-branch .panel-label {
  margin: 0;
}

.hero-branch p:not(.panel-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-branch a {
  color: #ffffff;
  font-weight: 800;
}

.section {
  width: 100%;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 88px);
}

.about-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff7e8 46%, #eaf8ff 100%);
}

.about-section .section-heading {
  display: block;
  max-width: 900px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 64px);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading h2,
.applications-copy h2,
.contact-details h2 {
  color: #14314a;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
}

.about-copy {
  min-width: 0;
  max-width: 680px;
  color: #46504a;
  font-size: 1.06rem;
}

.about-copy p {
  margin: 0 0 24px;
  text-align: left;
}

.about-copy strong {
  color: #1f2523;
  font-weight: 800;
}

.about-copy .focus-line {
  margin-bottom: 0;
  color: #36403a;
}

.story-highlight {
  display: inline;
  padding: 0.04em 0.24em;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 241, 201, 0.95), rgba(220, 247, 244, 0.95));
  color: #075f5f;
  font-weight: 900;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.story-highlight.accent {
  background:
    linear-gradient(90deg, rgba(255, 226, 220, 0.95), rgba(255, 241, 201, 0.95));
  color: #9b2426;
}

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

.metrics div,
.product-card,
.supplier-card,
.contact-form {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(31, 37, 35, 0.06);
}

.metrics div {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 22px;
  border-color: rgba(10, 146, 146, 0.18);
  background:
    linear-gradient(145deg, #ffffff 0%, var(--teal-soft) 100%);
}

.metrics div::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.metrics div:nth-child(2) {
  border-color: rgba(240, 165, 34, 0.28);
  background:
    linear-gradient(145deg, #ffffff 0%, var(--gold-soft) 100%);
}

.metrics div:nth-child(2)::before {
  background: var(--gold);
}

.metrics div:nth-child(3) {
  border-color: rgba(232, 77, 79, 0.24);
  background:
    linear-gradient(145deg, #ffffff 0%, var(--coral-soft) 100%);
}

.metrics div:nth-child(3)::before {
  background: var(--coral);
}

.metrics strong {
  display: block;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metrics div:nth-child(2) strong {
  color: #b87600;
}

.metrics div:nth-child(3) strong {
  color: var(--coral);
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.products-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #eefaff 100%);
}

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

.product-card {
  --card-accent: var(--teal);
  --card-soft: var(--teal-soft);
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 24px;
  border-color: color-mix(in srgb, var(--card-accent) 28%, var(--line));
  background:
    linear-gradient(180deg, #ffffff 0%, var(--card-soft) 155%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--card-accent);
  content: "";
}

.product-card:nth-child(2) {
  --card-accent: var(--coral);
  --card-soft: var(--coral-soft);
}

.product-card:nth-child(3) {
  --card-accent: var(--blue);
  --card-soft: var(--blue-soft);
}

.product-card:nth-child(4) {
  --card-accent: var(--gold);
  --card-soft: var(--gold-soft);
}

.product-card:nth-child(5) {
  --card-accent: var(--rose);
  --card-soft: var(--rose-soft);
}

.product-card:nth-child(6) {
  --card-accent: var(--indigo);
  --card-soft: var(--indigo-soft);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(24, 34, 47, 0.12);
}

.product-card h3 {
  color: var(--card-accent);
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.applications-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, #fff8ee 0%, #f1fff7 46%, #f7f0ff 100%);
}

.applications-copy {
  min-width: 0;
  max-width: 780px;
}

.applications-copy > p {
  max-width: 620px;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.application-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.application-list span {
  --chip-accent: var(--teal);
  --chip-soft: var(--teal-soft);
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-color: color-mix(in srgb, var(--chip-accent) 30%, var(--line));
  border-radius: 6px;
  background: var(--chip-soft);
  color: var(--chip-accent);
  font-weight: 800;
}

.application-list span:nth-child(6n + 2) {
  --chip-accent: var(--coral);
  --chip-soft: var(--coral-soft);
}

.application-list span:nth-child(6n + 3) {
  --chip-accent: var(--blue);
  --chip-soft: var(--blue-soft);
}

.application-list span:nth-child(6n + 4) {
  --chip-accent: #b87600;
  --chip-soft: var(--gold-soft);
}

.application-list span:nth-child(6n + 5) {
  --chip-accent: var(--rose);
  --chip-soft: var(--rose-soft);
}

.application-list span:nth-child(6n + 6) {
  --chip-accent: var(--indigo);
  --chip-soft: var(--indigo-soft);
}

.strength-list {
  display: grid;
  gap: 14px;
}

.strength-list article {
  --strength-accent: var(--teal);
  padding: 22px;
  border: 1px solid var(--line);
  border-color: color-mix(in srgb, var(--strength-accent) 25%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, color-mix(in srgb, var(--strength-accent) 10%, #ffffff) 100%);
  box-shadow: 0 10px 32px rgba(31, 37, 35, 0.06);
}

.strength-list article:nth-child(2) {
  --strength-accent: var(--gold);
}

.strength-list article:nth-child(3) {
  --strength-accent: var(--coral);
}

.strength-list h3 {
  color: var(--strength-accent);
}

.strength-list p {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.suppliers-section {
  background:
    linear-gradient(135deg, #fff0dc 0%, #ecfbff 48%, #fff1f7 100%);
}

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

.supplier-card {
  --supplier-accent: var(--teal);
  --supplier-soft: var(--teal-soft);
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-color: color-mix(in srgb, var(--supplier-accent) 30%, var(--line));
  background:
    linear-gradient(160deg, #ffffff 0%, var(--supplier-soft) 140%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.supplier-card:nth-child(4n + 2) {
  --supplier-accent: var(--blue);
  --supplier-soft: var(--blue-soft);
}

.supplier-card:nth-child(4n + 3) {
  --supplier-accent: var(--coral);
  --supplier-soft: var(--coral-soft);
}

.supplier-card:nth-child(4n + 4) {
  --supplier-accent: var(--gold);
  --supplier-soft: var(--gold-soft);
}

.supplier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(24, 34, 47, 0.12);
}

.supplier-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--supplier-accent);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.supplier-card h3 {
  color: var(--supplier-accent);
  color: color-mix(in srgb, var(--supplier-accent) 86%, #102035);
}

.supplier-card p {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.supplier-card.featured {
  border-color: rgba(10, 146, 146, 0.42);
  background:
    linear-gradient(145deg, #ffffff 0%, var(--teal-soft) 115%);
}

.supplier-card.featured span {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #ffffff;
}

.network-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(132deg, #096c6c 0%, #14715f 36%, #1769c2 68%, #c93b7c 100%);
  color: #ffffff;
}

.network-map {
  opacity: 0.4;
  filter: saturate(1.35) contrast(1.08);
}

.network-content {
  min-width: 0;
  max-width: 760px;
}

.branch-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.branch-highlight strong {
  --branch-accent: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: var(--branch-accent);
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.1;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.branch-highlight strong:first-child {
  grid-column: 1 / -1;
  min-height: 96px;
  background: linear-gradient(135deg, rgba(240, 165, 34, 0.98), rgba(232, 77, 79, 0.95));
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.branch-highlight strong:nth-child(2) {
  --branch-accent: rgba(10, 146, 146, 0.72);
}

.branch-highlight strong:nth-child(3) {
  --branch-accent: rgba(23, 105, 194, 0.68);
}

.branch-highlight strong:nth-child(4) {
  --branch-accent: rgba(201, 59, 124, 0.68);
}

.branch-highlight strong:nth-child(5) {
  --branch-accent: rgba(20, 113, 95, 0.72);
}

.network-note {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 600;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, #ffffff 0%, #f0fbff 46%, #fff8ee 100%);
}

.contact-details > p {
  min-width: 0;
  max-width: 560px;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  border-bottom-color: color-mix(in srgb, var(--teal) 28%, var(--line));
}

.contact-list dt {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: #36403a;
  font-weight: 600;
}

.contact-list dd span,
.contact-list dd a {
  display: inline-block;
}

.contact-list dd span {
  margin-right: 10px;
}

.contact-list a:hover {
  color: var(--coral);
}

.map-embed {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 3;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 194, 0.22);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 105, 194, 0.12);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 126px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(10, 146, 146, 0.24);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fdff 100%);
  box-shadow: 0 18px 46px rgba(24, 34, 47, 0.11);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #39443d;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e4ee;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8792;
  opacity: 1;
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%),
    #fbfcfa;
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    100% 0;
  background-size:
    6px 6px,
    6px 6px,
    2.5em 100%;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(10, 146, 146, 0.16);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--coral);
  background: #fff7f7;
}

.form-section-title {
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.order-fields[hidden] {
  display: none;
}

.order-fields {
  display: grid;
  gap: 16px;
}

.form-section-title h3 {
  color: var(--blue);
  font-size: 1rem;
}

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

.form-message {
  border-radius: 6px;
  padding: 14px 16px;
  font-weight: 700;
}

.form-message p {
  margin: 0;
}

.form-message p + p {
  margin-top: 6px;
}

.form-message.success {
  border: 1px solid rgba(10, 146, 146, 0.3);
  background: var(--teal-soft);
  color: #075f5f;
}

.form-message.error {
  border: 1px solid rgba(232, 77, 79, 0.34);
  background: var(--coral-soft);
  color: #8d1d1f;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 88px);
  border-top: 1px solid rgba(10, 146, 146, 0.18);
  color: #526372;
  background:
    linear-gradient(135deg, #ffffff 0%, #fff5df 50%, #eaf8ff 100%);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-meta a {
  color: var(--teal);
  font-weight: 800;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--coral);
  outline: none;
}

@media (max-width: 940px) {
  .hero,
  .about-grid,
  .applications-section,
  .network-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    color: var(--ink);
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding: 48px 24px 54px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 14vw, 3.45rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

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

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

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

  .metrics,
  .product-grid,
  .supplier-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
  }

  .about-grid,
  .applications-section,
  .network-section,
  .contact-section {
    gap: 24px;
  }

  .metrics div,
  .product-card,
  .supplier-card,
  .strength-list article {
    padding: 20px;
  }

  .product-card,
  .supplier-card {
    min-height: auto;
  }

  .branch-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .branch-highlight strong,
  .branch-highlight strong:first-child {
    min-height: 64px;
    font-size: 1.45rem;
  }

  .hero-panel {
    padding: 20px;
    min-width: 0;
  }

  .hero-logo {
    width: min(132px, 42vw);
  }

  .site-footer {
    display: grid;
  }

  .footer-meta {
    text-align: left;
  }

  .contact-form {
    margin-top: 0;
    padding: 20px;
    gap: 14px;
  }

  .contact-list {
    gap: 14px;
    margin-top: 24px;
  }

  .map-embed {
    margin-top: 22px;
  }

  .contact-form label {
    gap: 8px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 48px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-form textarea {
    min-height: 128px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-form .button {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
  }

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

@media (max-width: 430px) {
  .brand span {
    max-width: 235px;
  }

  .section,
  .contact-section,
  .network-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-form {
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .hero-content,
  .hero-panel,
  .about-copy,
  .section-heading,
  .network-content,
  .contact-details,
  .contact-form {
    width: 100%;
    max-width: none;
  }

  .hero-content,
  .hero-panel,
  .about-grid,
  .metrics,
  .product-grid,
  .applications-section,
  .strength-list,
  .supplier-grid,
  .network-section,
  .branch-highlight,
  .contact-section,
  .contact-form {
    width: 100%;
  }

  .section-heading.compact,
  .about-section .section-heading {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .brand small {
    display: none;
  }

  .brand span {
    max-width: 190px;
  }

  h1 {
    font-size: 2.35rem;
  }
}
