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

    :root {
      --bg: #0a0a0f;
      --surface: #111118;
      --accent: #c9a96e;
      --accent2: #7e6040;
      --text: #e8e0d0;
      --muted: #7a7468;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Subtle animated background */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, #c9a96e18 0%, transparent 70%),
                  radial-gradient(ellipse 60% 40% at 80% 100%, #7e604020 0%, transparent 60%);
      pointer-events: none;
    }

    .noise {
      position: fixed;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .card {
      position: relative;
      background: var(--surface);
      border: 1px solid #ffffff0f;
      border-radius: 2px;
      padding: 64px 72px;
      max-width: 560px;
      width: calc(100% - 48px);
      text-align: center;
      animation: fadeUp 1s ease both;
      box-shadow: 0 40px 120px #00000080;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 120px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px; height: 56px;
      border: 1px solid var(--accent2);
      border-radius: 50%;
      margin-bottom: 32px;
      animation: fadeUp 1s 0.1s ease both;
    }

    .icon svg {
      width: 24px; height: 24px;
      stroke: var(--accent);
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 16px;
      animation: fadeUp 1s 0.15s ease both;
    }

    .tagline {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 48px;
      animation: fadeUp 1s 0.2s ease both;
    }

    .divider {
      width: 40px;
      height: 1px;
      background: var(--accent2);
      margin: 0 auto 40px;
      animation: fadeUp 1s 0.25s ease both;
    }

    .contact-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
      animation: fadeUp 1s 0.3s ease both;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: fadeUp 1s 0.35s ease both;
    }

    .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 2px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      transition: all 0.25s ease;
      border: 1px solid;
    }

    .btn-email {
      background: transparent;
      border-color: #ffffff15;
      color: var(--text);
    }

    .btn-email:hover {
      background: #ffffff08;
      border-color: #ffffff25;
    }

    .btn-whatsapp {
      background: var(--accent);
      border-color: var(--accent);
      color: #0a0a0f;
      font-weight: 500;
    }

    .btn-whatsapp:hover {
      background: #d9b97e;
      border-color: #d9b97e;
    }

    .contact-btn svg {
      width: 16px; height: 16px;
      flex-shrink: 0;
    }

    .footer {
      margin-top: 40px;
      font-size: 0.72rem;
      color: #4a4640;
      animation: fadeUp 1s 0.4s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 480px) {
      .card { padding: 48px 32px; }
      h1 { font-size: 1.6rem; }
    }