*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:       #1a1a2e;
      --slate:     #3a3a52;
      --mist:      #f4f1eb;
      --cream:     #faf8f3;
      --gold:      #c8973a;
      --gold-light:#e8c06a;
      --sage:      #7a9e87;
      --white:     #ffffff;
      --border:    rgba(26,26,46,0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.6;
      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: 1.2rem 4rem;
      background: rgba(250,248,243,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Roboto', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 0.01em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
      text-decoration: none; color: var(--slate);
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--ink); color: var(--white);
      padding: 0.6rem 1.4rem; border-radius: 4px;
      font-size: 0.85rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 4rem 5rem;
      gap: 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; right: -120px; top: -80px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,151,58,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .hero-label::before {
      content: ''; display: block;
      width: 28px; height: 1.5px; background: var(--gold);
    }
    .hero h1 {
      font-family: 'Roboto', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: normal; color: var(--gold);
    }
    .hero-sub {
      font-size: 1.1rem; color: var(--slate);
      font-weight: 300; max-width: 480px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }
    .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--ink); color: var(--white);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-size: 0.9rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
    .btn-ghost {
      color: var(--ink); font-size: 0.9rem; font-weight: 500;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.4rem;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--gold); }
    .btn-ghost::after { content: '→'; transition: transform 0.2s; }
    .btn-ghost:hover::after { transform: translateX(4px); }

    .hero-visual {
      display: flex; flex-direction: column; gap: 1.2rem;
      animation: floatIn 0.8s ease both 0.2s;
    }
    @keyframes floatIn {
      from { opacity:0; transform: translateY(24px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.6rem 2rem;
      display: flex; align-items: center; gap: 1.2rem;
      box-shadow: 0 2px 20px rgba(26,26,46,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,26,46,0.1); }
    .stat-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: var(--mist);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
    }
    .stat-text strong {
      display: block; font-size: 1.4rem; font-weight: 700; color: var(--ink);
      font-family: 'Roboto', serif;
    }
    .stat-text span { font-size: 0.83rem; color: var(--slate); }
    .location-badge {
      background: var(--ink); color: var(--white);
      border-radius: 8px; padding: 1rem 1.4rem;
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.85rem;
    }
    .location-badge .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--sage); flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.6; transform: scale(1.3); }
    }

    /* ── SECTION SHELL ── */
    section { padding: 6rem 4rem; }
    .section-label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .section-label::before {
      content:''; display:block; width:20px; height:1.5px; background: var(--gold);
    }
    .section-title {
      font-family: 'Roboto', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700; line-height: 1.2;
      color: var(--ink); margin-bottom: 1rem;
    }
    .section-body {
      font-size: 1rem; color: var(--slate);
      max-width: 100%; line-height: 1.8;
    }

    /* ── ABOUT ── */
        #about {
    background: var(--white);
    display: grid; grid-template-columns: 1fr;
    gap: 5rem; align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--mist) 0%, #e8e3d6 100%);
      border-radius: 16px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.5rem;
      color: var(--slate); font-size: 0.85rem;
      border: 1px solid var(--border);
    }
    .about-placeholder .avatar-icon { font-size: 3.5rem; opacity: 0.4; }
    .about-tag {
      position: absolute; bottom: -16px; right: -16px;
      background: var(--gold); color: var(--white);
      border-radius: 10px; padding: 1rem 1.5rem;
      font-size: 0.82rem; font-weight: 600;
      box-shadow: 0 4px 20px rgba(200,151,58,0.3);
    }
    .about-tag strong { display:block; font-size:1.4rem; font-family: 'Roboto', serif; }
    .values-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
    .values-list li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      font-size: 0.95rem; color: var(--slate);
    }
    .values-list li::before {
      content: '✓'; color: var(--sage); font-weight: 700;
      flex-shrink: 0; margin-top: 0.05rem;
    }

    /* ── WHO I HELP ── */
    #who { background: var(--mist); }
    .who-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .who-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 2rem;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .who-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(26,26,46,0.08);
      border-color: var(--gold);
    }
    .who-card-icon {
      font-size: 2rem; margin-bottom: 1rem;
      width: 52px; height: 52px;
      background: var(--mist); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .who-card h3 {
      font-family: 'Roboto', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--ink); margin-bottom: 0.5rem;
    }
    .who-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

    /* ── SERVICES ── */
    #services { background: var(--cream); }
    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .service-card {
      border: 1px solid var(--border);
      border-radius: 12px; padding: 2rem;
      display: flex; gap: 1.2rem;
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(26,26,46,0.08);
    }
    .service-icon {
      font-size: 1.6rem; flex-shrink: 0;
      width: 52px; height: 52px;
      background: var(--mist); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .service-card h3 {
      font-family: 'Roboto', serif;
      font-size: 1.1rem; font-weight: 600; color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .service-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }
    .service-card.wide { grid-column: span 2; }

    /* ── PRICING ── */
    #pricing { background: var(--ink); color: var(--white); }
    #pricing .section-title { color: var(--white); }
    #pricing .section-body { color: rgba(255,255,255,0.6); }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem; margin-top: 3rem; align-items: start;
    }
    .pricing-card {
      border-radius: 14px;
      padding: 2.2rem 2rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.2s;
      position: relative; overflow: hidden;
    }
    .pricing-card:hover { transform: translateY(-4px); }
    .pricing-card.standard { background: rgba(255,255,255,0.05); }
    .pricing-card.featured {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.03);
    }
    .pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
    .pricing-badge {
      position: absolute; top: 1rem; right: 1rem;
      background: var(--ink); color: var(--white);
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 20px;
    }
    .plan-name {
      font-family: 'Roboto', serif;
      font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem;
    }
    .plan-tagline { font-size: 0.82rem; opacity: 0.7; margin-bottom: 1.5rem; }
    .plan-price {
      font-family: 'Roboto', serif;
      font-size: 2.4rem; font-weight: 700; line-height: 1;
      margin-bottom: 0.3rem;
    }
    .plan-price .plan-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    }
    .plan-price sup { font-size: 1.2rem; vertical-align: super; }
    .plan-period { font-size: 0.8rem; opacity: 0.7; margin-bottom: 1.8rem; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .plan-features li { font-size: 0.88rem; display: flex; gap: 0.5rem; align-items: flex-start; }
    .plan-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
    .pricing-card.standard .plan-features li::before { color: var(--sage); }
    .pricing-card.featured .plan-features li::before { color: var(--ink); }
    .addons-section { margin-top: 3rem; }
    .addons-title {
      font-family: 'Roboto', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--white);
      margin-bottom: 1.5rem;
    }
    .addons-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .addon-item {
      background: rgba(255,255,255,0.05);
      font-family: 'Roboto', serif;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 1.2rem;
    }
    .addon-item strong {
      display: block; font-size: 0.88rem; font-weight: 600;
      font-family: 'Roboto', serif;
      color: var(--white); margin-bottom: 0.2rem;
    }
    .addon-price {
    font-family: 'Roboto', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0.4rem 0;
    }
    .addon-price span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
    }
    .addon-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.2rem;
    }
    .addon-item span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
    .pricing-note {
      margin-top: 2rem; padding: 1.2rem 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; background: rgba(255,255,255,0.04);
      font-size: 0.85rem; color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }
    .pricing-note strong { color: rgba(255,255,255,0.85); }

    /* ── CONTACT ── */
    #contact { background: var(--white); }
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start; margin-top: 3rem;
    }
    .contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.4rem; border: 1px solid var(--border);
      border-radius: 10px; background: var(--cream);
      transition: border-color 0.2s;
    }
    .contact-item:hover { border-color: var(--gold); }
    .contact-item-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: var(--mist); display: flex;
      align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-item strong { display:block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.2rem; }
    .contact-item a, .contact-item p { font-size: 0.95rem; color: var(--ink); text-decoration: none; font-weight: 500; }
    .contact-item a:hover { color: var(--gold); }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.8rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; color: var(--ink);
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      background: var(--ink); color: var(--white);
      border: none; border-radius: 6px;
      padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 600; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.02em; margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--gold); transform: translateY(-1px); }
    .form-note { font-size: 0.78rem; color: var(--slate); line-height: 1.6; margin-top: 0.5rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--ink); color: rgba(255,255,255,0.5);
      padding: 2.5rem 4rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.82rem;
    }
    .footer-logo {
      font-family: 'Roboto', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--white);
    }
    .footer-logo span { color: var(--gold); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.7s ease forwards;
    }
    @keyframes fadeUp {
      to { opacity:1; transform: translateY(0); }
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.35s; }
    .delay-4 { animation-delay: 0.5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: none; }
      section { padding: 4rem 2rem; }
      .hero { grid-template-columns: 1fr; padding: 6rem 2rem 3rem; }
      .hero-visual { display: none; }
      #about { grid-template-columns: 1fr; }
      .about-image-wrap { display: none; }
      .who-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card.wide { grid-column: span 1; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: none; }
      .addons-grid { grid-template-columns: 1fr 1fr; }
      .contact-wrap { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    }