:root {
  color-scheme: light;
  --ink: #10222a;
  --muted: #60707a;
  --paper: #f6f7f3;
  --surface: #ffffff;
  --surface-2: #edf3ef;
  --line: #dce3dd;
  --primary: #0f5b55;
  --primary-dark: #083b3d;
  --accent: #c99a2e;
  --accent-soft: #fff4d5;
  --shadow: 0 24px 70px rgba(10, 35, 42, 0.12);
  font-family: 'Dosis', sans-serif;
  --gutter: 1rem;
}

* {
  box-sizing: border-box;
}

/* Remove touch highlight on mobile and preserve keyboard focus styles */
*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 100%);
  padding: 0 var(--gutter);
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  :root { --gutter: 1.5rem; }
}

@media (min-width: 1200px) {
  :root { --gutter: 2rem; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 243, 0.94);
  border-bottom: 1px solid rgba(16, 34, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 150px;
  height: 98px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-2);
  color: var(--primary-dark);
}

.site-nav .nav-cta {
  background: var(--primary-dark);
  color: #ffffff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--primary);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  font-size: 0;
}

.nav-toggle-bar {
  display: none;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
  transition: box-shadow 0.2s ease, top 0.2s ease, transform 0.2s ease;
}

.nav-toggle::before {
  top: 15px;
  box-shadow: 0 6px 0 currentColor;
}

.nav-toggle::after {
  top: 27px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: 0 0 0 transparent;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
}

.hero-home {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/Oil-and-gas-Contracting.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  opacity: 1;
  transition: opacity 1.1s ease;
}

.hero-media-next {
  opacity: 0;
}

.hero-media-next.is-visible {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 27, 0.9) 0%, rgba(6, 24, 27, 0.72) 43%, rgba(6, 24, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 24, 27, 0.65), rgba(6, 24, 27, 0.05));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 1.5rem;
  padding: 5rem 0 3rem;
}

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

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

.hero h1,
.section h2,
.page-hero-content h1 {
  margin-bottom: 1rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.9rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  /* background: var(--accent); */
  background-color: #582902;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(201, 154, 46, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.section .btn-secondary,
.cta-strip .btn-secondary {
  border-color: rgba(15, 91, 85, 0.18);
  background: #ffffff;
  color: var(--primary-dark);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 1.25rem;
  background: rgba(5, 23, 27, 0.44);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  line-height: 1.35;
}

.hero-grid,
.section-grid,
.stats-grid,
.products-grid,
.offerings-grid,
.contact-grid,
.values-grid,
.grid-2,
.quick-links,
.process-steps,
.intro-grid,
.process-layout,
.cta-inner {
  display: grid;
  gap: 1rem;
}

.section {
  padding: 3rem 0;
}

.section-alt,
.intro-band {
  background: var(--surface);
}

.trade-overview {
  position: relative;
  overflow: hidden;
  margin-top: 1.75rem;
  background:
    linear-gradient(135deg, rgba(237, 243, 239, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 92% 12%, rgba(201, 154, 46, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(15, 91, 85, 0.08), transparent 44%);
  color: var(--ink);
}

.trade-overview::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent));
}

.trade-overview .container {
  position: relative;
  z-index: 1;
}

.section-deep {
  background: var(--primary-dark);
  color: #ffffff;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.split-header {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

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

.section-header p,
.section p,
.value-card p,
.product-card p,
.offering-card p,
.step p,
.contact-details div {
  color: var(--muted);
  line-height: 1.72;
}

.section-deep .section-header p,
.section-deep .step p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid {
  grid-template-columns: 1fr 0.85fr;
  align-items: end;
}

.intro-grid p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.trade-overview h2 {
  color: var(--ink);
}

.trade-overview p {
  color: var(--muted);
}

.intro-copy-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(10, 35, 42, 0.08);
  backdrop-filter: blur(12px);
}

.intro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.intro-proof-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 91, 85, 0.14);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.capability-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 243, 0.94), rgba(237, 243, 239, 0.96)),
    url("images/Zuidwending.jpg") center/cover;
}

