/* ============================================================
   Landscape Charlie — Premium Luxury Design System
   Colors: Black #000000 + Dark Purple #2D1B4E + Light Purple accent #9B7FCC
   Font: Inter (modern sans-serif)
   Vibe: premium-luxury
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #000000;
  --color-secondary: #2D1B4E;
  --color-accent: #9B7FCC;
  --color-accent-hover: #B49AE0;
  --color-bg: #FAFAF8;
  --color-bg-dark: #0A0A0A;
  --color-bg-purple: #1A1030;
  --color-text: #1A1A1A;
  --color-text-light: #FFFFFF;
  --color-muted: #6B6B6B;
  --color-border: #E5E5E3;
  --color-white: #FFFFFF;
  --color-success: #3D8B5D;
  --color-error: #C74545;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-small: 0.875rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --spacing-section: 4rem;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul, ol { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: var(--color-primary); padding: 0.5rem 1.5rem;
  border-radius: var(--radius); z-index: 10000; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-4xl); margin-bottom: 1.5rem; }
h2 { font-size: var(--fs-3xl); margin-bottom: 1.25rem; }
h3 { font-size: var(--fs-xl); margin-bottom: 1rem; }
h4 { font-size: var(--fs-lg); margin-bottom: 0.75rem; }
h5 { font-size: var(--fs-base); margin-bottom: 0.5rem; }
h6 { font-size: var(--fs-small); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.lead { font-size: var(--fs-lg); line-height: 1.6; color: var(--color-muted); }
.muted { color: var(--color-muted); }
.text-center { text-align: center; }
.text-white { color: var(--color-white); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--spacing-section) 0; }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark .section-label { color: var(--color-accent); }
.section-dark .muted, .section-dark .lead { color: rgba(255,255,255,0.7); }
.section-purple { background: var(--color-bg-purple); color: var(--color-text-light); }
.section-purple h1, .section-purple h2, .section-purple h3, .section-purple h4 { color: var(--color-white); }
.section-purple .section-label { color: var(--color-accent); }
.section-purple .muted, .section-purple .lead { color: rgba(255,255,255,0.7); }
.section-cream { background: #F5F3EF; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; font-family: var(--font-body); font-size: var(--fs-small);
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); text-decoration: none;
  line-height: 1.2;
}
.btn--primary {
  background: var(--color-accent); color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover); border-color: var(--color-accent-hover);
  color: var(--color-primary);
}
.btn--secondary {
  background: transparent; color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent); color: var(--color-primary);
}
.btn--dark {
  background: var(--color-primary); color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--dark:hover {
  background: var(--color-secondary); border-color: var(--color-secondary);
  color: var(--color-white);
}
.btn--outline {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary); color: var(--color-white);
}
.btn--outline-light {
  background: transparent; color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8);
  color: var(--color-white);
}
.btn--sm { padding: 0.625rem 1.25rem; font-size: var(--fs-xs); }
.btn--full { width: 100%; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Header --- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-xs);
}
.header__top a { color: rgba(255,255,255,0.7); }
.header__top a:hover { color: var(--color-accent); }
.header__phone { display: flex; align-items: center; gap: 0.5rem; }
.header__phone svg { width: 14px; height: 14px; }
.header__phone a { color: var(--color-white); font-weight: 600; letter-spacing: 0.5px; }
.header__phone-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); margin-right: 0.25rem; }
.header__social { display: flex; gap: 1rem; }
.header__social a { display: flex; }
.header__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); transition: fill var(--transition); }
.header__social a:hover svg { fill: var(--color-accent); }
.header__main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
}
.header__logo img { height: 72px; width: auto; filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 0; align-items: center; }
.nav__link {
  display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.85);
  font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--color-accent); }
.header__cta { margin-left: 1rem; }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--color-white);
}
.mobile-toggle svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-primary); z-index: 9999; padding: 2rem;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close {
  align-self: flex-end; background: none; border: none;
  color: var(--color-white); cursor: pointer; padding: 0.5rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu__nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.mobile-menu__link {
  display: block; padding: 1rem; color: var(--color-white);
  font-size: var(--fs-xl); font-weight: 600; text-align: center;
  text-transform: uppercase; letter-spacing: 2px;
}
.mobile-menu__link:hover { color: var(--color-accent); }
.mobile-menu__cta { text-align: center; margin-top: 2rem; }
.mobile-menu__phone {
  text-align: center; margin-top: 1.5rem;
  color: rgba(255,255,255,0.7); font-size: var(--fs-small);
}
.mobile-menu__phone a { color: var(--color-accent); }

/* --- Hero --- */
.hero {
  position: relative; overflow: hidden;
  padding: 8rem 0; min-height: 520px;
  display: flex; align-items: center;
}
.hero--inner { padding: 5rem 0; min-height: 340px; }
.hero--home { padding: 10rem 0 8rem; min-height: 600px; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(45,27,78,0.7) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--color-white); max-width: 700px; }
.hero p { color: rgba(255,255,255,0.85); max-width: 600px; font-size: var(--fs-lg); }
.hero .section-label { color: var(--color-accent); }
.hero .btn-group { margin-top: 2rem; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem;
  font-size: var(--fs-xs); margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero .breadcrumbs { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.hero .breadcrumbs a { color: rgba(255,255,255,0.6); }
.hero .breadcrumbs a:hover { color: var(--color-accent); }
.hero .breadcrumbs .current { color: rgba(255,255,255,0.9); }
.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .current { color: var(--color-text); font-weight: 500; }
.breadcrumbs span { color: var(--color-muted); }

/* --- Cards --- */
.card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card__body { padding: 1.75rem; }
.card__title { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.card__text { color: var(--color-muted); font-size: var(--fs-small); margin-bottom: 1rem; }
.card--dark {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
}
.card--dark .card__title { color: var(--color-white); }
.card--dark .card__text { color: rgba(255,255,255,0.6); }
.card--dark:hover { background: rgba(255,255,255,0.08); }

/* --- Service Cards --- */
.service-card { text-align: center; padding: 2.5rem 2rem; }
.service-card .card-img { aspect-ratio: 1; border-radius: var(--radius-lg); margin-bottom: 1.5rem; }
.service-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(155,127,204,0.15); border-radius: 50%; color: var(--color-accent);
}
.service-card__icon svg { width: 28px; height: 28px; }

/* --- Trust Bar / Stats --- */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; padding: 2.5rem 0;
}
.trust-stat { text-align: center; }
.trust-stat__number {
  font-size: var(--fs-3xl); font-weight: 700; color: var(--color-accent);
  line-height: 1;
}
.trust-stat__label {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-muted); margin-top: 0.5rem;
}
.section-dark .trust-stat__label { color: rgba(255,255,255,0.6); }

