/* =========================================================
   Venturous — global stylesheet
   ========================================================= */

:root {
  --ink: #1b2430;
  --ink-soft: #232f3d;
  --cream: #faf7f1;
  --cream-2: #f3ede1;
  --text-dark: #201c16;
  --text-muted: #5f594d;
  --text-on-dark: #f3ede1;
  --text-on-dark-muted: #a9b3bf;

  --slate: #4c6685;
  --slate-dark: #37485e;
  --slate-light: #b9c7d8;
  --slate-tint: #eef2f6;

  --border-soft: rgba(76, 102, 133, 0.2);
  --shadow-soft: 0 20px 50px -25px rgba(20, 24, 30, 0.35);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 10px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text-dark);
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--slate);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--slate-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(27, 36, 48, 0.4);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(250, 247, 241, 0.35);
  color: var(--text-on-dark);
}

.btn-outline-dark:hover {
  border-color: var(--slate-light);
  color: var(--slate-light);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(32, 28, 22, 0.25);
  color: var(--text-dark);
}

.btn-outline-light:hover {
  border-color: var(--slate);
  color: var(--slate);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(32, 28, 22, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: 46px;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--slate-dark);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-dark);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
}

.main-nav a.btn-primary {
  color: #ffffff;
  display: none;
}

.main-nav a.btn-primary:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--cream);
    box-shadow: 0 16px 32px -16px rgba(32, 28, 22, 0.18);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow-y: auto;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 32px;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(32, 28, 22, 0.08);
  }

  .main-nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .main-nav .btn {
    margin-top: 20px;
    width: 100%;
  }

  .main-nav a.btn-primary {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(120% 140% at 15% 0%, var(--slate-tint) 0%, var(--cream) 55%), var(--cream);
  color: var(--text-dark);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(76, 102, 133, 0.12), transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
}

.hero h1 {
  color: var(--text-dark);
  font-size: clamp(34px, 5.4vw, 58px);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--slate);
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero {
  background: radial-gradient(120% 160% at 85% 0%, var(--slate-tint) 0%, var(--cream) 55%), var(--cream);
  color: var(--text-dark);
  padding: 96px 0 72px;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--slate-dark);
}

.page-hero h1 {
  color: var(--text-dark);
  font-size: clamp(32px, 4.6vw, 48px);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
}

/* ---------- Trust badges bar ---------- */

.trust-bar {
  background: var(--cream-2);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-soft);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 48px;
  justify-content: center;
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trust-item strong {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-dark);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid rgba(32, 28, 22, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

.card ul {
  margin-top: 16px;
}

.card ul li {
  font-size: 14.5px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate);
}

/* ---------- Steps / process ---------- */

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 8px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Why-us / checklist ---------- */

.why-section {
  background: var(--cream-2);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(32, 28, 22, 0.08);
  font-size: 15.5px;
  color: var(--text-dark);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.stat-panel {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 44px 36px;
  color: var(--text-on-dark);
}

.stat-panel .grid-2 {
  gap: 32px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--slate-light);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 102, 133, 0.28), transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--text-on-dark);
  font-size: clamp(26px, 3.6vw, 36px);
  max-width: 620px;
  margin: 0 auto 16px;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.field input,
.field textarea,
.field select {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(32, 28, 22, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(76, 102, 133, 0.18);
}

.field input.field-invalid,
.field textarea.field-invalid,
.field select.field-invalid {
  border-color: #c94b4b;
  box-shadow: 0 0 0 3px rgba(201, 75, 75, 0.14);
}

.field-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
}

.field-check input {
  margin-top: 4px;
}

.field-check label {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
}

.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-alert {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.form-alert.success {
  background: #eef7ee;
  color: #285c2c;
  border: 1px solid #bfe0bf;
}

.form-alert.error {
  background: #fbeaea;
  color: #7a2323;
  border: 1px solid #f0c4c4;
}

/* ---------- Contact info cards ---------- */

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(32, 28, 22, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-card .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- About page specifics ---------- */

.value-card {
  border-left: 3px solid var(--slate);
  padding-left: 22px;
}

.value-card h3 {
  font-size: 18px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.brand-plate {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}

.brand-plate img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.brand-plate p {
  color: var(--text-on-dark-muted);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding: 72px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-text {
  color: var(--text-on-dark);
}

.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
  color: var(--text-on-dark-muted);
}

.footer-col h4 {
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--slate-light);
}

.footer-legal-row {
  padding-top: 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--slate-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  font-size: 13px;
}

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 2em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 15.5px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content .updated-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2.5em;
}

/* ---------- Misc utility ---------- */

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
