/* ===========================================================
   Chremon Industries — marketing site
   Palette: deep forest green, warm cream, gold accent
   Type: Fraunces (display serif) + Inter (body sans)
   =========================================================== */

:root {
  --green-900: #0a2f1a;
  --green-700: #0f4d2a;
  --green-600: #1f6b3a;
  --green-500: #2a8a4a;
  --green-100: #eaf1e3;
  --green-50:  #f3f7ee;

  --gold-600: #b08413;
  --gold-500: #c9a227;
  --gold-100: #f5ecc8;

  --ink-900: #0f1a10;
  --ink-700: #1a2419;
  --ink-500: #4a5a48;
  --ink-400: #6e7c6b;

  --cream:    #faf7f0;
  --cream-2:  #f3efe3;
  --white:    #ffffff;

  --border:   rgba(15, 77, 42, 0.12);
  --border-2: rgba(15, 77, 42, 0.22);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(15, 26, 16, 0.05), 0 2px 8px rgba(15, 26, 16, 0.04);
  --shadow:    0 6px 24px rgba(15, 26, 16, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 26, 16, 0.14);

  --container: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}
a:hover { color: var(--green-900); }

::selection { background: var(--gold-100); color: var(--ink-900); }

/* -------- Layout primitives -------- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--cream-2); }
.section--dark {
  background: var(--green-900);
  color: #dfe9db;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--green-700);
}
.skip-link:focus { left: 1rem; top: 1rem; outline: 2px solid var(--green-700); }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; font-variation-settings: "opsz" 14; }
h4 { font-size: 1rem; font-weight: 600; font-variation-settings: "opsz" 14; }

p { margin: 0 0 1rem; }

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 0.9rem;
}
.kicker--light { color: var(--gold-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid var(--border-2);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 1.25rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(31, 138, 61, 0.2);
}

.accent { color: var(--green-700); font-style: italic; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 48px; width: auto; max-width: 260px; }

.nav ul {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1.4rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  color: var(--ink-700); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover { color: var(--green-700); border-color: var(--gold-500); }

@media (max-width: 780px) {
  .nav { display: none; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  background: var(--green-700);
  color: #fff !important;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none !important;
  border: 1.5px solid var(--green-700);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(15, 77, 42, 0.2);
}
.btn:hover { background: var(--green-900); border-color: var(--green-900); box-shadow: var(--shadow); }
.btn:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--green-700) !important;
  border-color: var(--border-2);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--green-100);
  border-color: var(--green-700);
  color: var(--green-900) !important;
}
.btn--small { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--on-dark { background: var(--gold-500); color: var(--ink-900) !important; border-color: var(--gold-500); }
.btn--on-dark:hover { background: var(--gold-600); border-color: var(--gold-600); color: #fff !important; }
.btn--ghost.btn--on-dark {
  background: transparent;
  color: var(--cream) !important;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost.btn--on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--cream);
  color: #fff !important;
}
.btn-arrow { transition: transform 0.15s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* -------- HERO -------- */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -10% -10% auto auto;
  height: 420px; width: 420px;
  background: radial-gradient(closest-side, rgba(31, 138, 61, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}
.hero h1 { margin-bottom: 1.25rem; }
.lede {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.hero-proof {
  list-style: none; margin: 0; padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .hero-proof { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.hero-proof li {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.35;
}
.hero-proof span {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--green-700);
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-media figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(10, 47, 26, 0.72);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* -------- Stats band -------- */
.stats {
  background: var(--green-900);
  color: var(--cream);
  padding: 1.75rem 0;
}
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-500);
  margin: 0 0 0.1rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.8);
  margin: 0;
  letter-spacing: 0.02em;
}

/* -------- About -------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}
.about-intro h2 { max-width: 14ch; }
.about-body p { color: var(--ink-500); max-width: 62ch; }
.about-signature {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-signature::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

/* -------- Section head shared -------- */
.section-head {
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.section-head .kicker { justify-content: center; }
.section-intro {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin: 0.25rem 0 0;
}

/* -------- Cards (What we do) -------- */
.cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.card-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card-ico svg { width: 22px; height: 22px; }
.card h3 { margin: 0 0 0.35rem; }
.card p { color: var(--ink-500); font-size: 0.95rem; margin: 0; }

/* -------- Products -------- */
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.product h3 {
  font-size: 1.3rem;
  margin: 0.3rem 0 0.45rem;
  font-weight: 700;
}
.product p {
  color: var(--ink-500);
  font-size: 0.92rem;
  margin: 0;
}
.product-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  border: 1px solid var(--border-2);
}
.product-tag--ins { background: #fbe9df; color: #a6431a; border-color: rgba(166, 67, 26, 0.2); }
.product-tag--fung { background: #e9f2f8; color: #1d4e78; border-color: rgba(29, 78, 120, 0.2); }
.product-tag--equip { background: var(--gold-100); color: var(--gold-600); border-color: rgba(176, 132, 19, 0.25); }

.product-note {
  margin: 2rem auto 0;
  max-width: 62ch;
  text-align: center;
  color: var(--ink-400);
  font-size: 0.875rem;
}

/* -------- Reach -------- */
.reach-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .reach-grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 4rem; }
}
.section--dark h2 { color: var(--cream); }
.reach-lede { color: rgba(250, 247, 240, 0.75); max-width: 36ch; font-size: 1.05rem; }

.locations {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .locations { grid-template-columns: repeat(4, 1fr); } }
.locations li {
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.locations strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.locations span {
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.6);
  letter-spacing: 0.02em;
}
.loc-soon { border-style: dashed; border-color: rgba(201, 162, 39, 0.4); }
.loc-soon span { color: var(--gold-500); font-weight: 600; }

/* -------- Vision -------- */
.vision { background: var(--cream-2); }
.vision-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vision-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.3;
  color: var(--ink-900);
  max-width: 30ch;
  margin: 0.25rem auto 2.75rem;
  letter-spacing: -0.01em;
}
.values {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1000px) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li {
  padding: 1.1rem 0 0;
  border-top: 2px solid var(--green-700);
}
.values h4 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.values p { color: var(--ink-500); font-size: 0.92rem; margin: 0; }

/* -------- Contact CTA -------- */
.cta-block {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(31, 138, 61, 0.25) 0%, transparent 60%),
    linear-gradient(150deg, var(--green-900), #071d11 70%);
  color: var(--cream);
}
.cta-block h2 { color: var(--cream); }
.cta-lede { color: rgba(250, 247, 240, 0.78); max-width: 42ch; font-size: 1.05rem; }
.cta-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.contact-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
}
.contact-list li {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.contact-list a { color: var(--cream); font-weight: 600; }
.contact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
address { font-style: normal; line-height: 1.5; }

/* -------- Footer -------- */
.site-footer {
  background: #06170e;
  color: rgba(250, 247, 240, 0.7);
  padding: 2.5rem 0 2rem;
  font-size: 0.875rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand nav" "meta meta";
    gap: 1.25rem 2rem;
  }
  .footer-brand { grid-area: brand; }
  .footer-nav { grid-area: nav; }
  .footer-meta { grid-area: meta; }
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; }
.footer-brand img { border-radius: 10px; }
.footer-name { color: var(--cream); font-weight: 600; margin: 0; }
.footer-tag { font-family: var(--font-display); font-style: italic; margin: 0; font-size: 0.9rem; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem;
}
.footer-nav a {
  color: rgba(250, 247, 240, 0.8);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--gold-500); }
.footer-meta {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.55);
}

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
