    :root {
      --green: #1e3d2f;
      --green-mid: #2a5240;
      --green-light: #3a6b52;
      --cream: #f5f0e8;
      --cream-dark: #ece5d8;
      --salmon: #d4826a;
      --text-dark: #1a2e22;
      --text-mid: #3d5a47;
      --text-light: #f5f0e8;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      font-weight: 300;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: var(--green);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-logo img { height: 46px; }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      color: var(--cream); text-decoration: none;
      font-family: 'Jost', sans-serif; font-weight: 300;
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      opacity: 0.85; transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      background: var(--salmon); color: #fff;
      padding: 10px 24px; border-radius: 2px;
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none; font-weight: 400;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: #c07060; opacity: 1; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 1.5px; background: var(--cream); display: block; }

    /* ── SECTIONS ── */
    section { display: block; }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      background: var(--green);
      display: flex; align-items: center;
      padding-top: 72px;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 80px 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .hero-tag {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--salmon); margin-bottom: 24px; font-weight: 400;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5vw, 68px);
      color: var(--cream); line-height: 1.1; font-weight: 300;
      margin-bottom: 28px;
    }
    .hero-title em { font-style: italic; color: var(--salmon); }
    .hero-body {
      color: rgba(245,240,232,0.7); font-size: 15px;
      line-height: 1.8; margin-bottom: 44px; max-width: 480px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--salmon); color: #fff;
      padding: 14px 32px; border-radius: 2px;
      text-decoration: none; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: #c07060; }
    .btn-outline {
      border: 1px solid rgba(245,240,232,0.4); color: var(--cream);
      padding: 14px 32px; border-radius: 2px;
      text-decoration: none; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
      transition: border-color 0.2s;
    }
    .btn-outline:hover { border-color: var(--cream); }

    .hero-right {
      display: flex; flex-direction: column; gap: 20px;
    }
    .hero-stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-left: 3px solid var(--salmon);
      padding: 28px 32px; border-radius: 2px;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px; color: var(--cream); font-weight: 300; line-height: 1;
    }
    .stat-label {
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(245,240,232,0.6); margin-top: 8px;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 2px; background: linear-gradient(to right, var(--salmon), transparent);
      max-width: 80px; margin: 0 auto 48px;
    }

    /* ── PAGE SECTIONS ── */
    .page-hero {
      background: var(--green); padding: 140px 48px 80px;
      text-align: center;
    }
    .page-hero-label {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--salmon); margin-bottom: 16px;
    }
    .page-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 56px); color: var(--cream);
      font-weight: 300;
    }
    .page-hero-sub {
      color: rgba(245,240,232,0.65); font-size: 15px;
      max-width: 600px; margin: 20px auto 0; line-height: 1.8;
    }

    .content-section {
      max-width: 1100px; margin: 0 auto; padding: 80px 48px;
    }

    /* ── SERVICES GRID ── */
    .services-intro {
      text-align: center; margin-bottom: 64px;
    }
    .section-label {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--salmon); margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 46px);
      color: var(--text-dark); font-weight: 400; margin-bottom: 16px;
    }
    .section-body {
      color: var(--text-mid); font-size: 15px;
      line-height: 1.8; max-width: 580px; margin: 0 auto;
    }

    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
      background: var(--cream-dark);
    }
    .service-card {
      background: var(--cream);
      padding: 48px 44px;
    }
    .service-icon {
      width: 48px; height: 48px; margin-bottom: 24px;
      background: var(--green); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
    }
    .service-icon svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; margin-bottom: 14px; font-weight: 500;
      color: var(--text-dark);
    }
    .service-card p {
      color: var(--text-mid); font-size: 14px; line-height: 1.8;
    }
    .service-card ul {
      margin-top: 16px; padding-left: 0; list-style: none;
    }
    .service-card ul li {
      font-size: 13px; color: var(--text-mid);
      padding: 6px 0; border-bottom: 1px solid var(--cream-dark);
      display: flex; align-items: center; gap: 10px;
    }
    .service-card ul li::before {
      content: ''; width: 4px; height: 4px;
      background: var(--salmon); border-radius: 50%; flex-shrink: 0;
    }

    /* ── IDEAL CLIENT ── */
    .ideal-section {
      background: var(--green); padding: 80px 48px;
    }
    .ideal-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .ideal-left .section-title { color: var(--cream); }
    .ideal-left .section-label { color: var(--salmon); }
    .ideal-left .section-body { color: rgba(245,240,232,0.7); margin: 0; }
    .ideal-list {
      list-style: none; margin-top: 32px;
    }
    .ideal-list li {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
      color: rgba(245,240,232,0.85); font-size: 14px; line-height: 1.7;
    }
    .ideal-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; color: var(--salmon);
      font-weight: 300; min-width: 32px;
    }

    /* ── CRYPTO PAGE ── */
    .crypto-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .crypto-card {
      background: var(--green); padding: 40px 36px; border-radius: 2px;
      border-bottom: 3px solid var(--salmon);
    }
    .crypto-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; color: var(--cream); margin-bottom: 14px; font-weight: 400;
    }
    .crypto-card p {
      color: rgba(245,240,232,0.7); font-size: 13px; line-height: 1.8;
    }

    .xp-section {
      background: var(--cream-dark); padding: 80px 48px;
    }
    .xp-inner { max-width: 1100px; margin: 0 auto; }
    .xp-bar {
      display: flex; align-items: center; gap: 24px;
      padding: 28px 0; border-bottom: 1px solid rgba(30,61,47,0.12);
    }
    .xp-logo-box {
      width: 56px; height: 56px; background: var(--green);
      border-radius: 2px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .xp-logo-box span {
      font-family: 'Cormorant Garamond', serif;
      color: var(--cream); font-size: 11px; letter-spacing: 1px; text-align: center;
      line-height: 1.3;
    }
    .xp-info h4 {
      font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px;
    }
    .xp-info p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

    /* ── ABOUT ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
    }
    .about-photo-box {
      background: var(--green-mid);
      aspect-ratio: 3/4; border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .about-photo-placeholder {
      font-family: 'Cormorant Garamond', serif;
      color: rgba(245,240,232,0.3); font-size: 14px;
      letter-spacing: 2px; text-align: center; padding: 32px;
    }
    .about-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 3.5vw, 48px); font-weight: 300;
      color: var(--text-dark); margin-bottom: 8px;
    }
    .about-role {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--salmon); margin-bottom: 32px;
    }
    .about-bio {
      color: var(--text-mid); font-size: 15px; line-height: 1.9;
      margin-bottom: 36px;
    }
    .cred-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .cred-list li {
      display: flex; align-items: center; gap: 14px;
      font-size: 13px; color: var(--text-mid);
    }
    .cred-pill {
      background: var(--green); color: var(--cream);
      font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px; white-space: nowrap;
    }

    .timeline { margin-top: 64px; }
    .timeline-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; margin-bottom: 32px; font-weight: 400;
    }
    .tl-item {
      display: grid; grid-template-columns: 120px 1fr;
      gap: 28px; padding: 28px 0;
      border-bottom: 1px solid rgba(30,61,47,0.1);
    }
    .tl-year {
      font-size: 12px; letter-spacing: 1px; color: var(--salmon);
      font-weight: 400; padding-top: 3px;
    }
    .tl-content h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
    .tl-content p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    }
    .contact-info .section-title { text-align: left; }
    .contact-info .section-body { text-align: left; margin: 0 0 40px; }
    .contact-detail {
      display: flex; flex-direction: column; gap: 24px; margin-top: 40px;
    }
    .c-item {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .c-icon {
      width: 40px; height: 40px; background: var(--green);
      border-radius: 2px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .c-icon svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
    .c-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--salmon); margin-bottom: 4px; }
    .c-value { font-size: 14px; color: var(--text-dark); }
    .c-value a { color: var(--text-dark); text-decoration: none; }
    .c-value a:hover { color: var(--green); }

    .contact-form-box {
      background: var(--green); padding: 48px; border-radius: 2px;
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; color: var(--cream); margin-bottom: 32px; font-weight: 400;
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(245,240,232,0.6); margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
      padding: 12px 16px; color: var(--cream); font-family: 'Jost', sans-serif;
      font-size: 14px; font-weight: 300;
      outline: none; transition: border-color 0.2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(245,240,232,0.3); }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--salmon); }
    .form-group select option { background: var(--green); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; background: var(--salmon); color: #fff;
      border: none; padding: 14px; font-family: 'Jost', sans-serif;
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; border-radius: 2px; transition: background 0.2s;
    }
    .form-submit:hover { background: #c07060; }
    .form-success {
      display: none; text-align: center; color: var(--cream);
      font-size: 14px; padding: 20px; line-height: 1.7;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark); padding: 56px 48px 32px;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 40px;
    }
    .footer-logo img { height: 44px; opacity: 0.9; }
    .footer-tagline {
      font-size: 12px; letter-spacing: 1px; color: rgba(245,240,232,0.5);
      margin-top: 12px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--cream); }
    .footer-bottom {
      max-width: 1100px; margin: 48px auto 0;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 12px; color: rgba(245,240,232,0.35); }
    .footer-disc { font-size: 11px; color: rgba(245,240,232,0.25); max-width: 480px; text-align: right; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner, .about-grid, .contact-grid, .ideal-inner { grid-template-columns: 1fr; gap: 48px; }
      .services-grid, .crypto-grid { grid-template-columns: 1fr; }
      .content-section, .page-hero, .ideal-section, .xp-section { padding: 60px 24px; }
      .hero-inner { padding: 60px 24px; }
      .tl-item { grid-template-columns: 80px 1fr; }
      .footer-inner { flex-direction: column; gap: 24px; }
      .footer-disc { text-align: left; }
    }
