/* =========================================================
   NEXARA — stylesheet
   Modern execution of a classic trade-house identity: crisp
   soft-elevation surfaces and a glassy sticky nav, built on
   top of the literal artifacts of the export/import trade —
   ledger rules, customs seals, dashed shipping routes.
   Fonts are self-hosted (no external font CDN dependency).
   ========================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../assets/fonts/plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../assets/fonts/plex-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../assets/fonts/plex-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- color tokens: sourced from the Nexara logo (navy + green), ---
     --- with the original gold retained as a secondary accent tied  ---
     --- to the rice / wheat imagery in the mark.                    --- */
  --ink-navy: #0B2A46;
  --ink-navy-2: #123655;
  --paper: #EDF1EF;
  --paper-2: #E3E9E5;
  --accent: #4C7825;
  --accent-light: #6FA23E;
  --gold: #B8863A;
  --gold-light: #D4A45C;
  --forest: #1E3A1B;
  --forest-2: #16260F;
  --ink-text: #22303A;
  --ink-text-soft: #4B5A63;
  --white: #FDFCF9;

  /* --- type --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* --- layout --- */
  --max-w: 1180px;
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --rule: 1px solid rgba(11, 42, 70, 0.12);
  --rule-dark: 1px solid rgba(237, 241, 239, 0.18);
  --shadow-card: 0 1px 2px rgba(11, 42, 70, 0.05), 0 10px 28px -14px rgba(11, 42, 70, 0.22);
  --shadow-lift: 0 4px 10px rgba(11, 42, 70, 0.08), 0 22px 44px -18px rgba(11, 42, 70, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(11, 42, 70, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; font-weight: 600; color: var(--ink-navy); letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-text-soft); }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--dark {
  background: var(--forest);
  color: var(--paper);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(237, 241, 239, 0.78); }
.section--navy { background: var(--ink-navy); color: var(--paper); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(11,42,70,0.08), 0 8px 18px -10px rgba(76, 120, 37, 0.45);
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); box-shadow: 0 2px 6px rgba(11,42,70,0.1), 0 12px 24px -12px rgba(76, 120, 37, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(237, 241, 239, 0.4);
}
.btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); background: rgba(237,241,239,0.06); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink-navy);
  border-color: rgba(11, 42, 70, 0.35);
}
.btn-outline-dark:hover { border-color: var(--ink-navy); background: rgba(11,42,70,0.05); }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.topbar {
  background: var(--ink-navy);
  color: rgba(237, 241, 239, 0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a:hover { color: var(--accent-light); }
.topbar-links { display: flex; align-items: center; gap: 14px; }
.topbar-sep { opacity: 0.35; margin: 0 2px; }
@supports not (gap: 1px) {
  .topbar-links > * { margin-right: 14px; }
  .topbar-links > *:last-child { margin-right: 0; }
}

.site-header {
  background: rgba(11, 42, 70, 0.94);
  border-bottom: 1px solid rgba(237, 241, 239, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 42, 70, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,0.35);
  border-bottom-color: rgba(237, 241, 239, 0.14);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .container { padding-top: 12px; padding-bottom: 12px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img { width: 42px; height: 42px; transition: width 0.3s ease, height 0.3s ease; }
.site-header.is-scrolled .brand img { width: 36px; height: 36px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  color: rgba(237, 241, 239, 0.82);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--white); }
@supports not (gap: 1px) {
  .main-nav ul li { margin-right: 32px; }
  .main-nav ul li:last-child { margin-right: 0; }
}
.main-nav a.is-active { color: var(--white); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(237,241,239,0.3);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--white);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 82% 15%, rgba(76, 120, 37, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 50% at 8% 85%, rgba(184, 134, 58, 0.05), transparent 60%),
    var(--paper);
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(11, 42, 70, 0.05) 0,
    rgba(11, 42, 70, 0.05) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-lede {
  font-size: 17.5px;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.stat-strip {
  display: flex;
  gap: 0;
  border-top: var(--rule);
  padding-top: 26px;
}
.stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: var(--rule);
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--ink-navy);
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 12px;
  color: var(--ink-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- trust / compliance strip ---------- */
.trust-strip-section {
  background: var(--paper-2);
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 22px 0;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
}
.trust-strip-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-text-soft);
  padding-right: 10px;
  border-right: var(--rule);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-navy);
  white-space: nowrap;
}
.trust-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

/* seal / logo showcase panel used in the hero */
.seal-frame--logo {
  max-width: 380px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(11, 42, 70, 0.08);
  box-shadow: 0 2px 4px rgba(11, 42, 70, 0.05), 0 30px 60px -24px rgba(11, 42, 70, 0.32);
  padding: 30px;
}
.seal-frame--logo img { width: 100%; height: auto; display: block; }
.seal-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-text-soft);
  margin-top: 18px;
}

/* ---------- stamp badge (category tag) ---------- */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.stamp--export { color: var(--accent); }
.stamp--import { color: var(--gold); }

