/* ═══════════════════════════════════════════════════════
   Vardea – Shared Stylesheet
   vardea.css
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sand:         #EFEAE3;
  --green:        #5E6B5C;
  --green-dark:   #4a5448;
  --green-light:  #8a9988;
  --text:         #2B2B2B;
  --text-muted:   #6b6b63;
  --text-faint:   #9a9a90;
  --footer:       #3B4145;
  --white:        #ffffff;
  --border:       rgba(94,107,92,0.18);
  --border-light: rgba(94,107,92,0.10);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius:       3px;
  --radius-lg:    8px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: rgba(239,234,227,0.96);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--green); color: var(--white);
  border: none; padding: 11px 24px; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── SHARED UTILITIES ── */
/* ── SECTIONS ── */
.section { padding: 100px 56px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--green); }
h2.heading {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 18px;
}
h2.heading strong { font-weight: 700; }
.subheading { font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.7; max-width: 500px; }

/* ── BTN OUTLINE (index only but handy to share) ── */
.btn-outline {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
  padding: 14px 28px; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--footer); color: rgba(239,234,227,0.5); padding: 56px 56px 36px; position: relative; overflow: hidden; }
footer::before-REMOVED {
  content: ''; position: absolute; bottom: -10%; left: -2%;
  width: 26%; padding-bottom: 26%;
  background-image: url('/img/varde.svg');
  background-size: contain; background-repeat: no-repeat;
  background-position: bottom left; pointer-events: none;
  filter: invert(1) brightness(0.5); opacity: 0.08; z-index: 0;
}
.footer-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 52px; }
.footer-logo img { height: 56px; width: auto; display: block; filter: invert(1) brightness(0.85); margin-bottom: 14px; }
.footer-tagline { font-size: 13px; font-weight: 300; max-width: 220px; line-height: 1.6; }
.footer-cols { display: flex; gap: 60px; }
.footer-col h4 { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239,234,227,0.9); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(239,234,227,0.5); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(239,234,227,0.1); display: flex; justify-content: space-between; font-size: 12px; font-weight: 300; flex-wrap: wrap; gap: 8px; }


/* ── HUBSPOT FORM OVERRIDES ── */
.hs-form-frame { margin: 24px 0; }
.hs-form-frame iframe { width: 100% !important; border: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 8% 60px; }
  .hero::after { width: 85%; padding-bottom: 85%; opacity: 0.45; }
  .hero-right { margin-top: 40px; }
  .section { padding: 72px 24px; }
  .phil-grid, .services-header, .process-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols { gap: 36px; flex-wrap: wrap; }
}
