﻿:root {
  --teal-dark: #0B3F3F;
  --teal-deeper: #073B3A;
  --teal: #14B8A6;
  --teal-soft: #0FA3A3;
  --gold: #C9A227;
  --bg-light: #F7F8F6;
  --text-dark: #1F2933;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text-dark);
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3 {
  margin: 0;
  color: var(--teal-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { max-width: 860px; font-size: clamp(42px, 6vw, 72px); font-weight: 900; }
h2 { max-width: 820px; font-size: clamp(31px, 4vw, 46px); font-weight: 900; }
h3 { font-size: 21px; font-weight: 900; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0B3F3F;
  color: white;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.nav-wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 300px;
}

.brand-logo {
  height: 120px;
  width: auto;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav a:hover {
  color: #FFFFFF;
  background: rgba(20, 184, 166, 0.18);
  transform: translateY(-1px);
}

.nav a.active {
  color: #0B3F3F;
  background: #C9A227;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.42), 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* HERO */
.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(20, 184, 166, 0.34), transparent 34%),
    radial-gradient(circle at 88% 68%, rgba(201, 162, 39, 0.18), transparent 30%);
  pointer-events: none;
  content: '';
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #073B3A 0%, #0B3F3F 45%, #0FA3A3 100%);
  color: white;
  border-bottom: 7px solid var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: 64px;
  align-items: center;
  padding: 112px 0 104px;
}

.hero h1,
.hero h2 { color: white; }

.hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(31, 41, 51, 0.72);
  font-size: 19px;
}

.hero-card,
.visual {
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}

.hero-card {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(201, 162, 39, 0.16);
}

.hero-card img,
.visual img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* BUTTONS */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.button.secondary {
  color: var(--teal-dark);
  background: white;
  border-color: var(--gold);
}

.button.secondary:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

.hero .button {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero .button:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero .button.secondary {
  background: white;
  color: var(--teal-dark);
}

/* SECTIONS */
.section { padding: 104px 0; }
.section.alt { background: var(--bg-light); }

.page-hero {
  padding: 98px 0 76px;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(20, 184, 166, 0.18);
}

.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 620px;
  color: rgba(31, 41, 51, 0.72);
}

.grid { display: grid; gap: 28px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 32px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.38);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.card p {
  margin-top: 12px;
  color: rgba(31, 41, 51, 0.72);
}

.card .small {
  margin-top: 12px;
  color: rgba(31, 41, 51, 0.62);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 64px;
  align-items: center;
}

.list {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 30px;
  color: rgba(31, 41, 51, 0.72);
}

.list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
  content: '';
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.metric {
  padding: 30px;
  border-right: 1px solid rgba(20, 184, 166, 0.16);
}

.metric:last-child { border-right: 0; }

.metric strong {
  display: block;
  color: var(--teal-dark);
  font-size: 25px;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(31, 41, 51, 0.70);
  font-size: 14px;
}

.notice {
  padding: 24px 26px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--text-dark);
}

.cta-band {
  padding: 66px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-deeper));
  color: white;
  border-top: 5px solid var(--gold);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.cta-band h2 { color: white; }

.cta-band p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

/* CONTACT */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-link {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: var(--teal-soft);
  font-size: 18px;
  font-weight: 900;
}

.contact-link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  padding: 50px 0;
  background: var(--teal-dark);
  color: white;
  border-top: 4px solid var(--gold);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: white;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

/* PRODUCTS */
.category-card {
  overflow: hidden;
  padding: 0;
}

.category-media {
  padding: 18px;
  background: linear-gradient(180deg, #FFFFFF, var(--bg-light));
  border-bottom: 1px solid rgba(20, 184, 166, 0.16);
}

.category-media img,
.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  background: var(--bg-light);
}

.category-content {
  padding: 24px;
}

.category-content p {
  margin-top: 10px;
}

/* RESPONSIVE */

.hero-image img {
  width: 100%;
  min-height: 460px;
  aspect-ratio: 1.12;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

@media (max-width: 930px) {
  .hero-image img {
    min-height: 340px;
    aspect-ratio: 1.35;
  }

  .nav-wrap,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
  height: 120px;
  width: auto;
  display: block;
}

  .nav {
    justify-content: flex-start;
    margin-left: 0;
  }

  .hero-grid,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.16);
  }

  .metric:last-child { border-bottom: 0; }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .hero-image img {
    min-height: 260px;
    aspect-ratio: 1.15;
  }

  .container {
    width: min(100% - 28px, 1140px);
  }

  .section,
  .page-hero {
    padding: 68px 0;
  }

  .hero-grid {
    padding: 76px 0;
  }

  .card,
  .cta-band {
    padding: 24px;
  }

  .nav a {
    padding: 9px 8px;
  }

  .brand-logo {
  height: 120px;
  width: auto;
  display: block;
}
}









.operations-visual {
  background: var(--bg-light);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.operations-visual img {
  width: 100%;
  min-height: 380px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 930px) {
  .operations-visual img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .operations-visual img {
    min-height: 240px;
  }
}

.model-visual {
  background: var(--bg-light);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.model-visual img {
  width: 100%;
  min-height: 380px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 930px) {
  .model-visual img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .model-visual img {
    min-height: 240px;
  }
}

.products-visual {
  background: var(--bg-light);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.products-visual img {
  width: 100%;
  min-height: 380px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 930px) {
  .products-visual img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .products-visual img {
    min-height: 240px;
  }
}


/* LANGUAGE SELECTOR */
.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(201, 162, 39, 0.30);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.language-selector a,
.language-selector span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 22px;
  border-radius: 6px;
}

.language-selector a:hover {
  color: #FFFFFF;
  background: rgba(20, 184, 166, 0.18);
}

.language-selector .active {
  color: var(--teal-dark);
  background: var(--gold);
}

.language-selector .language-divider {
  min-width: auto;
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 930px) {
  .language-selector {
    margin-left: 0;
  }
}






/* HOMEPAGE HEADER OVERRIDE */
.home .site-header {
  background: #14B8A6;
  color: #0B3F3F;
  border-bottom: 1px solid rgba(11, 63, 63, 0.2);
}

.home .nav a {
  color: #0B3F3F;
}

.home .nav a.active {
  background: #C9A227;
  color: #0B3F3F;
}

.home .nav a:hover {
  background: rgba(11, 63, 63, 0.15);
  color: #0B3F3F;
}

/* FORCE global logo sizing */
.brand-logo {
  height: 120px !important;
  width: auto !important;
  display: block !important;
}

.nav-wrap {
  min-height: 140px !important;
}
/* FORCE homepage header color */
body.home .site-header {
  background: #14B8A6 !important; /* lighter aquamarine */
  color: #0B3F3F !important;
  border-bottom: 1px solid rgba(11, 63, 63, 0.25);
}

body.home .nav a {
  color: #0B3F3F !important;
}

body.home .nav a.active {
  background: #C9A227 !important;
  color: #0B3F3F !important;
}

body.home .nav a:hover {
  background: rgba(11,63,63,0.15) !important;
  color: #0B3F3F !important;
}

