/* ============================================================
   LARK SOLUTIONS GROUP — MAIN STYLESHEET
   Brand colors: #304945 (lark green), #EBEBEB (stone),
   #2E2E2E (ink), #6E6353 (slate brown), #7C7B77 (slate gray)
   Fonts: Playfair Display (serif), Inter as Garet substitute
============================================================ */

:root {
  /* Brand */
  --lark: #304945;
  --lark-deep: #233634;
  --lark-soft: #4a6e69;
  --lark-pale: #e6edec;
  --lark-wash: #f1f5f4;

  --stone: #EBEBEB;
  --stone-dark: #d8d8d6;

  --ink: #2E2E2E;
  --slate: #6E6353;
  --slate-light: #7C7B77;

  --white: #FFFFFF;
  --cream: #faf8f4;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing */
  --container: 1200px;
  --container-wide: 1320px;
  --container-narrow: 880px;

  /* Effects */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(35, 54, 52, 0.06), 0 1px 2px rgba(35, 54, 52, 0.04);
  --shadow: 0 4px 16px rgba(35, 54, 52, 0.08), 0 1px 3px rgba(35, 54, 52, 0.06);
  --shadow-lg: 0 16px 48px rgba(35, 54, 52, 0.12), 0 4px 12px rgba(35, 54, 52, 0.06);
  --shadow-xl: 0 28px 80px rgba(35, 54, 52, 0.18), 0 10px 24px rgba(35, 54, 52, 0.08);

  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--lark);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--lark-deep);
}

::selection {
  background: var(--lark-pale);
  color: var(--lark-deep);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--ink);
  opacity: 0.88;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 32px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 1.5px;
  background: var(--lark);
}

.eyebrow.center {
  padding-left: 0;
}

.eyebrow.center::before {
  display: none;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

/* ============================================================
   LAYOUT
============================================================ */

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

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

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

section {
  padding: clamp(64px, 9vw, 120px) 0;
}

section.compact {
  padding: clamp(48px, 6vw, 80px) 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--slate);
  margin-top: 1rem;
}

.bg-stone { background: var(--stone); }
.bg-cream { background: var(--cream); }
.bg-lark { background: var(--lark); color: var(--white); }
.bg-lark h1, .bg-lark h2, .bg-lark h3, .bg-lark h4 { color: var(--white); }
.bg-lark p { color: rgba(255, 255, 255, 0.85); }
.bg-lark .eyebrow { color: var(--lark-pale); }
.bg-lark .eyebrow::before { background: var(--lark-pale); }

/* ============================================================
   BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--lark);
  color: var(--white);
  border-color: var(--lark);
}

.btn-primary:hover {
  background: var(--lark-deep);
  border-color: var(--lark-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--lark);
  border-color: var(--lark);
}

.btn-secondary:hover {
  background: var(--lark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--lark);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--lark-pale);
  color: var(--lark-deep);
  border-color: var(--lark-pale);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--lark);
  border-color: var(--white);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--lark);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.btn-text::after {
  content: "→";
  transition: transform var(--ease);
}

.btn-text:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   HEADER / NAVIGATION
============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(35, 54, 52, 0.08);
  transition: all var(--ease);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--lark);
  background: var(--lark-wash);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile-only nav CTA: hidden on desktop, shown inside the mobile drawer */
.nav-menu li.nav-mobile-cta { display: none; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 84px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--ease);
    overflow-y: auto;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu a {
    padding: 16px 20px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--stone);
    border-radius: 0;
  }

  .nav-actions .btn { display: none; }

  .nav-menu li.nav-mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 0 20px;
    border-bottom: none;
  }

  .nav-menu li.nav-mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    font-size: 0.95rem;
    text-align: center;
    background: var(--lark);
    color: var(--white);
    border: 1.5px solid var(--lark);
    border-bottom: 1.5px solid var(--lark);
    border-radius: var(--radius);
  }

  .nav-menu li.nav-mobile-cta a:hover {
    background: var(--lark-deep);
    border-color: var(--lark-deep);
    color: var(--white);
  }
}

/* ============================================================
   HERO SECTIONS
============================================================ */

.hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(48, 73, 69, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(110, 99, 83, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

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

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--lark);
  font-weight: 400;
}

.hero-content .lead {
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(35, 54, 52, 0.12);
}

.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--lark);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 16px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  max-width: 280px;
}