/* --- Certification Bar --- */
.cert-bar {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem; padding: 2rem 0;
}
.cert-bar img {
  height: 120px; width: auto; opacity: 1;
  object-fit: contain;
}
.section-dark .cert-bar img { filter: brightness(0) invert(1); opacity: 0.85; }
.section-dark .cert-bar img:hover { opacity: 1; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; color: var(--color-accent); opacity: 0.3;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card__stars { color: var(--color-accent); margin-bottom: 1rem; font-size: var(--fs-lg); }
.testimonial-card__text {
  font-size: var(--fs-base); line-height: 1.8; color: var(--color-text);
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-card__author { font-weight: 600; color: var(--color-primary); }
.testimonial-card__location { font-size: var(--fs-small); color: var(--color-muted); }
.section-dark .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section-dark .testimonial-card__text { color: rgba(255,255,255,0.85); }
.section-dark .testimonial-card__author { color: var(--color-white); }
.section-dark .testimonial-card__location { color: rgba(255,255,255,0.5); }

/* --- Process Steps --- */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
  counter-reset: step;
}
.process-step {
  position: relative; padding: 2rem; text-align: center;
  counter-increment: step;
}
.process-step::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin: 0 auto 1.25rem;
  background: var(--color-accent); color: var(--color-primary);
  font-size: var(--fs-lg); font-weight: 700; border-radius: 50%;
}
.process-step h3 { font-size: var(--fs-base); margin-bottom: 0.75rem; }
.process-step p { font-size: var(--fs-small); color: var(--color-muted); }
.section-dark .process-step p { color: rgba(255,255,255,0.6); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600;
  color: var(--color-text); text-align: left; gap: 1rem;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-accent); }
