/* =====================================================================
   VENTURE GROUP — STYLES
   Layout & visual design. Content edits belong in site-config.js.
   ===================================================================== */

:root {
  --accent: #05C8D8;
  --accent-soft: rgba(5, 200, 216, 0.16);
  --navy-950: #040B18;
  --navy-900: #081220;
  --navy-800: #0C1928;
  --navy-700: #112031;
  --navy-600: #19304A;
  --cream: #F6F2E9;
  --cream-deep: #EFE9DB;
  --ink: #0F1B2D;
  --ink-soft: #3D4F65;
  --text: #EDF2FA;
  --text-dim: #8FA5C2;
  --line: rgba(255, 255, 255, 0.10);
  --line-ink: rgba(24, 35, 53, 0.14);
  --accent2: #7B5FF4;
  --green: #28A05F;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 20px 52px rgba(4, 10, 22, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #091A22 0%, var(--navy-800) 30%, var(--navy-800) 70%, #071318 100%);
  color: var(--text);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

section { scroll-margin-top: 84px; }

/* ------------------------------------------------ typography ------ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

body.sans-headings h1,
body.sans-headings h2,
body.sans-headings h3 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.accent-word {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.sans-headings .accent-word { font-style: normal; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 18px; color: #fff; }
.section-head p { color: var(--text-dim); font-size: 18px; text-wrap: pretty; }
.light .section-head h2 { color: var(--ink); }
.light .eyebrow {
  background: linear-gradient(135deg, #028A97, #5A44C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.light .accent-word {
  background: linear-gradient(135deg, #028A97, #5A44C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.light .section-head p { color: var(--ink-soft); }

/* --------------------------------------------------- buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 10px 26px rgba(97, 90, 220, 0.40); }
.btn-solid:hover { box-shadow: 0 16px 34px rgba(97, 90, 220, 0.55); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.7); }
.btn-light { background: #fff; color: var(--ink); }

/* ------------------------------------------------- brand V letter */
.brand-v-letter {
  color: var(--accent);
  font-style: italic;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(5,200,216,0.7);
}

/* ---------------------------------------------------- header ------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 16, 30, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; display: block; flex: none; }
.brand-v-3d {
  display: inline-block;
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-right: 1px;
  margin-bottom: 3px;
  filter: drop-shadow(0 0 5px rgba(5,200,216,0.9)) drop-shadow(0 0 12px rgba(5,200,216,0.45));
}
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; }
.brand-sub { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 15px; font-weight: 600; color: var(--text-dim);
  padding: 7px 15px; border-radius: 8px;
  transition: color 0.15s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.main-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(5,200,216,0.22), rgba(123,95,244,0.22));
  box-shadow: inset 0 0 0 1px rgba(5,200,216,0.40), 0 0 12px rgba(5,200,216,0.15);
}
.main-nav a:hover { color: #fff; background: rgba(5,200,216,0.10); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-cta .btn { padding: 11px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px; height: 42px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ------------------------------------------------------ hero ------ */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; }
.hero .hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 30, 0.62) 0%, rgba(8, 16, 30, 0.38) 45%, rgba(13, 27, 46, 0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 80px;
  text-align: center;
}
.hero h1 { font-size: clamp(46px, 7.4vw, 92px); margin-bottom: 26px; color: #fff; }
.hero .lede {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(235, 241, 250, 0.92);
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-tags { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 20, 36, 0.45);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 245, 252, 0.95);
}
.hero-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(5,200,216,0.2);
  background: linear-gradient(90deg, rgba(3,53,61,0.70) 0%, rgba(5,200,216,0.12) 50%, rgba(3,53,61,0.70) 100%);
  backdrop-filter: blur(10px);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.hero-stat { text-align: left; border-left: 2px solid var(--accent); padding-left: 16px; background: rgba(5,200,216,0.04); border-radius: 4px; }
.hero-stat:nth-child(even) { border-left-color: var(--accent2); background: rgba(123,95,244,0.04); }
.hero-stat .value { font-family: var(--font-display); font-size: 23px; color: #fff; line-height: 1.2; }
body.sans-headings .hero-stat .value { font-family: var(--font-body); font-weight: 800; }
.hero-stat .label { font-size: 13px; color: var(--text-dim); margin-top: 3px; }

/* ----------------------------------------------------- about ------ */
.light { background: var(--cream); color: var(--ink); }
.section { padding: 110px 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(34px, 4.2vw, 50px); margin-bottom: 26px; color: var(--ink); }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; text-wrap: pretty; }
.pillars { display: flex; gap: 44px; margin-top: 36px; }
.pillar { border-left: 3px solid var(--accent); padding-left: 18px; }
.pillar .value { font-family: var(--font-display); font-size: 30px; color: var(--ink); line-height: 1.15; }
body.sans-headings .pillar .value { font-family: var(--font-body); font-weight: 800; }
.pillar .label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

