
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #B8922A;
    --gold-light: #D4AF5A;
    --gold-pale: #F5EDD4;
    --dark: #111109;
    --mid: #2C2B24;
    --cream: #FAF7F0;
    --text: #3A3930;
    --text-light: #7A7868;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(250,247,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,146,42,0.15);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; letter-spacing: 0.08em;
    color: var(--dark);
  }
  .nav-logo span { color: var(--gold); font-style: italic; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .btn-nav {
    background: var(--dark); color: var(--gold-pale);
    padding: 11px 26px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.25s;
  }
  .btn-nav:hover { background: var(--gold); color: var(--dark); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 30% 70%;
   /* padding-top: 80px; */
  }
  .hero-left {
    display: flex; flex-direction: column; 
        padding: 20px 110px 20px 80px;
    /*padding: 80px 64px 80px 80px;*/
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale); border: 1px solid rgba(184,146,42,0.3);
    padding: 8px 16px; margin-bottom: 36px;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold);
  }
  .hero-badge .stars { color: #F4A623; letter-spacing: -2px; }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300; line-height: 1.15;
    color: var(--dark); margin-bottom: 8px;
  }
  .hero-h1 em {
    font-style: italic; color: var(--gold);
    font-weight: 300;
  }
  .hero-sub {
    font-size: 0.92rem; line-height: 1.7; color: var(--text-light);
    max-width: 420px; margin-bottom: 25px; margin-top: 16px;
  }
  .hero-cta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .btn-primary {
    background: var(--gold); color: var(--dark);
    padding: 15px 34px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--dark); color: var(--gold-pale); }
  .btn-secondary {
    background: transparent; color: var(--text);
    padding: 14px 32px; border: 1.5px solid rgba(58,57,48,0.25); cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.25s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-trust {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.03em;
  }
  .trust-item::before {
    content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.8rem;
  }

  /* ── HERO GRID ── */


  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--dark);
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(184,146,42,0.2);
  }
  .stat-item {
    padding: 36px 24px; text-align: center;
    border-right: 1px solid rgba(184,146,42,0.12);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem; font-weight: 300; color: var(--gold-light);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(245,237,212,0.5);
    margin-top: 6px; text-transform: uppercase;
  }

  /* ── SERVICES ── */
  .section { padding: 30px 80px; }
  .section-header { margin-bottom: 64px; }
  .section-tag {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
    line-height: 1.2; color: var(--dark);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-subtitle {
    font-size: 0.9rem; color: var(--text-light); margin-top: 14px;
    max-width: 520px; line-height: 1.7;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .service-card {
    background: white;
    padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
  }
  .service-card:hover { transform: translateY(-4px); }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--gold-pale);
    line-height: 1; margin-bottom: 20px;
  }
  .service-icon {
    width: 40px; height: 40px; margin-bottom: 20px;
    color: var(--gold);
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: var(--dark);
    margin-bottom: 12px;
  }
  .service-desc {
    font-size: 0.83rem; line-height: 1.7; color: var(--text-light);
    margin-bottom: 24px;
  }
  .service-link {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; font-weight: 500;
  }
  .service-link::after { content: ' →'; }

  /* ── PROCESS ── */
  .process-section {
    background: var(--dark); padding: 100px 80px;
  }
  .process-section .section-title,
  .process-section .section-tag { color: var(--gold-light); }
  .process-section .section-title em { color: var(--gold); }
  .process-section .section-subtitle { color: rgba(245,237,212,0.55); }

  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px; position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute; top: 28px; left: 12.5%; right: 12.5%;
    height: 1px; background: rgba(184,146,42,0.3);
  }
  .process-step {
    padding: 0 24px; text-align: center; position: relative;
  }
  .step-dot {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    background: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--gold);
    position: relative; z-index: 1;
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: var(--gold-pale); margin-bottom: 10px;
  }
  .step-desc {
    font-size: 0.8rem; color: rgba(245,237,212,0.45); line-height: 1.65;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 100px 80px; background: var(--gold-pale); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 64px;
  }
  .testimonial-card {
    background: white; padding: 36px 32px;
    position: relative;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--gold-pale);
    position: absolute; top: 12px; left: 24px;
    line-height: 1;
  }
  .testimonial-text {
    font-size: 0.88rem; line-height: 1.75; color: var(--text);
    margin-bottom: 24px; position: relative; z-index: 1;
    padding-top: 20px;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--gold);
  }
  .author-name {
    font-size: 0.82rem; font-weight: 600; color: var(--dark);
  }
  .author-detail {
    font-size: 0.73rem; color: var(--text-light); margin-top: 2px;
  }
  .stars-row { color: #F4A623; font-size: 0.85rem; margin-bottom: 8px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--dark); padding: 100px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .cta-banner .section-title { color: var(--gold-pale); }
  .cta-banner .section-title em { color: var(--gold); }
  .cta-banner .section-subtitle { color: rgba(245,237,212,0.5); }
  .cta-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .cta-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.85rem; color: rgba(245,237,212,0.7);
  }
  .cta-features li::before {
    content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 1px;
  }
  .cta-right { display: flex; flex-direction: column; gap: 20px; }
  .cta-right .btn-primary { width: fit-content; font-size: 0.82rem; padding: 16px 40px; }
  .cta-note {
    font-size: 0.75rem; color: rgba(245,237,212,0.35); letter-spacing: 0.04em;
  }

  /* ── FOOTER ── */
  footer {
    background: #0D0D0A; padding: 60px 80px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  }
  .footer-brand { }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: var(--gold-pale); margin-bottom: 14px;
  }
  .footer-logo span { color: var(--gold); font-style: italic; }
  .footer-tagline {
    font-size: 0.8rem; color: rgba(245,237,212,0.35); line-height: 1.65;
    max-width: 240px;
  }
  .footer-col-title {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 0.8rem; color: rgba(245,237,212,0.45); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    background: #0D0D0A; padding: 20px 80px;
    border-top: 1px solid rgba(184,146,42,0.1);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 0.72rem; color: rgba(245,237,212,0.2); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.22s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.34s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.46s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.56s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 380px; }
    .hero-left { padding: 60px 24px; }
    .stats-bar { grid-template-columns: repeat(2,1fr); }
    .services-grid, .process-steps, .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .cta-banner, footer { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
    .section { padding: 60px 24px; }
    .process-section { padding: 60px 24px; }
    .testimonials-section { padding: 60px 24px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; }
  }

