/* ============================================================
   Carol Velasquez · velasquez.info
   Shared stylesheet for index.html, es.html, it.html
   ============================================================ */

:root {
  --bg: #faf6ed;
  --bg-alt: #f1ebdc;
  --ink: #14241c;
  --ink-soft: #3b4a42;
  --ink-muted: #6c7770;
  --forest: #1f3a2e;
  --forest-deep: #142621;
  --gold: #b8954a;
  --gold-soft: #d4b878;
  --rule: rgba(20, 36, 28, 0.12);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 237, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest);
}
.brand .dot { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--forest); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.lang-toggle a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: all 0.18s ease;
  line-height: 1;
}
.lang-toggle a.active {
  background: var(--forest);
  color: var(--bg);
}
.lang-toggle a:not(.active):hover { color: var(--forest); }

/* Hamburger toggle (hidden on desktop, shown on mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  margin-left: 12px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  cursor: pointer;
  order: 3;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .nav-inner { flex-wrap: wrap; }
  .nav-links {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
  }
  .nav-links.open {
    max-height: 75vh;
    overflow-y: auto;
    opacity: 1;
    margin-top: 14px;
  }
  .nav-links .nav-anchor {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links .lang-toggle { margin: 14px 0 4px; }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle at center, rgba(184, 149, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--forest-deep);
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--forest);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--forest);
}
.btn .arrow {
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta div {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.hero-meta div strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.4rem;
  margin-bottom: 4px;
  letter-spacing: 0;
}
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
}

/* ============ SECTION ============ */
section {
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--rule);
}
section.alt { background: var(--bg-alt); }

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 24px;
  max-width: 22ch;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--forest);
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.credentials li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: baseline;
}
.credentials .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
}
.credentials .label {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.credentials .label strong {
  display: block;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service {
  background: var(--bg);
  padding: 40px;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(20, 36, 28, 0.25);
  border-color: rgba(184, 149, 74, 0.4);
}
.service.primary {
  background: var(--forest);
  color: var(--bg);
  border-color: var(--forest);
}
.service.primary .service-title,
.service.primary .service-desc { color: inherit; }
.service.primary .service-meta { color: var(--gold-soft); }
.service.primary .service-desc { color: rgba(250, 246, 237, 0.82); }

.service-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--forest-deep);
  margin: 0 0 14px;
}
.service-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.service-list li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.service.primary .service-list li::before { background: var(--gold-soft); }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding-top: 28px;
  border-top: 1px solid var(--forest);
}
.why-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--forest-deep);
  line-height: 1.25;
}
.why-item p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ CONTACT ============ */
.contact {
  text-align: center;
  padding: clamp(96px, 14vw, 160px) 0;
  background: var(--forest);
  color: var(--bg);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 149, 74, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 149, 74, 0.08), transparent 50%);
  pointer-events: none;
}
.contact .container { position: relative; }
.contact .section-label { color: var(--gold-soft); }
.contact .section-title {
  color: var(--bg);
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}
.contact .section-intro {
  color: rgba(250, 246, 237, 0.78);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}
.contact .btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
}
.contact .btn-primary:hover { background: var(--gold-soft); }
.contact-email {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-soft);
}
.contact-email:hover { color: var(--bg); }

/* ============ FOOTER ============ */
footer {
  background: var(--forest-deep);
  color: rgba(250, 246, 237, 0.6);
  padding: 36px 0;
  font-size: 0.85rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
footer .brand { color: var(--bg); font-size: 1.1rem; }

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.breadcrumbs a { color: var(--ink-soft); transition: color 0.18s ease; }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs .sep { color: var(--ink-muted); margin: 0 8px; }
.breadcrumbs .here { color: var(--forest); }

/* Smaller hero for subpages */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle at center, rgba(184, 149, 74, 0.16), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 22px;
  max-width: 24ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-hero .hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}

/* Long-form prose */
.prose {
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose > h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--forest-deep);
  margin: 56px 0 18px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.prose > h2:first-child { margin-top: 0; }
.prose > h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin: 36px 0 12px;
  line-height: 1.25;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 22px; }
.prose li { padding: 4px 0; }
.prose a {
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.prose a:hover { color: var(--gold); }
.prose strong { color: var(--forest-deep); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--forest);
  line-height: 1.45;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

/* Feature grid (used on service / about pages) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
  border-color: rgba(184, 149, 74, 0.4);
  transform: translateY(-2px);
}
.feature-card .num {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--forest-deep);
  line-height: 1.25;
}
.feature-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Two-column content grid */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 820px) { .split-grid { grid-template-columns: 1fr; gap: 32px; } }