.about-media { position: relative; }
.about-media .media-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow); }
.about-media .media-detail {
  position: absolute;
  left: -56px; bottom: -44px;
  width: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}

/* ----------------------------------------------- media + cards ---- */
.media { position: relative; background: linear-gradient(140deg, var(--navy-600), var(--navy-800)); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.broken img { display: none; }
.media.broken::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 28px),
    linear-gradient(140deg, var(--navy-600), var(--navy-800));
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
#projects-grid { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(160deg, var(--navy-700) 70%, rgba(5,200,216,0.07) 100%);
  border: 1px solid rgba(5,200,216,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(5, 200, 216, 0.44); }
.card .media { aspect-ratio: 16 / 10; }
.card .media .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: 24px; color: #fff; }
.card-body .desc { color: var(--text-dim); font-size: 15.5px; flex: 1; text-wrap: pretty; }

.meta-list { display: flex; flex-direction: column; gap: 7px; }
.meta { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--accent); line-height: 1.4; }
.meta svg { margin-top: 2px; }
.meta.dim { color: var(--text-dim); }
.meta svg { width: 16px; height: 16px; flex: none; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.badge-agricultural { background: var(--green); }
.badge-commercial { background: var(--accent); }
.badge-status { background: rgba(8, 16, 30, 0.72); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.22); }
.badge-status.complete { background: var(--green); border-color: transparent; }

.card .btn { width: 100%; margin-top: 6px; }

/* ----------------------------------------------- selling band ----- */
.selling { background: linear-gradient(135deg, #03353D 0%, #1E1060 50%, #7B5FF4 100%); position: relative; overflow: hidden; }
.selling::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 85% 10%, rgba(190,170,255,0.18), transparent 60%);
}
.selling .container { position: relative; text-align: center; }
.selling h2 { font-size: clamp(36px, 4.6vw, 56px); color: #fff; margin-bottom: 18px; }
.selling .copy { max-width: 680px; margin: 0 auto 44px; color: rgba(255, 255, 255, 0.92); font-size: 18px; text-wrap: pretty; }
.buy-boxes { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; gap: 24px; margin-bottom: 44px; }
.buy-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: left;
  backdrop-filter: blur(8px);
}
.buy-box .range { font-family: var(--font-display); font-size: 32px; color: #fff; line-height: 1.1; }
body.sans-headings .buy-box .range { font-family: var(--font-body); font-weight: 800; }
.buy-box .title { font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); margin-bottom: 10px; }
.buy-box .note { font-size: 14.5px; color: rgba(255, 255, 255, 0.85); margin-top: 8px; }

/* ------------------------------------------------ team intro ----- */
.team-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-intro p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}
.team-intro p:first-child {
  font-size: 18.5px;
  color: rgba(237,242,250,0.85);
  font-weight: 500;
}