.hero-image-tag .icon {
  width: 44px;
  height: 44px;
  background: var(--lark-pale);
  color: var(--lark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-image-tag .text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-image-tag .text span {
  font-size: 0.78rem;
  color: var(--slate);
}

/* Page hero (smaller, for inner pages) */

.page-hero {
  background: linear-gradient(135deg, var(--lark) 0%, var(--lark-deep) 100%);
  color: var(--white);
  padding: clamp(72px, 9vw, 120px) 0 clamp(72px, 9vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  max-width: 620px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: var(--lark-pale);
}

.page-hero .eyebrow::before {
  background: var(--lark-pale);
}

/* ============================================================
   CARDS / SERVICES
============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--lark);
  transition: width var(--ease);
}

.service-card:hover {
  border-color: rgba(48, 73, 69, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::after { width: 100%; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--lark-wash);
  color: var(--lark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--ease);
}

.service-card:hover .service-icon {
  background: var(--lark);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--slate);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--stone);
}

.service-card ul li:last-child { border: none; }

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--lark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT / SPLIT SECTIONS
============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse > *:first-child { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > *:first-child { order: 0; }
}

.split-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 { margin-bottom: 20px; }
.split-content p { font-size: 1.04rem; margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  margin: 32px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}

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

.feature-list .feat-icon {
  width: 36px;
  height: 36px;
  background: var(--lark-wash);
  color: var(--lark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-list strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.feature-list span {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ============================================================
   STATS BANNER
============================================================ */

.stats-banner {
  background: var(--lark);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-block .stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block .stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

/* ============================================================
   TEAM
============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: left;
}

.team-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--stone);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo img { transform: scale(1.04); }

.team-card h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  gap: 10px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all var(--ease);
}

.team-social a:hover {
  background: var(--lark);
  color: var(--white);
  border-color: var(--lark);
}

/* ============================================================
   PROCESS / STEPS
============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: left;
  position: relative;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--lark);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--slate);
}

/* ============================================================
   TESTIMONIALS
============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--lark);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: #d4a72c;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--stone);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--slate);
}

/* ============================================================
   INDUSTRIES / FEATURE CARDS
============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--stone);
}

.feature-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.feature-card:hover .img img { transform: scale(1.04); }

.feature-card .body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card .body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card .body p {
  color: var(--slate);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex: 1;
}

.feature-card .meta {
  font-size: 0.78rem;
  color: var(--lark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

/* ============================================================
   CTA BANNER
============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--lark) 0%, var(--lark-deep) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   FORMS
============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid .full { grid-column: span 2; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--stone-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--white);
  transition: all var(--ease);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lark);
  box-shadow: 0 0 0 3px rgba(48, 73, 69, 0.12);
}

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* ============================================================
   CONTACT INFO BLOCKS
============================================================ */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-info-card {
  padding: 28px 24px;
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--ease);
  background: var(--white);
}

.contact-info-card:hover {
  border-color: rgba(48, 73, 69, 0.2);
  box-shadow: var(--shadow);
}

.contact-info-card .icon {
  width: 52px;
  height: 52px;
  background: var(--lark-wash);
  color: var(--lark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0;
}

.contact-info-card a {
  font-size: 0.94rem;
  color: var(--lark);
  font-weight: 500;
}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
  background: var(--lark-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

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

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

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--ease);
}

.footer-social a:hover {
  background: var(--white);
  color: var(--lark);
  border-color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: color var(--ease);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   FAQ
============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone-dark);
  padding: 24px 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
}

.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--lark);
  font-weight: 300;
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease), padding-top var(--ease);
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 16px;
}

/* ============================================================
   LOGO MARK (text/SVG fallback)
============================================================ */

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--lark);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-mark .sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--slate);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  border-top: 1.5px solid var(--lark);
  padding-top: 4px;
  width: 60%;
}

/* ============================================================
   UTILITIES
============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BLOG / ARTICLE LISTS
============================================================ */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-card .img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--stone);
}

.article-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.article-card:hover .img img { transform: scale(1.04); }

.article-card .body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card .meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-card .meta .tag {
  color: var(--lark);
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-card p {
  color: var(--slate);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex: 1;
}

/* ============================================================
   LOGO STRIP
============================================================ */

.logo-strip {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.logo-strip-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 32px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  opacity: 0.55;
}

.logos-row span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* ============================================================
   VALUES
============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.value-item {
  text-align: left;
}

.value-item .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--lark-wash);
  color: var(--lark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.94rem;
  color: var(--slate);
}