/* FAQ */
.faq-list { max-width: 800px; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--forest-deep);
  margin: 0 0 10px;
  line-height: 1.3;
}
.faq-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(20, 36, 28, 0.25);
}
.pricing-card.featured {
  background: var(--forest);
  color: var(--bg);
  border-color: var(--forest);
}
.pricing-card .pricing-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pricing-card.featured .pricing-meta { color: var(--gold-soft); }
.pricing-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 14px;
  color: var(--forest-deep);
  line-height: 1.2;
}
.pricing-card.featured h3 { color: var(--bg); }
.pricing-card .price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 18px;
}
.pricing-card.featured .price { color: var(--gold-soft); }
.pricing-card .price small {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-family: var(--sans);
}
.pricing-card.featured .price small { color: rgba(250, 246, 237, 0.7); }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.pricing-card li { padding: 6px 0 6px 22px; position: relative; color: var(--ink-soft); }
.pricing-card.featured li { color: rgba(250, 246, 237, 0.85); }
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.pricing-card.featured li::before { background: var(--gold-soft); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 32px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--forest);
  margin: 0 0 18px;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.testimonial cite strong {
  color: var(--forest-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

/* Case studies */
.case-study {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px;
  margin-bottom: 24px;
}
.case-study .case-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.case-study h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--forest-deep);
  margin: 0 0 16px;
  line-height: 1.25;
}
.case-study .case-section {
  margin: 18px 0;
}
.case-study .case-section h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.case-study p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(20, 36, 28, 0.25);
  border-color: rgba(184, 149, 74, 0.4);
}
.blog-card .blog-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin: 0 0 14px;
  line-height: 1.25;
}
.blog-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.blog-card .read-more {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Article header (single blog post) */
.article-header {
  padding: clamp(64px, 9vw, 110px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.article-header .article-meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.article-header h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 22px;
  max-width: 26ch;
}
.article-header .article-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* Area / industry grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.area-card {
  padding-top: 28px;
  border-top: 1px solid var(--forest);
}
.area-card .area-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.area-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--forest-deep);
  line-height: 1.25;
}
.area-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Process steps */
.process-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  gap: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.process-list li:first-child { border-top: 1px solid var(--rule); }
.process-list .step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.process-list .step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--forest-deep);
}
.process-list .step-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* CTA band */
.cta-band {
  background: var(--forest);
  color: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  border-bottom: 1px solid var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(184, 149, 74, 0.14), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(184, 149, 74, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bg);
  margin: 0 auto 18px;
  max-width: 24ch;
  line-height: 1.18;
}
.cta-band p {
  color: rgba(250, 246, 237, 0.78);
  font-size: 1.02rem;
  max-width: 56ch;
  margin: 0 auto 30px;
}
.cta-band .btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
}
.cta-band .btn-primary:hover { background: var(--gold-soft); }

/* Footer nav (sitewide footer with link columns) */
.footer-nav {
  background: var(--forest-deep);
  color: rgba(250, 246, 237, 0.72);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(250, 246, 237, 0.08);
}
.footer-nav .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
}
.footer-nav h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li { padding: 4px 0; }
.footer-nav a {
  color: rgba(250, 246, 237, 0.65);
  font-size: 0.92rem;
  transition: color 0.18s ease;
}
.footer-nav a:hover { color: var(--bg); }

/* Table of contents */
.toc {
  background: var(--bg-alt);
  border-left: 2px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0;
  font-size: 0.95rem;
}
.toc h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.toc ol { padding-left: 20px; margin: 0; }
.toc li { padding: 3px 0; }
.toc a { color: var(--forest); }
.toc a:hover { color: var(--gold); }

/* Definitions / glossary */
.glossary-list { margin-top: 40px; }
.glossary-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.glossary-item:first-child { border-top: 1px solid var(--rule); }
.glossary-item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin: 0 0 10px;
}
.glossary-item .lang-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 4px 0;
  color: var(--ink-soft);
}
.glossary-item .lang-row .lang {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.glossary-item .lang-row strong { color: var(--forest-deep); font-weight: 600; }

/* Contact form */
.contact-form {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: 36px;
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Sitemap list */
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 40px;
}
.sitemap-list h3 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.sitemap-list ul { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { padding: 5px 0; }
.sitemap-list a {
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
  font-size: 0.95rem;
}
.sitemap-list a:hover { border-bottom-color: var(--gold); }