.faq-item__icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-lg); color: var(--color-accent);
  transition: transform var(--transition);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item__answer.open { max-height: 500px; padding-bottom: 1.25rem; }
.faq-item__answer p { color: var(--color-muted); font-size: var(--fs-small); line-height: 1.8; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.section-dark .faq-item { border-color: rgba(255,255,255,0.1); }
.section-dark .faq-item__question { color: var(--color-white); }
.section-dark .faq-item__answer p { color: rgba(255,255,255,0.6); }

/* --- Gallery --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: var(--color-white); font-size: var(--fs-small); font-weight: 500; }
.gallery-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.gallery-filter__btn {
  padding: 0.5rem 1.25rem; background: transparent; border: 1px solid var(--color-border);
  border-radius: 100px; font-family: var(--font-body); font-size: var(--fs-xs);
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; transition: all var(--transition); color: var(--color-text);
}
.gallery-filter__btn:hover, .gallery-filter__btn.active {
  background: var(--color-primary); color: var(--color-white);
  border-color: var(--color-primary);
}

/* --- Before/After --- */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.before-after-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.before-after-pair img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.before-after-label {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 2px;
  font-weight: 600; text-align: center; padding: 0.75rem;
  background: var(--color-bg); color: var(--color-muted);
}
.before-after-label--after { background: var(--color-accent); color: var(--color-primary); }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.5rem; font-size: var(--fs-small);
  font-weight: 600; color: var(--color-text);
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--fs-base);
  color: var(--color-text); background: var(--color-white);
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Investment Tiers --- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tier-card {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center; position: relative;
  transition: all var(--transition); background: var(--color-white);
  color: var(--color-text);
}
.tier-card h3, .tier-card h4 { color: var(--color-primary); }
.tier-card p { color: var(--color-muted); }
.tier-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-lg); }
.tier-card--featured {
  border-color: var(--color-accent); background: var(--color-bg-dark);
  color: var(--color-white);
}
.tier-card--featured h3, .tier-card--featured h4 { color: var(--color-white); }
.tier-card--featured .tier-card__price { color: var(--color-accent); }
.tier-card__label {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-accent); margin-bottom: 1rem; font-weight: 600;
}
.tier-card__price {
  font-size: var(--fs-2xl); font-weight: 700; color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.tier-card__list { text-align: left; margin-bottom: 2rem; }
.tier-card__list li {
  padding: 0.5rem 0; border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-small); color: var(--color-muted);
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.tier-card--featured .tier-card__list li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.tier-card__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: var(--color-primary);
  padding: 0.25rem 1rem; border-radius: 100px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-bg-dark); padding: var(--spacing-section) 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-white); }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 2rem; }

/* --- Content Sections --- */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; }
.content-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- Service Area List --- */
.area-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.area-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; background: var(--color-white);
  border: 1px solid var(--color-border); border-radius: var(--radius);
  color: var(--color-text); font-weight: 500;
  transition: all var(--transition);
}
.area-link:hover {
  border-color: var(--color-accent); color: var(--color-accent);
  transform: translateX(4px);
}
.area-link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent); }

