 body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #111;
    }

    /* ================= HEADER ================= */
    header {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      z-index: 9999;
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      background: #fff;
      border-radius: 999px;
      padding: 16px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-cta {
      background: #000;
      color: #fff;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
    }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      height: 680px;
      width: 100%;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      color: #fff;
    }

    .hero h1 {
      font-size: 52px;
      font-weight: 500;
      line-height: 1.2;
    }

    .hero h1 em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 400;
    }

    .hero p {
      max-width: 720px;
      font-size: 18px;
      margin-top: 16px;
    }

    .hero a {
      margin-top: 32px;
      border: 2px solid #fff;
      padding: 14px 48px;
      border-radius: 999px;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
    }

    /* ================= FRASE ================= */
    .frase {
      padding: 100px 20px;
      text-align: center;
    }

    .frase h2 {
      font-size: 40px;
      font-weight: 400;
    }

    .frase h2 span {
      display: block;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: #de6300; /* naranja restaurado */
    }

    .frase p {
      max-width: 720px;
      margin: 24px auto 0;
      color: #4b5563;
      font-size: 18px;
    }

    /* ================= SECCIÓN OSCURA ================= */
    .dark-section {
      background: #111;
      color: #fff;
      padding: 120px 20px;
    }

    .dark-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .dark-inner h3 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-style: italic;
    }

    .dark-inner p {
      margin-top: 16px;
      color: #d1d5db;
    }

    /* ================= CONTACTO ================= */
    .contact {
      padding: 120px 20px;
    }

    .contact-inner {
      max-width: 720px;
      margin: 0 auto;
      background: #fff;
      border-radius: 24px;
      padding: 60px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
      text-align: center;
    }

    footer {
      background: #111;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }