/* ============================================================
   Vintner's Legacy Consulting — Design System
   Palette: Stone, Charcoal, Off-White, Deep Vine, Brass
   Typography: Serif headings + Sans-serif body
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --color-charcoal: #2C2C2C;
  --color-charcoal-light: #3D3D3D;
  --color-stone: #8B8578;
  --color-stone-light: #A9A295;
  --color-off-white: #F5F3EF;
  --color-cream: #FAF8F5;
  --color-white: #FFFFFF;
  --color-vine: #722F37;
  --color-vine-dark: #5A252C;
  --color-vine-light: #8B3A44;
  --color-brass: #B8860B;
  --color-brass-light: #D4A017;
  --color-border: #E0DDD7;
  --color-border-dark: #C5C0B8;
  --color-text: #2C2C2C;
  --color-text-secondary: #5A5A5A;
  --color-text-light: #7A7A7A;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
  --section-padding: 96px;
  --section-padding-sm: 64px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-vine);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-vine-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-charcoal);
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-vine);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

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

.section--charcoal {
  background: var(--color-charcoal);
  color: var(--color-off-white);
}
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 {
  color: var(--color-white);
}
.section--charcoal p {
  color: var(--color-stone-light);
}

.section--vine {
  background: var(--color-vine);
  color: var(--color-off-white);
}
.section--vine h2,
.section--vine h3 {
  color: var(--color-white);
}
.section--vine p {
  color: rgba(255,255,255,0.85);
}

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

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

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

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-header .label {
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  margin-bottom: 16px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-vine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.nav__brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone);
  display: block;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-charcoal);
  background: var(--color-cream);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.nav__dropdown-item:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
}

.nav__cta {
  margin-left: 8px;
}

/* Mobile menu button */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-vine);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-vine-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-vine);
  border: 1.5px solid var(--color-vine);
}
.btn--secondary:hover {
  background: var(--color-vine);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-vine);
}
.btn--white:hover {
  background: var(--color-off-white);
  color: var(--color-vine-dark);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-vine);
  font-size: 1.25rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.card__text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-vine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link:hover {
  gap: 10px;
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: var(--section-padding);
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(114,47,55,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  max-width: 720px;
}

.hero .label {
  margin-bottom: 16px;
  display: inline-block;
}

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

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

.hero__microcopy {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-stone);
}

/* Page Hero (interior pages) */
.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.page-hero .lead {
  max-width: 640px;
}

/* --- Service Tiles --- */
.service-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-tile:hover {
  border-color: var(--color-vine);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-tile__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-border);
  margin-bottom: 16px;
  line-height: 1;
}
.service-tile__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}
.service-tile__text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- Process Steps --- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process__step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--color-vine);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.process__step h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.process__step p {
  font-size: 0.88rem;
}

/* --- Proof / Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-vine);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

/* --- Testimonial / Quote Block --- */
.quote-block {
  background: var(--color-cream);
  border-left: 4px solid var(--color-vine);
  padding: 32px 36px;
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  margin: 32px 0;
}
.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
}

/* --- Insight Cards --- */
.insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.insight-card__img {
  height: 200px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-stone);
  font-size: 0.85rem;
}
.insight-card__body {
  padding: 24px;
}
.insight-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vine);
  margin-bottom: 8px;
  display: block;
}
.insight-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}
.insight-card__excerpt {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

/* --- Case Study Cards --- */
.case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.case-card:hover {
  border-color: var(--color-vine);
  box-shadow: var(--shadow-md);
}
.case-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vine);
  margin-bottom: 12px;
  display: block;
}
.case-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}
.case-card__section {
  margin-bottom: 16px;
}
.case-card__section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}
.case-card__section p {
  font-size: 0.9rem;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-vine);
  box-shadow: 0 0 0 3px rgba(114,47,55,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-stone);
  margin-top: 8px;
}

/* --- Newsletter Inline --- */
.newsletter-inline {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.newsletter-inline input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
}
.newsletter-inline input:focus {
  outline: none;
  border-color: var(--color-vine);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 {
  margin-bottom: 16px;
}
.cta-banner p {
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: var(--color-stone-light);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--color-stone);
  line-height: 1.6;
  max-width: 320px;
}
.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--color-stone-light);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--color-white);
}
.footer__bottom {
  border-top: 1px solid var(--color-charcoal-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-stone);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  color: var(--color-stone);
  font-size: 0.82rem;
}
.footer__bottom-links a:hover {
  color: var(--color-white);
}

/* --- Deliverables List --- */
.deliverables {
  list-style: none;
}
.deliverables li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.deliverables li::before {
  content: '\2713';
  color: var(--color-vine);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-stone);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--reverse {
  direction: rtl;
}
.two-col--reverse > * {
  direction: ltr;
}

/* --- Credentials --- */
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.credential__icon {
  width: 40px;
  height: 40px;
  background: var(--color-cream);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-vine);
  font-size: 1rem;
}
.credential__text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}
.credential__text strong {
  color: var(--color-charcoal);
}

/* --- Contact page --- */
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-option {
  background: var(--color-cream);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}
.contact-option h3 {
  margin-bottom: 12px;
}
.contact-option p {
  margin-bottom: 24px;
  font-size: 0.92rem;
}

/* --- Disclosure page --- */
.disclosure-section {
  margin-bottom: 40px;
}
.disclosure-section h3 {
  margin-bottom: 12px;
}
.disclosure-section p,
.disclosure-section ul {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}
.disclosure-section ul {
  list-style: disc;
  padding-left: 24px;
}
.disclosure-section ul li {
  margin-bottom: 8px;
}

/* --- Hero with Background Image --- */
.hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.72) 0%, rgba(44,44,44,0.45) 100%);
  z-index: 1;
}
.hero--image .container {
  position: relative;
  z-index: 2;
}
.hero--image h1,
.hero--image .lead,
.hero--image .label,
.hero--image .hero__microcopy {
  color: #fff;
}
.hero--image .lead {
  color: rgba(255,255,255,0.88);
}
.hero--image .label {
  color: rgba(255,255,255,0.75);
}
.hero--image .hero__microcopy {
  color: rgba(255,255,255,0.65);
}

.page-hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.75) 0%, rgba(44,44,44,0.5) 100%);
  z-index: 1;
}
.page-hero--image .container {
  position: relative;
  z-index: 2;
}
.page-hero--image h1,
.page-hero--image .lead {
  color: #fff;
}
.page-hero--image .lead {
  color: rgba(255,255,255,0.85);
}

/* --- Section with Background Image --- */
.section--bg-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.65);
  z-index: 1;
}
.section--bg-image .container {
  position: relative;
  z-index: 2;
}

/* --- Image in Two-Column Layout --- */
.two-col__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Image Card (for insight cards with real images) --- */
.insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Headshot / Bio Image --- */
.bio-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  max-width: 320px;
}
.bio-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- CTA Banner with Background Image --- */
.cta-banner--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-banner--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(114,47,55,0.82);
  z-index: 1;
}
.cta-banner--image .container {
  position: relative;
  z-index: 2;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

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

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
  .nav__toggle {
    display: block;
  }
  .nav__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col--reverse {
    direction: ltr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    text-align: center;
    justify-content: center;
  }

  .newsletter-inline {
    flex-direction: column;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 64px;
  }

  .hero--image {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .service-tile { padding: 28px; }
}