.capability-section .section-header {
  max-width: 860px;
}

.capability-section .stats-grid {
  align-items: stretch;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

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

.product-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  justify-items: stretch;
}

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

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

.values-grid,
.grid-2,
.quick-links,
.contact-grid,
.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.offering-card,
.value-card,
.stat-card,
.contact-form,
.section .grid-2 > div,
.quick-link-btn {
  border: 1px solid rgba(16, 34, 42, 0.06);
  border-radius: 10px;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(10, 35, 42, 0.04);
}

.product-showcase article.product-card {
  min-height: 100%;
}

.product-card h3,
.offering-card h3,
.value-card h3,
.section .grid-2 > div h3,
.quick-link-btn strong,
.step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.capability-section .stat-card,
.buyer-section .grid-2 > div,
.coverage-section .value-card,
.inquiry-section .quick-link-btn {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.capability-section .stat-card::before,
.buyer-section .grid-2 > div::before,
.coverage-section .value-card::before,
.inquiry-section .quick-link-btn::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.buyer-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(237, 243, 239, 0.94)),
    url("images/MG_5964.jpg") center/cover;
}

.buyer-section .grid-2 > div {
  min-height: 210px;
}

.inquiry-section {
  background: var(--paper);
}

.inquiry-section .quick-link-btn {
  min-height: 170px;
}

.coverage-section {
  background:
    linear-gradient(90deg, rgba(8, 59, 61, 0.94), rgba(8, 59, 61, 0.82)),
    url("images/1631117475764.jpg") center/cover;
  color: #ffffff;
}

.coverage-section h2,
.coverage-section h3 {
  color: #ffffff;
}

.coverage-section p {
  color: rgba(255, 255, 255, 0.75);
}

.coverage-section .value-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.coverage-section .value-card p {
  color: rgba(255, 255, 255, 0.72);
}

.product-detail-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-visual {
  position: relative;
  height: 176px;
  min-height: 176px;
  overflow: hidden;
  background: var(--primary-dark);
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-detail-card:hover .product-visual img {
  transform: scale(1.045);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 59, 61, 0.04), rgba(8, 59, 61, 0.42));
}

