  :root {
    --gold: #9A8040;
    --gold-light: #C4A85A;
    --gold-pale: #F7F2E8;
    --gold-rule: rgba(154,128,64,0.25);
    --dark: #141412;
    --dark-2: #1a1a17;
    --mid: #4a4844;
    --soft: #7c7a74;
    --cream: #fdfcf9;
    --border: rgba(0,0,0,0.08);
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--ff-body); background: var(--cream); color: var(--dark); 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: 0 60px; height: 76px;
    background: rgba(253,252,249,0.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.07); }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .nav-logo img { height: 44px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { font-size: 11.5px; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { color: var(--gold) !important; border: 1px solid var(--gold-rule); padding: 9px 22px; border-radius: 2px; transition: background 0.2s, color 0.2s !important; }
  .nav-cta:hover { background: var(--gold) !important; color: #fff !important; }

  /* HERO */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 76px; overflow: hidden; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 60px; background: var(--cream); }
  .hero-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
  .hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); }
  .hero-headline { font-family: var(--ff-display); font-weight: 300; font-size: clamp(44px, 4.8vw, 68px); line-height: 1.1; color: var(--dark); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.35s forwards; }
  .hero-headline em { font-style: italic; color: var(--gold); }
  .hero-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); max-width: 440px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
  .hero-actions { display: flex; gap: 20px; align-items: center; opacity: 0; animation: fadeUp 0.8s 0.65s forwards; }
  .btn-primary { background: var(--dark); color: #fff; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px 32px; border-radius: 2px; text-decoration: none; transition: background 0.25s; }
  .btn-primary:hover { background: var(--gold); }
  .btn-outline { color: var(--mid); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
  .btn-outline:hover { color: var(--gold); }
  .btn-outline svg { transition: transform 0.2s; }
  .btn-outline:hover svg { transform: translateX(4px); }
  .hero-right { position: relative; overflow: hidden; }
  .hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,20,18,0.6) 0%, rgba(20,20,18,0.25) 100%); }
  .hero-right-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; opacity: 0; animation: fadeIn 1.2s 0.6s forwards; }
  .hero-caption { font-family: var(--ff-display); font-style: italic; font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.5; max-width: 320px; }
  .hero-caption strong { display: block; font-style: normal; font-weight: 400; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }

  /* SECTION */
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 60px; }
  .section-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
  .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: inline-block; }
  .section-title { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px, 3.8vw, 52px); line-height: 1.1; color: var(--dark); }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); }
  .service-item { background: var(--cream); position: relative; overflow: hidden; transition: background 0.3s; display: flex; flex-direction: column; }
  .service-item.has-image { min-height: 340px; }
  .service-item.has-image .service-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
  .service-item.has-image:hover .service-img { transform: scale(1.05); }
  .service-item.has-image .service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,12,0.9) 40%, rgba(14,14,12,0.28) 100%); transition: background 0.3s; }
  .service-item.has-image .service-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 40px; }
  .service-item.has-image .service-tag { color: var(--gold-light); }
  .service-item.has-image .service-name { color: #fff; }
  .service-item.has-image .service-desc { color: rgba(255,255,255,0.52); }
  .service-content { padding: 44px 40px; position: relative; z-index: 1; }
  .service-item::after { content: ''; position: absolute; bottom: 0; left: 40px; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; z-index: 2; }
  .service-item:hover::after { width: calc(100% - 80px); }
  .service-tag { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
  .service-name { font-family: var(--ff-display); font-weight: 400; font-size: 22px; line-height: 1.2; color: var(--dark); margin-bottom: 14px; }
  .service-desc { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--soft); }
  .service-item.featured { background: var(--dark-2); }
  .service-item.featured:hover { background: #222220; }
  .service-item.featured .service-tag { color: var(--gold-light); }
  .service-item.featured .service-name { color: #fff; }
  .service-item.featured .service-desc { color: rgba(255,255,255,0.48); }
  .platform-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .platform-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; border: 1px solid rgba(154,128,64,0.35); color: var(--gold-light); background: rgba(154,128,64,0.08); }

  /* WHY */
  .why { position: relative; overflow: hidden; }
  .why-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
  .why-overlay { position: absolute; inset: 0; background: rgba(12,12,10,0.84); }
  .why .section-inner { position: relative; z-index: 1; }
  .why .section-title { color: #fff; }
  .why .section-title em { color: var(--gold-light); }
  .why .section-eyebrow { color: var(--gold-light); }
  .why .section-eyebrow::before { background: var(--gold-light); }
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); margin-bottom: 64px; }
  .stat { padding: 44px 40px; background: rgba(18,18,15,0.55); }
  .stat-num { font-family: var(--ff-display); font-weight: 300; font-size: 56px; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
  .stat-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.7; }
  .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .pillar { border-top: 1px solid rgba(154,128,64,0.28); padding-top: 24px; }
  .pillar-num { font-family: var(--ff-display); font-style: italic; font-size: 13px; color: var(--gold); margin-bottom: 12px; }
  .pillar-title { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 8px; }
  .pillar-text { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; }

  /* PROCESS */
  .process { position: relative; overflow: hidden; }
  .process-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .process-overlay { position: absolute; inset: 0; background: rgba(247,242,232,0.93); }
  .process .section-inner { position: relative; z-index: 1; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 1px; background: var(--gold-rule); }
  .process-step { padding: 0 32px 0 0; }
  .step-circle { width: 56px; height: 56px; border: 1px solid var(--gold-rule); border-radius: 50%; background: rgba(253,252,249,0.9); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 300; font-size: 20px; color: var(--gold); margin-bottom: 24px; position: relative; z-index: 1; transition: background 0.3s, border-color 0.3s; }
  .process-step:hover .step-circle { background: var(--gold); border-color: var(--gold); color: #fff; }
  .step-label { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .step-title { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 12px; }
  .step-text { font-size: 13px; font-weight: 300; color: var(--soft); line-height: 1.75; }

  /* CONTACT */
  .contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 40px; }
  .contact-details { display: flex; flex-direction: column; gap: 18px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon { width: 36px; height: 36px; border: 1px solid var(--gold-rule); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .contact-icon svg { width: 14px; height: 14px; color: var(--gold); }
  .contact-item-label { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
  .contact-item-value { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.65; }
  .contact-right { position: relative; overflow: hidden; min-height: 680px; }
  .contact-right-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .contact-right-overlay { position: absolute; inset: 0; background: rgba(14,14,12,0.78); }
  .contact-form { position: relative; z-index: 1; padding: 48px; }
  .form-title { font-family: var(--ff-display); font-weight: 300; font-size: 30px; color: #fff; margin-bottom: 32px; }
  .form-title em { font-style: italic; color: var(--gold-light); }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 8px; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; padding: 12px 16px; font-family: var(--ff-body); font-size: 13px; font-weight: 300; color: #fff; outline: none; transition: border-color 0.2s; appearance: none; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
  .form-group select option { background: #1a1a17; color: #fff; }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-submit { width: 100%; background: var(--gold); color: #fff; border: none; padding: 15px; font-family: var(--ff-body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px; cursor: pointer; margin-top: 6px; transition: background 0.25s; }
  .form-submit:hover { background: #b09448; }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .field-error { display: block; font-size: 11px; color: #e8967a; margin-top: 5px; min-height: 16px; }
  .form-group input.invalid, .form-group textarea.invalid, .form-group select.invalid { border-color: rgba(180,60,40,0.5) !important; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* FOOTER */
  footer { background: var(--dark); padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(154,128,64,0.18); }
  .footer-logo img { height: 52px; width: auto; }
  .footer-copy { font-size: 0.8em; font-weight: 300; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.8em; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 320px; }
    .hero-left { padding: 60px 24px; }
    .section-inner { padding: 72px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-right { min-height: 560px; }
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 24px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  }