/* ------------------------------------------------------ team ------ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
  background: linear-gradient(145deg, var(--navy-700) 60%, rgba(5,200,216,0.10) 100%);
  border: 1px solid rgba(5,200,216,0.22);
  border-radius: var(--radius);
  padding: 0 0 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.team-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  flex: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin-bottom: 30px;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(5, 200, 216, 0.44); }
.avatar {
  width: 86px; height: 86px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 3px solid var(--navy-600);
  box-shadow: 0 6px 22px rgba(97, 90, 220, 0.35);
  flex: none;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 20px; color: #fff; margin-bottom: 4px; padding: 0 22px; }
.team-card .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 0 22px;
}
.team-card .bio {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 22px;
  text-wrap: pretty;
  line-height: 1.65;
  padding: 0 22px;
  flex: 1;
}
.team-links { display: flex; justify-content: center; gap: 10px; }
.team-links a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.team-links a:hover { background: var(--accent); color: #fff; border-color: transparent; }
.team-links svg { width: 16px; height: 16px; }

/* --------------------------------------------------- contact ------ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(5,200,216,0.18);
}
.info-card:first-child { padding-top: 0; }
.info-icon {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
}
.info-icon svg { width: 21px; height: 21px; }
.info-card h3 { font-size: 18px; color: #fff; margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.info-card p, .info-card a { color: var(--text-dim); font-size: 15.5px; }
.info-card a:hover { color: var(--accent); }

.hours-box {
  margin-top: 30px;
  background: linear-gradient(145deg, var(--navy-700), rgba(5,200,216,0.07));
  border: 1px solid rgba(5,200,216,0.22);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.hours-box h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 12px; }
.hours-box p { color: var(--text-dim); font-size: 15px; padding: 4px 0; }

.contact-form {
  background: linear-gradient(145deg, var(--navy-700), rgba(5,200,216,0.07));
  border: 1px solid rgba(5,200,216,0.22);
  border-radius: var(--radius);
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(167, 180, 199, 0.55); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(5, 200, 216, 0.20);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 14px; color: var(--green); font-weight: 700; display: none; }
.form-note.show { display: block; }

/* ---------------------------------------------------- footer ------ */
.site-footer { background: var(--navy-950); border-top: 2px solid rgba(5,200,216,0.3); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer-grid h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 18px; }
.footer-blurb { color: var(--text-dim); font-size: 15.5px; max-width: 38ch; margin-top: 16px; text-wrap: pretty; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--text-dim); font-size: 15px; transition: color 0.15s ease; }
.footer-links a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-bottom: 26px; }
.social-row a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: background 0.15s ease, color 0.15s ease;
}
.social-row a:hover { background: var(--accent); color: #fff; }
.social-row svg { width: 18px; height: 18px; }
.sister { color: var(--text-dim); font-size: 15px; }
.sister strong { display: block; color: #fff; font-size: 16.5px; margin-top: 3px; }
.sister span { font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}

/* ------------------------------------------------ process steps -- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.process-step {
  background: linear-gradient(160deg, var(--navy-700) 65%, rgba(5,200,216,0.08) 100%);
  border: 1px solid rgba(5,200,216,0.22);
  border-radius: var(--radius);
  padding: 36px 28px 30px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  display: block;
}
.process-step h3 { font-size: 21px; color: #fff; margin-bottom: 12px; }
.process-step p { color: var(--text-dim); font-size: 15px; line-height: 1.68; text-wrap: pretty; }

/* ------------------------------------------------ values grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: linear-gradient(160deg, var(--navy-700) 65%, rgba(123,95,244,0.08) 100%);
  border: 1px solid rgba(123,95,244,0.22);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(5,200,216,0.18), rgba(123,95,244,0.18));
  border: 1px solid rgba(5,200,216,0.3);
}
.value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 14px; line-height: 1.65; text-wrap: pretty; }

@media (max-width: 1020px) {
  .process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------ page hero ------ */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, rgba(5,200,216,0.07) 0%, transparent 100%);
  border-bottom: 1px solid rgba(5,200,216,0.14);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: #fff;
  margin-top: 12px;
  line-height: 1.08;
}

/* ------------------------------------------------ privacy page ---- */
.policy-wrap { max-width: 840px; margin: 0 auto; padding: 90px 28px 110px; }
.policy-wrap h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 36px; }
.policy-card {
  background: linear-gradient(145deg, var(--navy-700), rgba(5,200,216,0.07));
  border: 1px solid rgba(5,200,216,0.22);
  border-radius: var(--radius);
  padding: 44px 46px;
}
.policy-card h2 { font-family: var(--font-body); font-weight: 700; font-size: 19px; color: #fff; margin: 28px 0 10px; }
.policy-card h2:first-of-type { margin-top: 24px; }
.policy-card p { color: var(--text-dim); font-size: 16px; }
.policy-card .updated { font-weight: 700; color: #fff; }

/* ------------------------------------------------- responsive ----- */
@media (max-width: 1020px) {
  .card-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media .media-detail { left: auto; right: -10px; bottom: -36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 10px 0;
  }
  .main-nav a { padding: 14px 28px; width: 100%; }
  .site-header.nav-open .main-nav { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .header-cta .btn { display: none; }
  .card-grid, .team-grid { grid-template-columns: 1fr; }
  .buy-boxes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media .media-detail { display: none; }
  .hero-stat .value { font-size: 19px; }
  .contact-form { padding: 28px 22px; }
}
