
    :root {
      --black: #000000;
      --dark-grey: #111111;
      --white: #ffffff;
      --light-grey: #dddddd;
      --white-accent: #ffffff;
      --silver: #cccccc;
      --slate: #4a5568;
      --light: #f7f9fc;
      --border: #e2e8f0;
      --text: #1a202c;
      --text-muted: #718096;
      --shadow: 0 4px 24px rgba(13,31,60,0.10);
      --shadow-lg: 0 12px 48px rgba(13,31,60,0.16);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── PAGE SYSTEM ─── */
    .page { display: none; animation: fadeIn 0.4s ease; }
    .page.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(0,0,0,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--white); text-decoration: none;
      display: flex; align-items: center; gap: 0.5rem;
      cursor: pointer;
    }
    .nav-logo span { color: #ffffff; }
    .nav-logo .logo-mark {
      width: 36px; height: 36px;
      background: var(--white);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 900; color: #ffffff;
    }
    .nav-links { display: flex; align-items: center; gap: 0.25rem; }
    .nav-links a, .nav-links .nav-dropdown-toggle {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.88rem; font-weight: 500;
      padding: 0.5rem 0.85rem;
      border-radius: 6px;
      transition: all 0.2s;
      cursor: pointer;
      background: none; border: none; font-family: inherit;
    }
    .nav-links a:hover, .nav-links .nav-dropdown-toggle:hover,
    .nav-links a.active { color: #ffffff; background: rgba(255,255,255,0.06); }
    .nav-dropdown { position: relative; }
    .nav-dropdown-menu {
      display: none;
      position: absolute; top: calc(100% + 8px); left: 0;
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      min-width: 240px;
      padding: 0.5rem;
      box-shadow: var(--shadow-lg);
    }
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a {
      display: block; padding: 0.6rem 1rem;
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
      border-radius: 6px;
    }
    .nav-dropdown-menu a:hover { color: #ffffff; background: rgba(255,255,255,0.06); }
    .nav-cta {
      background: var(--white) !important;
      color: #000000 !important;
      font-weight: 600 !important;
      padding: 0.5rem 1.2rem !important;
    }
    .nav-cta:hover { background: #dddddd !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: radial-gradient(ellipse 120% 120% at calc(50% + 20px) 50%, #3a3a3a 0%, #111111 55%, #000000 100%);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding-top: 72px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: none;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 100px;
      padding: 0.4rem 1rem;
      font-size: 0.8rem; font-weight: 600;
      color: #ffffff;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 900; line-height: 1.15;
      color: #ffffff;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { color: #cccccc; font-style: normal; }
    .hero-sub {
      font-size: 1.1rem; line-height: 1.75;
      color: rgba(255,255,255,0.72);
      margin-bottom: 2.5rem;
      max-width: 520px;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: #ffffff; color: #000000;
      font-weight: 700; font-size: 0.95rem;
      padding: 0.9rem 2rem; border-radius: 8px;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.2s; font-family: inherit;
    }
    .btn-primary:hover { background: var(--light-grey); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: #ffffff;
      font-weight: 600; font-size: 0.95rem;
      padding: 0.9rem 2rem; border-radius: 8px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.25);
      transition: all 0.2s; cursor: pointer; font-family: inherit;
    }
    .btn-secondary:hover { border-color: #ffffff; color: #ffffff; }
    .hero-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
      margin-top: 3rem; padding: 2rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900;
      color: #ffffff; line-height: 1;
    }
    .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; }
    .hero-card {
      background: #000000;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 2.5rem;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06), inset -6px 0 40px rgba(255,255,255,0.04);
    }
    .hero-card h3 {
      font-family: 'Playfair Display', serif;
      color: #ffffff; font-size: 1.3rem; margin-bottom: 1.5rem;
    }
    .hero-card h3 span { color: #cccccc; }
    .service-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .pill {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.82rem; font-weight: 500;
      cursor: pointer; transition: all 0.2s;
    }
    .pill:hover { background: #ffffff; color: #000000; }
    .trust-row {
      margin-top: 2rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .trust-row p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .trust-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .trust-badge {
      background: rgba(255,255,255,0.07);
      border: none;
      border-radius: 6px;
      padding: 0.35rem 0.7rem;
      font-size: 0.7rem; font-weight: 600;
      color: rgba(255,255,255,0.65);
      text-align: center;
      white-space: nowrap;
    }
    .trust-badge.full-width { flex: 0 1 auto; }

    /* ─── SECTIONS ─── */
    section { padding: 6rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 0.78rem; font-weight: 700;
      color: #888888; text-transform: uppercase; letter-spacing: 0.12em;
      margin-bottom: 0.75rem; text-align: left;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800; line-height: 1.2;
      color: var(--black); margin-bottom: 1rem;
      display: block; width: 100%; text-align: left;
    }
    .section-title em { color: #ffffff; font-style: normal; }
    .light-bg .section-title em { color: #333333; }
    .faq-section .section-title em { color: #333333; }
    section:not(.why-section):not(.faq-section):not(.light-bg) .section-title em { color: #333333; }
    .section-sub {
      font-size: 1.05rem; color: var(--text-muted);
      line-height: 1.75; max-width: 600px; text-align: left;
    }
    .section-header { margin-bottom: 3.5rem; text-align: left; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* ─── SERVICES GRID ─── */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
    .service-card {
      background: #e8e8e8;
      border: 1px solid #d0d0d0;
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
      cursor: pointer;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: #333333; transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { background: #ffffff; box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(0,0,0,0.06);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .service-icon svg { width: 24px; height: 24px; }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--black); margin-bottom: 0.75rem;
    }
    .service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
    .service-card .learn-more {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: #ffffff; font-weight: 600; font-size: 0.85rem;
      margin-top: 1.25rem; cursor: pointer;
      background: none; border: none; font-family: inherit; padding: 0;
    }

    /* ─── WHY US ─── */
    .why-section { background: #1a1a1a; }
    .why-section .section-title { color: var(--white); }
    .why-section .section-sub { color: rgba(255,255,255,0.6); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .why-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px; padding: 2rem;
      transition: all 0.3s;
    }
    .why-card:hover { background: #000000; border-color: #000000; }
    .why-card:hover h3 { color: #ffffff; }
    .why-card:hover p { color: rgba(255,255,255,0.7); }
    .why-card:hover .why-num { color: rgba(255,255,255,0.2); }
    .why-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; font-weight: 900;
      color: rgba(255,255,255,0.3); line-height: 1;
      margin-bottom: 1rem;
    }
    .why-card h3 { color: #ffffff; font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
    .why-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; }

    /* ─── SPECIALTIES BANNER ─── */
    .specialties-banner {
      background: linear-gradient(135deg, var(--dark-grey), var(--black));
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 3rem 2rem;
    }
    .specialties-inner { max-width: 1200px; margin: 0 auto; }
    .specialties-label { font-size: 0.78rem; color: var(--white-accent); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 1.5rem; }
    .specialties-pills { display: flex; flex-wrap: wrap; gap: 1rem; }
    .spec-pill {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      padding: 0.6rem 1.25rem;
      border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
    }

    /* ─── PROCESS STEPS ─── */
    .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
    .process-step {
      text-align: center; padding: 2rem 1.5rem;
      position: relative;
    }
    .process-step::after {
      content: '→';
      position: absolute; right: -10px; top: 50%;
      transform: translateY(-50%);
      color: #ffffff; font-size: 1.2rem;
      font-weight: 300;
    }
    .process-step:last-child::after { display: none; }
    .step-circle {
      width: 64px; height: 64px;
      background: #000000; color: #ffffff;
      border: 2px solid #ffffff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 900;
      margin: 0 auto 1.25rem;
    }
    .process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
    .process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
    .testimonial-card {
      background: #e8e8e8;
      border: 1px solid #d0d0d0;
      border-radius: 16px; padding: 2rem;
      position: relative;
    }
    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 4rem; line-height: 1;
      color: #333333; opacity: 0.15;
      position: absolute; top: 1rem; right: 1.5rem;
    }
    .testimonial-card p { font-size: 0.95rem; line-height: 1.75; color: #2a2a2a; margin-bottom: 1.5rem; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .author-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: #333333; display: flex; align-items: center; justify-content: center;
      color: #ffffff; font-weight: 700; font-size: 1rem;
    }
    .author-name { font-weight: 700; font-size: 0.9rem; color: #111111; }
    .author-title { font-size: 0.78rem; color: #555555; }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: linear-gradient(135deg, var(--white), #333333);
      padding: 5rem 2rem; text-align: center;
    }
    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #ffffff; font-weight: 900;
      margin-bottom: 1rem;
    }
    .cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
    .cta-band .btn-navy {
      background: #333333; color: var(--white);
      font-weight: 700; font-size: 1rem;
      padding: 1rem 2.5rem; border-radius: 8px;
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.2s; border: none; cursor: pointer; font-family: inherit;
    }
    .cta-band .btn-navy:hover { background: var(--dark-grey); transform: translateY(-2px); }

    /* ─── ABOUT PAGE ─── */
    .about-hero {
      background: var(--black); padding: 8rem 2rem 6rem;
      text-align: center;
    }
    .about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 900; margin-bottom: 1rem; }
    .about-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }
    .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--black); margin-bottom: 1rem; }
    .about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
    .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .value-item { background: var(--light); border-radius: 12px; padding: 1.25rem; }
    .value-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
    .value-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .team-card { text-align: center; }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, #333333, #000000);
      display: flex; align-items: center; justify-content: center;
      color: white; font-weight: 700; font-size: 1.4rem;
      margin: 0 auto 1rem;
    }
    .team-card h4 { font-weight: 700; color: var(--black); margin-bottom: 0.25rem; }
    .team-card p { font-size: 0.82rem; color: var(--text-muted); }
    .about-visual {
      background: linear-gradient(135deg, var(--black), var(--dark-grey));
      border-radius: 20px; padding: 3rem;
    }
    .about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .about-stat { text-align: center; }
    .about-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; font-weight: 900; color: #ffffff;
    }
    .about-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

    /* ─── SERVICE DETAIL PAGE ─── */
    .service-hero {
      background: radial-gradient(ellipse 120% 120% at calc(50% + 20px) 50%, #3a3a3a 0%, #111111 55%, #000000 100%); padding: 8rem 2rem 5rem;
      position: relative; overflow: hidden;
    }
    .service-hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .service-hero-inner { position: relative; z-index: 2; }
    .service-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
    .service-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); font-weight: 900; margin-bottom: 1rem; }
    .service-hero p { color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.75; }
    .service-features { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; }
    .feature-list { list-style: none; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6;
    }
    .feature-list li:last-child { border-bottom: none; }
    .check { color: #ffffff; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
    .faq-section { background: var(--light); }
    .faq-item {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; margin-bottom: 1rem; overflow: hidden;
    }
    .faq-q {
      padding: 1.25rem 1.5rem;
      font-weight: 600; font-size: 0.97rem; color: var(--black);
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    }
    .faq-q span { transition: transform 0.3s; }
    .faq-a {
      padding: 0 1.5rem 1.25rem;
      font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
      display: none;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-q span { transform: rotate(45deg); }

    /* ─── BLOG ─── */
    .blog-hero { background: var(--black); padding: 8rem 2rem 5rem; text-align: center; }
    .blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 900; margin-bottom: 1rem; }
    .blog-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
    .blog-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      transition: all 0.3s; cursor: pointer;
    }
    .blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .blog-img {
      height: 180px;
      background: linear-gradient(135deg, var(--black), var(--dark-grey));
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
    }
    .blog-body { padding: 1.5rem; }
    .blog-cat {
      font-size: 0.72rem; font-weight: 700;
      color: #ffffff; text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; line-height: 1.4; }
    .blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
    .blog-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); }

    /* ─── BLOG ARTICLE ─── */
    .article-hero { background: var(--black); padding: 8rem 2rem 5rem; }
    .article-hero-inner { max-width: 800px; margin: 0 auto; }
    .article-cat { font-size: 0.78rem; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
    .article-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); font-weight: 900; line-height: 1.2; margin-bottom: 1.25rem; }
    .article-meta { display: flex; gap: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
    .article-body { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
    .article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--black); margin: 2.5rem 0 0.5rem; }
    .article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 2rem 0 0.75rem; }
    .article-body p { font-size: 0.97rem; line-height: 1.85; color: var(--slate); margin-bottom: 1.25rem; }
    .article-body ul { margin: 1rem 0 1.5rem 1.5rem; }
    .article-body ul li { font-size: 0.95rem; line-height: 1.75; color: var(--slate); margin-bottom: 0.5rem; }
    .article-callout {
      background: #3a3a3a;
      border-left: 4px solid #666666;
      border-radius: 0 12px 12px 0;
      padding: 1.5rem 2rem; margin: 0.75rem 0;
    }
    .article-callout p { margin: 0; font-size: 1rem; color: #ffffff; font-weight: 500; }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--light); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
    .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--black); margin-bottom: 1rem; }
    .contact-info p { color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
    .contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
    .contact-icon {
      width: 44px; height: 44px; background: rgba(255,255,255,0.06);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-detail h4 { font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
    .contact-detail p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
    .contact-form {
      background: var(--white); border-radius: 20px;
      padding: 2.5rem; box-shadow: var(--shadow);
    }
    .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #ffffff; font-weight: 700; margin-bottom: 1.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 0.8rem 1rem;
      border: 1px solid var(--border); border-radius: 8px;
      font-family: inherit; font-size: 0.92rem; color: var(--text);
      background: var(--white); transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: #ffffff; box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.6);
      padding: 4rem 2rem 2rem;
    }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
    .footer-col a {
      display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem;
      text-decoration: none; margin-bottom: 0.6rem; cursor: pointer;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #ffffff; }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
      font-size: 0.82rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; }
    .footer-bottom a:hover { color: #ffffff; }

    /* ─── BACK BUTTON ─── */
    .back-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: #ffffff; font-size: 0.88rem; font-weight: 600;
      cursor: pointer; background: none; border: none; font-family: inherit;
      padding: 0; margin-bottom: 1rem;
    }
    .back-btn:hover { color: var(--light-grey); }

    /* ─── BREADCRUMBS ─── */
    .breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.45);
      margin-bottom: 1.5rem;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); cursor: pointer; }
    .breadcrumb a:hover { color: #ffffff; }
    .breadcrumb span { color: rgba(255,255,255,0.25); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero-content, .about-content, .contact-grid, .service-hero-inner, .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      nav { padding: 0 1rem; }
      .nav-links { display: none; }
      .nav-links.mobile-open {
        display: flex; flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: var(--black); padding: 2rem; gap: 0.5rem;
        overflow-y: auto;
      }
      .nav-dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .hero-stats { grid-template-columns: 1fr 1fr; }
      .about-stat-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      section { padding: 4rem 1.25rem; }
    }

    /* ─── UTILITY ─── */
    .light-bg { background: var(--light); }
    .mt-2 { margin-top: 2rem; }
    .text-center { text-align: center; }
    .inline-teal { color: #ffffff; }
  