/* ---------- cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 1px 2px rgba(11,42,70,0.03);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(76, 120, 37, 0.3); }
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 100%);
  box-shadow: inset 0 0 0 1px rgba(11,42,70,0.06);
  color: var(--ink-navy);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover .card-icon {
  transform: scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(76,120,37,0.25), 0 4px 14px -6px rgba(76,120,37,0.4);
  color: var(--accent);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }

.feature {
  padding-top: 4px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(111, 162, 62, 0.5);
  background: rgba(111, 162, 62, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.feature:hover .feature-icon {
  transform: scale(1.08);
  background: rgba(111, 162, 62, 0.16);
  box-shadow: 0 0 0 6px rgba(111, 162, 62, 0.08);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; }

/* ---------- CTA banner ---------- */
/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11,42,70,0.15), 0 12px 28px -8px rgba(37, 211, 102, 0.55);
  z-index: 50;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 14px rgba(11,42,70,0.18), 0 16px 34px -8px rgba(37, 211, 102, 0.65);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab .fab-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }
@media (max-width: 760px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab .fab-tooltip { display: none; }
}

.cta-banner {
  position: relative;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(76, 120, 37, 0.12), transparent 70%),
    var(--ink-navy);
  color: var(--paper);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 68px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { max-width: 52ch; margin-left: auto; margin-right: auto; margin-bottom: 30px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink-navy);
  color: rgba(237, 241, 239, 0.75);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: var(--rule-dark);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: rgba(237, 241, 239, 0.6); font-size: 14px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(237, 241, 239, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 241, 239, 0.7);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent-light); color: var(--accent-light); background: rgba(111,162,62,0.08); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(237, 241, 239, 0.5);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- page header (inner pages) ---------- */
.page-header {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 64px 0 48px;
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent) 0 12px, transparent 12px 20px);
  background-size: 20px 3px;
}
.page-header .eyebrow { color: var(--accent-light); }
.page-header h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-header p { max-width: 60ch; color: rgba(237,241,239,0.75); margin: 0; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(237,241,239,0.5);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--accent-light); }

/* ---------- route / map diagram ---------- */
.route-diagram {
  border: var(--rule);
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}
.route-diagram svg { width: 100%; height: auto; }

/* ---------- region list ---------- */
.region-list {
  border-top: var(--rule);
}
.region-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: var(--rule);
}
.region-row .stamp { justify-self: start; }
.region-row h3 { font-size: 18px; margin: 0; }
.region-row p { margin: 0; font-size: 14.5px; }

/* ---------- table (specs) ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: var(--rule);
}
.spec-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-text-soft);
  width: 34%;
  vertical-align: top;
  padding-right: 12px;
}

/* ---------- product catalog cards ---------- */
.catalog-grid { align-items: start; }
.catalog-card {
  display: flex;
  flex-direction: column;
}
.catalog-card .card-icon { width: 52px; height: 52px; }
.catalog-card .card-icon svg { width: 26px; height: 26px; }
.catalog-card h3 { font-size: 19px; margin: 12px 0 8px; }
.catalog-card > p { font-size: 14.5px; flex-grow: 1; }
.spec-toggle {
  margin-top: 16px;
  border-top: var(--rule);
  padding-top: 14px;
}
.spec-toggle summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 2px 0;
}
.spec-toggle summary::-webkit-details-marker { display: none; }
.spec-toggle summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s var(--ease);
  color: var(--ink-text-soft);
}
.spec-toggle[open] summary::after { transform: rotate(45deg); }
.spec-toggle[open] summary { margin-bottom: 10px; }

/* ---------- FAQ list (contact page) ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  background: var(--white);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item summary { color: var(--ink-navy); font-family: var(--font-body); font-size: 15.5px; font-weight: 500; text-transform: none; letter-spacing: normal; }
.faq-item summary::after { content: "+"; color: var(--accent); font-family: var(--font-mono); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14.5px; margin: 0; }

/* ---------- about / values ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.timeline { border-left: 2px solid var(--accent); padding-left: 26px; }
.timeline-item { margin-bottom: 28px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--paper);
}
.timeline-item b {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.value-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: var(--rule);
}
.value-list li:first-child { border-top: var(--rule); }
.value-num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
  min-width: 28px;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: var(--rule);
}
.contact-info-item:first-child { border-top: var(--rule); }
.contact-info-item .card-icon { flex-shrink: 0; margin-bottom: 0; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--ink-navy); }
.contact-info-item p { margin: 0; font-size: 14.5px; }

.form-card {
  background: var(--white);
  border: var(--rule);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-text-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(11, 42, 70, 0.22);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-text);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-note { font-size: 12.5px; color: var(--ink-text-soft); margin-top: 4px; }
.form-status {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(30, 58, 27, 0.08); color: var(--forest); border: 1px solid rgba(30,58,27,0.22); }

.map-embed {
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  margin-top: 26px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- misc ---------- */
.divider-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  margin: 8px 0 40px;
}
.divider-stamp::before, .divider-stamp::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor, transparent);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: flex; flex-direction: column; align-items: center; margin-top: 36px; }
  .seal-frame--logo { margin: 0 auto; max-width: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--ink-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px;
    display: none;
    gap: 20px;
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 18px; width: 100%; }
  .main-nav a { font-size: 17px; display: block; }
  .nav-toggle { display: block; }
  .stat-strip { flex-wrap: wrap; gap: 20px; }
  .trust-strip { flex-direction: column; gap: 12px; text-align: center; }
  .trust-strip-label { border-right: none; padding-right: 0; }
  .stat { border-right: none; margin-right: 0; padding-right: 0; width: 45%; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .region-row { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 60px 0; }
}