/* --- Blog --- */
.blog-card .card-img { aspect-ratio: 16/9; }
.blog-card .card__meta {
  font-size: var(--fs-xs); color: var(--color-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
}
.blog-card .card__title a { color: var(--color-primary); }
.blog-card .card__title a:hover { color: var(--color-accent); }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { font-size: var(--fs-2xl); margin-top: 2.5rem; }
.blog-content h3 { margin-top: 2rem; }
.blog-content ul, .blog-content ol { margin: 1rem 0 1rem 2rem; }
.blog-content li { margin-bottom: 0.5rem; list-style: disc; color: var(--color-muted); }
.blog-content ol li { list-style: decimal; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.blog-content th, .blog-content td {
  padding: 0.75rem 1rem; border: 1px solid var(--color-border);
  text-align: left; font-size: var(--fs-small);
}
.blog-content th { background: var(--color-bg-dark); color: var(--color-white); font-weight: 600; }
.blog-author {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 2rem; background: var(--color-bg); border-radius: var(--radius-lg);
  margin-top: 3rem;
}
.blog-author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.blog-author__name { font-weight: 700; color: var(--color-primary); }
.blog-author__bio { font-size: var(--fs-small); color: var(--color-muted); margin-top: 0.25rem; }

/* --- Image Placeholders --- */
.img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E8E4DE, #D4CFC8);
  color: var(--color-muted); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 1px; z-index: 0;
}
.img-real {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; opacity: 0;
  transition: opacity var(--transition);
}
.img-real.loaded { opacity: 1; }

/* --- Footer --- */
.footer { background: var(--color-primary); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img { height: 42px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: var(--fs-small); line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--color-accent); background: rgba(155,127,204,0.15); }
.footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.footer__social a:hover svg { fill: var(--color-accent); }
.footer h4 {
  color: var(--color-white); font-size: var(--fs-small);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer a { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }
.footer a:hover { color: var(--color-accent); }
.footer__contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem; font-size: var(--fs-small);
}
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--color-accent); }
.footer .btn--primary { margin-top: 1rem; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: var(--fs-xs); color: rgba(255,255,255,0.35);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.35); }
.footer__legal a:hover { color: var(--color-accent); }

/* --- Tables (content) --- */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-lg); overflow: hidden; }
.data-table th {
  background: var(--color-bg-dark); color: var(--color-white);
  padding: 1rem 1.25rem; text-align: left; font-size: var(--fs-small);
  font-weight: 600; letter-spacing: 0.5px;
}
.data-table td {
  padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-small);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

/* --- Misc --- */
.divider { height: 1px; background: var(--color-border); margin: 3rem 0; }
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem; background: rgba(201,169,110,0.12);
  color: var(--color-accent); font-size: var(--fs-xs);
  font-weight: 600; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.625rem 0; font-size: var(--fs-small); color: var(--color-muted);
}
.checklist li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(155,127,204,0.15); color: var(--color-accent); flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; }

/* --- Thank You State --- */
.thanks-msg { text-align: center; padding: 3rem 2rem; }
.thanks-msg h2 { color: var(--color-accent); margin-bottom: 1rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split--reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --spacing-section: 3rem;
  }
  .nav { display: none; }
  .header__cta { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 5rem 0; min-height: auto; }
  .hero--home { padding: 6rem 0 5rem; min-height: auto; }
  .hero--inner { padding: 4rem 0; min-height: auto; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-stat__number { font-size: var(--fs-2xl); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-pair { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-bar { gap: 1.5rem; }
  .cert-bar img { height: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .blog-author { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.875rem;
    --fs-3xl: 1.5rem;
  }
  .container { padding: 0 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header__top { display: none; }
}

/* --- Print --- */
@media print {
  .header, .footer, .mobile-menu, .btn, .btn-group, .breadcrumbs { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto !important; padding: 2rem 0 !important; }
  .hero-overlay { background: transparent !important; }
  .section { padding: 1rem 0; }
  .section-dark, .section-purple { background: #fff !important; color: #000 !important; }
  .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
  .section-purple h1, .section-purple h2, .section-purple h3, .section-purple h4 { color: #000 !important; }
}
