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

  :root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #8B6914;
    --cream: #FAF8F3;
    --dark: #1A1410;
    --dark2: #2D2419;
    --muted: #7A6A55;
    --border: rgba(201,168,76,0.25);
    --wa: #25D366;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(26,20,16,0.97), transparent);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; letter-spacing: 0.15em;
    color: var(--gold);
  }
  .nav-logo span { font-style: italic; color: var(--cream); }
  .nav-links { display: flex; gap: 2.5rem; }
  .nav-links a {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cream); text-decoration: none; opacity: 0.75;
    transition: opacity 0.3s, color 0.3s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta {
    background: transparent; border: 0.5px solid var(--gold);
    color: var(--gold); padding: 0.6rem 1.5rem;
    font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer; text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--dark); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at 20% 50%, #2D2419 0%, #1A1410 50%, #0D0A07 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    padding: 8rem 2rem 4rem;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      radial-gradient(circle at 15% 85%, rgba(201,168,76,0.08) 0%, transparent 40%),
      radial-gradient(circle at 85% 15%, rgba(201,168,76,0.06) 0%, transparent 40%);
  }
  .hero-ornament {
    position: absolute; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none;
  }
  .ornament-line {
    position: absolute; border: 0.5px solid rgba(201,168,76,0.12);
    border-radius: 50%;
  }
  .ornament-line:nth-child(1) { width: 600px; height: 600px; top: -100px; right: -150px; }
  .ornament-line:nth-child(2) { width: 400px; height: 400px; bottom: -50px; left: -100px; }
  .ornament-line:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 5%; }

  .hero-content { position: relative; max-width: 780px; }
  .hero-tag {
    display: inline-block; font-size: 0.65rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
    border: 0.5px solid var(--border); padding: 0.4rem 1.5rem;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300; line-height: 1.05; letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 0.85rem; letter-spacing: 0.12em; line-height: 1.8;
    color: rgba(250,248,243,0.6); max-width: 480px; margin: 0 auto 3rem;
  }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-gold {
    background: var(--gold); color: var(--dark);
    padding: 1rem 2.5rem; font-family: 'Jost', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--cream); border: 0.5px solid rgba(250,248,243,0.3);
    padding: 1rem 2.5rem; font-family: 'Jost', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(250,248,243,0.35);
  }
  .scroll-line {
    width: 0.5px; height: 50px; background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
  }

  /* DIVIDER */
  .gold-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1rem 0;
  }
  .gold-divider::before, .gold-divider::after {
    content: ''; flex: 1; height: 0.5px; background: var(--border);
  }
  .gold-divider-center { color: var(--gold); font-size: 1.2rem; }

  /* SECTION */
  section { padding: 6rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 0.9rem; color: rgba(250,248,243,0.55); line-height: 1.9;
    max-width: 520px;
  }

  /* SERVICES */
  .services-section { background: var(--dark); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    margin-top: 4rem;
    border: 1.5px solid var(--border);
  }
  .service-card {
    background: #1E1810;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: pointer;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .service-card:hover { background: #241E14; }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    font-size: 2rem; margin-bottom: 1.5rem;
    display: block; color: var(--gold);
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem;
  }
  .service-price {
    font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1rem;
  }
  .service-desc {
    font-size: 0.82rem; color: rgba(250,248,243,0.5); line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .service-features { list-style: none; }
  .service-features li {
    font-size: 0.78rem; color: rgba(250,248,243,0.55); padding: 0.35rem 0;
    border-bottom: 0.5px solid rgba(201,168,76,0.1);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .service-features li::before {
    content: ''; width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%; flex-shrink: 0;
  }
  .service-wa-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1.5rem; font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    text-decoration: none; border-bottom: 0.5px solid var(--border);
    padding-bottom: 0.2rem; transition: border-color 0.3s, gap 0.3s;
  }
  .service-wa-btn:hover { border-color: var(--gold); gap: 0.8rem; }

  /* WHY US */
  .why-section {
    background: #161209;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }
  .why-features { margin-top: 2rem; }
  .why-feature {
    padding: 1.5rem 0; border-bottom: 0.5px solid var(--border);
    display: flex; gap: 1.2rem; align-items: flex-start;
  }
  .why-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    color: var(--border); font-weight: 300; line-height: 1; flex-shrink: 0;
    min-width: 2.5rem;
  }
  .why-text h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    font-weight: 400; margin-bottom: 0.3rem;
  }
  .why-text p { font-size: 0.8rem; color: rgba(250,248,243,0.5); line-height: 1.7; }
  .why-visual {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2D2419, #1A1410);
    border: 0.5px solid var(--border); position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .why-visual-inner {
    text-align: center; padding: 2rem;
  }
  .big-num {
    font-family: 'Cormorant Garamond', serif; font-size: 6rem;
    color: var(--gold); opacity: 0.15; line-height: 1;
    display: block;
  }
  .stat-item { margin-top: 2rem; }
  .stat-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; color: var(--gold); font-weight: 300;
  }
  .stat-item .lbl {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(250,248,243,0.45); display: block; margin-top: 0.2rem;
  }
  .stats-row {
    display: flex; gap: 3rem; justify-content: center;
    border-top: 0.5px solid var(--border); margin-top: 2rem; padding-top: 2rem;
  }

  /* PROCESS */
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    margin-top: 4rem; background: var(--border);
  }
  .step {
    background: var(--dark); padding: 2.5rem 2rem; text-align: center;
    position: relative;
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
    color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 1rem;
  }
  .step h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    margin-bottom: 0.5rem; font-weight: 400;
  }
  .step p { font-size: 0.78rem; color: rgba(250,248,243,0.45); line-height: 1.7; }

  /* FORM / CTA */
  .cta-section {
    background: linear-gradient(135deg, #2D2419, #1E1810);
    border-top: 0.5px solid var(--border);
  }
  .cta-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
  }
  .cta-section .section-desc { margin: 0 auto 3rem; }
  .form-wrap {
    background: rgba(0,0,0,0.3); border: 0.5px solid var(--border);
    padding: 2.5rem;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field {
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(250,248,243,0.45);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.04); border: 0.5px solid rgba(201,168,76,0.2);
    color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.85rem;
    padding: 0.8rem 1rem; outline: none;
    transition: border-color 0.3s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--gold); }
  .form-field select option { background: var(--dark2); }
  .form-field textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%; padding: 1rem;
    background: var(--gold); border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dark); margin-top: 1rem;
    transition: background 0.3s, transform 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* WA FLOAT */
  .wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    background: var(--wa); width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  .wa-float svg { width: 28px; height: 28px; fill: white; }
  .wa-pulse {
    position: absolute; inset: -4px;
    border-radius: 50%; border: 2px solid rgba(37,211,102,0.4);
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  /* FOOTER */
  footer {
    background: #0D0A07; padding: 3rem 2rem;
    border-top: 0.5px solid var(--border); text-align: center;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--gold); letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .footer-logo em { font-style: italic; color: var(--cream); }
  .footer-contact {
    font-size: 0.8rem; color: rgba(250,248,243,0.45); line-height: 2;
    margin-bottom: 1.5rem;
  }
  .footer-contact a { color: var(--gold); text-decoration: none; }
  .footer-bottom {
    font-size: 0.65rem; letter-spacing: 0.1em;
    color: rgba(250,248,243,0.2); border-top: 0.5px solid var(--border);
    padding-top: 1.5rem; margin-top: 1.5rem;
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ANIMATIONS */
  .fade-in {
    opacity: 0; transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
  }
  .fade-in:nth-child(1) { animation-delay: 0.1s; }
  .fade-in:nth-child(2) { animation-delay: 0.25s; }
  .fade-in:nth-child(3) { animation-delay: 0.4s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
