:root {
  --bg: #f4f8f6;
  --text: #102024;
  --muted: #5d6e72;
  --primary: #0d5c4f;
  --primary-dark: #0a3e46;
  --accent: #1d4f91;
  --card: #ffffff;
  --line: #d7e3df;
  --line-dark: rgba(255,255,255,.14);
  --shadow: 0 18px 50px rgba(7, 28, 25, 0.12);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --radius-lg: 30px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(15, 23, 32, .06);
  padding: 2px 6px;
  border-radius: 6px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
}
.skip-link:focus {
  left: 10px;
  z-index: 1000;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 34px 0 72px; }
.alt-bg { background: #edf4f1; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow-light { color: rgba(255,255,255,.84); }
h1, h2, h3 { line-height: 1.08; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 16px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 246, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 227, 223, 0.8);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo { width: 58px; height: 58px; }
.brand-name { font-weight: 900; font-size: 1.04rem; }
.brand-tag { color: var(--muted); font-size: .9rem; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a { color: var(--muted); font-weight: 700; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--primary); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
  border: 1px solid transparent;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
}
.btn-small { padding: 12px 18px; }
.desktop-cta { display: inline-flex; }
.mobile-cta { display: none; }

.nav-cta:hover, .btn:hover { transform: translateY(-1px); }

.hero-banner {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #0b1c1f;
}
.hero-banner__bg,
.hero-banner__overlay {
  position: absolute;
  inset: 0;
}
.hero-banner__bg {
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-banner__overlay {
  background:
    linear-gradient(90deg, rgba(9,22,25,.84) 0%, rgba(9,22,25,.64) 42%, rgba(9,22,25,.24) 100%),
    linear-gradient(180deg, rgba(9,22,25,.25) 0%, rgba(9,22,25,.62) 100%);
}
.hero-banner__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  align-items: end;
  gap: 28px;
  padding-top: 96px;
  padding-bottom: 54px;
}
.hero-panel {
  max-width: 720px;
  color: #fff;
}
.hero-panel h1 { color: #fff; max-width: 12ch; }
.hero-lead {
  color: rgba(240, 246, 243, 0.88);
  font-size: 1.08rem;
  max-width: 56ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }

.contact-inline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.contact-inline--hero {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
}
.contact-inline--hero li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(244, 249, 246, .98);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.contact-inline--hero strong {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(226, 242, 236, .78);
}
.contact-inline--hero span { font-weight: 700; font-size: .98rem; }

.hero-floating-card {
  justify-self: end;
  width: min(100%, 360px);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  color: #fff;
}
.mini-label {
  color: rgba(226,242,236,.76);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-stats {
  display: grid;
  gap: 14px;
}
.stat-chip {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4,15,18,.28);
  border: 1px solid rgba(255,255,255,.08);
}
.stat-chip strong { color: #fff; font-size: 1rem; }
.stat-chip span { color: rgba(234, 244, 240, .78); font-size: .95rem; }

.stats-grid, .cards-grid, .exports-grid, .process-grid, .contact-grid, .two-col, .gallery-grid {
  display: grid;
  gap: 22px;
}
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.cards-grid { grid-template-columns: repeat(2, 1fr); }
.exports-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid, .two-col { grid-template-columns: 1fr 1fr; align-items: center; }

.stat-card, .service-card, .export-card, .process-grid article, .contact-form, .image-card, .page-hero .container {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card, .service-card, .process-grid article { padding: 28px; }

.image-card { overflow: hidden; }
.image-meta { padding: 18px 20px 22px; }
.image-meta p { margin-bottom: 0; }
.small-card { max-width: 520px; margin-left: auto; }

.bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.bullet-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 92, 79, .08);
  border: 1px solid rgba(13, 92, 79, .12);
  color: var(--primary);
  font-weight: 700;
}

.export-card { overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.export-card img { width: 100%; height: auto; }
.export-card h3, .export-card p { padding: 0 22px; }
.export-card h3 { margin-top: 18px; }
.export-card p { padding-bottom: 22px; }

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(13, 92, 79, .1);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}
.section-intro { max-width: 72ch; }

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-grid--large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-shot {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.gallery-shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-shot:hover img { transform: scale(1.04); }

.contact-section { background: linear-gradient(180deg, #f4f8f6 0%, #edf4f1 100%); }
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c7d6d1;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(29, 79, 145, .18);
  border-color: var(--accent);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.turnstile-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.form-note { font-size: .95rem; margin: 0; }
.contact-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}
.socials a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.socials img { width: 22px; height: 22px; }
.socials--footer { margin-top: 0; }

.page-hero {
  padding: 120px 0 32px;
  background:
    radial-gradient(circle at top left, rgba(29,79,145,.12), transparent 40%),
    radial-gradient(circle at top right, rgba(13,92,79,.12), transparent 35%);
}
.page-hero .container {
  padding: 36px;
}

.gallery-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.site-footer {
  background: #0f1720;
  color: #e9f0f4;
  padding: 28px 0;
}
.footer-wrap, .footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-wrap p { margin: 4px 0 0; color: #d8e2e6; }
.footer-meta span { color: #d8e2e6; }

.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(7, 14, 18, 0.84);
  display: grid;
  place-items: center;
  padding: 28px;
}
.lightbox__img {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 1024px) {
  .hero-banner__content,
  .contact-grid,
  .two-col,
  .stats-grid,
  .cards-grid,
  .exports-grid,
  .process-grid,
  .gallery-grid,
  .gallery-grid--large {
    grid-template-columns: 1fr;
  }
  .hero-floating-card {
    justify-self: start;
    width: 100%;
    max-width: 520px;
  }
  .contact-inline--hero { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .desktop-cta { display: none; }
  .mobile-cta { display: inline-flex; margin-top: 10px; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav.is-open { display: flex; }
}
@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .hero-banner { min-height: 760px; }
  .hero-banner__content {
    padding-top: 98px;
    padding-bottom: 38px;
  }
  .hero-panel h1 { max-width: 11ch; }
  .btn-secondary {
    color: #fff;
    background: rgba(255,255,255,.12);
  }
  .section-head { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .brand-tag { display: none; }
  .brand-logo { width: 50px; height: 50px; }
  .nav-wrap { min-height: 76px; }
  .page-hero { padding-top: 100px; }
  .page-hero .container { padding: 26px; }
  .lightbox { padding: 20px; }
  .lightbox__prev, .lightbox__next { display: none; }
}