.product-visual-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201, 154, 46, 0.32), rgba(8, 59, 61, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  color: #ffffff;
  padding: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.product-visual-fallback > span:not(.product-badge) {
  position: relative;
  z-index: 1;
}

.product-badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  z-index: 1;
  border-radius: 6px;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 0.4rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-body p {
  margin-bottom: 0;
}

/* FAQ accordion styles */
.faq {
  display: block;
  max-width: 100%;
}

.faq details {
  border: 1px solid rgba(16,34,42,0.06);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(10, 35, 42, 0.04);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq summary::after {
  content: "\25BE";
  display: inline-block;
  margin-left: 1rem;
  transition: transform 0.2s ease;
  color: var(--primary);
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

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

.faq details[open] summary { color: var(--primary); }

.faq p { margin: 0.65rem 0 0; color: var(--muted); }

/* Background pattern utilities */
.blueprint-pattern {
  background-color: #0f172a;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.polka-dot-pattern {
  background-color: #f8fafc;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 24px 24px;
}

.chevron-pattern {
  background-color: #ffffff;
  background-image: 
    linear-gradient(135deg, #f1f5f9 25%, transparent 25%), 
    linear-gradient(225deg, #f1f5f9 25%, transparent 25%), 
    linear-gradient(45deg, #f1f5f9 25%, transparent 25%), 
    linear-gradient(315deg, #f1f5f9 25%, #ffffff 25%);
  background-position: 20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
}

.product-card h3,
.offering-card h3,
.value-card h3,
.section .grid-2 > div h3,
.quick-link-btn strong,
.step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.product-card p:last-child,
.offering-card p:last-child,
.value-card p:last-child,
.step p:last-child {
  margin-bottom: 0;
}

.product-note {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #7a5711;
  font-size: 0.82rem;
  font-weight: 700;
}

.offering-card {
  padding: 0;
  overflow: hidden;
}

.offering-card h3,
.offering-card p,
.offering-card ul {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}

.offering-card ul {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.offering-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 1.35rem;
}

.process-layout {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

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

.step {
  position: relative;
  padding-left: 4.4rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #101510;
  font-weight: 700;
}

.section-deep .step-number {
  background: rgba(201, 154, 46, 0.95);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 27, 0.86), rgba(6, 24, 27, 0.46)),
    linear-gradient(0deg, rgba(6, 24, 27, 0.7), rgba(6, 24, 27, 0.05));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 0 4rem;
  color: #ffffff;
}

.page-hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.65;
}

.stat-card {
  display: grid;
  gap: 0.45rem;
}

.stat-card strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.stat-card span,
.quick-link-btn span {
  color: var(--muted);
}

.quick-link-btn {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.quick-link-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(246, 247, 243, 0.95), rgba(246, 247, 243, 0.86)),
    url("images/240320_G2K_Gasunie_028_HR_V4 banner.jpg") center/cover;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel {
  align-self: stretch;
  border-radius: 8px;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.contact-panel > p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-details div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.contact-panel .contact-details div {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel .contact-details strong {
  color: #ffffff;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.contact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-metrics div {
  border-radius: 8px;
  background: rgba(201, 154, 46, 0.16);
  padding: 1rem;
}

.contact-metrics strong,
.contact-metrics span {
  display: block;
}

.contact-metrics span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.contact-checklist {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.5rem;
}

.contact-checklist ul {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.contact-form-large {
  padding: 2rem;
}

.form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-heading p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: right;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 91, 85, 0.12);
  outline: none;
}

.contact-form select {
  min-height: 52px;
}

.contact-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.65rem 0 0;
  font-weight: 700;
}

.form-status.success {
  color: var(--primary);
}

.form-status.error {
  color: #a43d2a;
}

.map-section {
  background: var(--paper);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 1.5rem;
  align-items: stretch;
}

.map-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 16px 44px rgba(10, 35, 42, 0.06);
}

.map-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.map-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.map-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.map-points span {
  border: 1px solid rgba(15, 91, 85, 0.18);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary-dark);
  padding: 0.55rem 0.8rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.mini-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.mini-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.cta-strip {
  background: var(--surface);
}

.cta-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 1.6rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-dark);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 16px 34px rgba(8, 59, 61, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Tablet responsive styles start here */
@media (max-width: 1020px) {
  .hero-layout,
  .intro-grid,
  .process-layout,
  .cta-inner,
  .section-grid,
  .contact-grid,
  .contact-shell,
  .map-shell,
  .product-showcase {
    grid-template-columns: 1fr;
  }

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

  .products-grid,
  .offerings-grid,
  .values-grid,
  .grid-2,
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile responsive styles start here */
@media (max-width: 720px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.4rem 0;
  }

  .brand {
    width: 150px;
    height: 58px;
    overflow: hidden;
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
    height: 58px;
    object-position: left center;
    transform: scale(1.85);
    transform-origin: left center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
  }

  .site-nav {
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.45rem 0 0.7rem;
    border-top: 1px solid rgba(16, 34, 42, 0.08);
  }

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

  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero-home {
    min-height: calc(100svh - 70px);
    align-items: center;
  }

  .hero-layout {
    padding: 3rem 0;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(2rem, 7vw, 2.55rem);
    line-height: 1.06;
  }

  .hero p {
    max-width: 38rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-panel,
  .intro-proof-grid,
  .products-grid,
  .offerings-grid,
  .values-grid,
  .grid-2,
  .quick-links,
  .stats-grid,
  .product-showcase,
  .process-steps,
  .process-steps.compact,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .section-grid,
  .stats-grid,
  .products-grid,
  .offerings-grid,
  .contact-grid,
  .values-grid,
  .grid-2,
  .quick-links,
  .process-steps,
  .intro-grid,
  .process-layout,
  .cta-inner,
  .contact-shell,
  .map-shell {
    gap: 1rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .trade-overview {
    margin-top: 1rem;
  }

  .section-header {
    margin-bottom: 1.35rem;
  }

  .section h2 {
    font-size: clamp(1.8rem, 6.8vw, 2.35rem);
    line-height: 1.08;
  }

  .section-header p,
  .section p,
  .value-card p,
  .product-card p,
  .offering-card p,
  .step p,
  .contact-details div {
    line-height: 1.58;
  }

  .split-header {
    display: grid;
    align-items: start;
    gap: 0.85rem;
  }

  .product-card,
  .value-card,
  .stat-card,
  .contact-form,
  .section .grid-2 > div,
  .quick-link-btn,
  .intro-copy-panel {
    padding: 1.15rem;
  }

  .product-card.featured {
    min-height: 240px;
  }

  .offering-card h3,
  .offering-card p,
  .offering-card ul {
    margin-left: 1.1rem;
    margin-right: 1.1rem;
  }

  .offering-card img {
    height: 190px;
    margin-bottom: 1rem;
  }

  .product-card h3,
  .offering-card h3,
  .value-card h3,
  .section .grid-2 > div h3,
  .quick-link-btn strong,
  .step h3 {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .intro-proof-grid span {
    min-height: 54px;
  }

  .buyer-section .grid-2 > div,
  .inquiry-section .quick-link-btn {
    min-height: auto;
  }

  .step {
    padding-left: 3.35rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .page-hero {
    min-height: 300px;
    align-items: center;
  }

  .page-hero-content {
    padding: 2.5rem 0;
  }

  .page-hero-content h1 {
    max-width: 560px;
    font-size: clamp(2rem, 7.5vw, 2.8rem);
    line-height: 1.08;
  }

  .page-hero-content p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .footer-inner,
  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .footer-inner {
    width: 100%;
  }

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

  .contact-panel h2,
  .form-heading h2,
  .map-copy h2 {
    font-size: clamp(1.75rem, 6.8vw, 2.35rem);
    line-height: 1.08;
  }

  .contact-details,
  .contact-checklist {
    margin-top: 1.15rem;
  }

  .contact-panel,
  .contact-form-large,
  .map-copy {
    padding: 1.25rem;
  }

  .mini-map,
  .mini-map iframe {
    min-height: 280px;
  }

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

  .form-heading {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
  }

  .form-heading p {
    max-width: none;
    text-align: left;
  }

  .map-points {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .map-points span {
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    font-size: 0.84rem;
  }

  .site-footer {
    padding: 1.25rem 0;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

/* Small phone responsive styles start here */
@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 132px;
    height: 52px;
  }

  .brand-logo {
    width: 132px;
    height: 52px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .site-nav {
    padding-bottom: 0.55rem;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 0.85rem;
  }

  .hero-layout {
    padding: 2.5rem 0;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
  }

  .page-hero-content h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .section h2,
  .contact-copy h2,
  .map-copy h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .product-card,
  .offering-card,
  .value-card,
  .stat-card,
  .section .grid-2 > div,
  .quick-link-btn,
  .contact-panel,
  .contact-form-large,
  .map-copy {
    padding: 1rem;
  }

  .section {
    padding: 2.35rem 0;
  }

  .section-header {
    margin-bottom: 1.1rem;
  }

  .hero-grid,
  .section-grid,
  .stats-grid,
  .products-grid,
  .offerings-grid,
  .contact-grid,
  .values-grid,
  .grid-2,
  .quick-links,
  .process-steps,
  .intro-grid,
  .process-layout,
  .cta-inner,
  .contact-shell,
  .map-shell {
    gap: 0.8rem;
  }

  .offering-card img {
    height: 165px;
  }

  .offering-card h3,
  .offering-card p,
  .offering-card ul {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .step {
    padding-left: 0;
    padding-top: 3rem;
  }

  .step-number {
    width: 38px;
    height: 38px;
  }

  .page-hero {
    min-height: 270px;
  }

  .page-hero-content {
    padding: 2.25rem 0;
  }

  .page-hero-content p {
    font-size: 0.94rem;
  }

  .mini-map,
  .mini-map iframe {
    min-height: 240px;
  }
}

main {
  position: relative;
  z-index: 1;
}
