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

    :root {
      --cream:   #faf6f1;
      --warm:    #f2e8da;
      --brown:   #6b3f2a;
      --mocha:   #9c6344;
      --dark:    #2c1a0e;
      --accent:  #c8916a;
      --text:    #3d2b1f;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.1rem 2.5rem;
      background: rgba(250,246,241,0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(107,63,42,0.12);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 2px 18px rgba(107,63,42,0.13); }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem; font-weight: 600; color: var(--black);
      letter-spacing: .02em; text-decoration: none;
      display: flex; align-items: center; gap: .45rem;
    }
    .nav-logo-img {
      width: 34px; height: 34px; object-fit: cover;
      flex-shrink: 0; border-radius: 6px;
    }
    .nav-logo-titulo {
      max-width: 80px;
      width: 100%;
      height: auto;
    }

    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; font-size: .85rem; letter-spacing: .12em;
      text-transform: uppercase; color: var(--text); font-weight: 700;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--mocha); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(44,26,14,.35) 0%, rgba(44,26,14,.55) 100%),
        url('imagenes/Cabecera.jpg') center/cover no-repeat;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 2rem;
    }
    .hero-badge {
      display: inline-block; border: 1.5px solid rgba(255,255,255,.55);
      color: rgba(255,255,255,.85); font-size: .75rem; letter-spacing: .2em;
      text-transform: uppercase; padding: .45rem 1.4rem; border-radius: 50px;
      margin-bottom: 1.8rem;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5rem, 20vw, 9.5rem); font-weight: 600;
      color: #fff; line-height: 1.05; margin-bottom: .6rem;
      letter-spacing: -.02em;
    }
    .hero h2{
      font-family: 'Playfair Display', serif;
      font-style: italic; 
      font-size: clamp(2rem, 4vw, 4rem); font-weight: 400;
      color: #ffffff;; line-height: 1.05; margin-bottom: .6rem;
      letter-spacing: -.02em;
    }
    .hero p {
      font-size: clamp(1rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.82);
      font-weight: 300; max-width: 480px; line-height: 1.6; margin-bottom: 2.8rem;
    }
    .btn {
      display: inline-flex; align-items: center; gap: .55rem;
      background: var(--accent); color: #fff;
      padding: .9rem 2.2rem; border-radius: 50px;
      font-size: .9rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 6px 22px rgba(200,145,106,.45);
    }
    .btn:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,63,42,.45); }
    .btn-outline {
      background: transparent; border: 2px solid #fff; color: #fff;
      box-shadow: none; margin-left: 1rem;
    }
    .btn-outline:hover { background: #fff; color: var(--brown); }
    .hero-scroll {
      position: absolute; bottom: 2.2rem;
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
    }
    .hero-titulo {
      max-width: 320px;
      width: 100%;
      height: auto;
    }
    .hero-scroll span { width: 1px; height: 40px; background: rgba(255,255,255,.35); animation: scrollLine 2s ease-in-out infinite; }
    @keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(1.4);opacity:1} }

    /* ── SECTION BASE ── */
    section { padding: 3.5rem 1.5rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--mocha); font-weight: 700; margin-bottom: .8rem;
      display: flex; align-items: center; gap: .7rem;
    }
    .section-tag::before { content:''; flex: 0 0 32px; height: 1.5px; background: var(--accent); }
    .section-title {
      font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 1.2rem;
    }
    .section-sub {
      font-size: 1rem; color: var(--mocha); font-weight: 300; max-width: 480px; line-height: 1.7;
    }

    /* ── DIVIDER ── */
    .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 0 auto; max-width: 300px; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: rgba(250,246,241,.55);
      text-align: center; padding: 2.2rem 1.5rem;
      font-size: .82rem; letter-spacing: .06em;
    }
    footer strong { color: var(--accent); }
    .footer-heart { color: #e57373; }

    /* ── WHATSAPP FLOATING ── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 22px rgba(37,211,102,.45);
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }

    /* ── RESPONSIVE ── */
    @media(max-width: 768px) {
      nav { padding: .9rem 1.3rem; flex-wrap: wrap; gap: .5rem; }
      .nav-links { display: flex; gap: 1.2rem; }
      .nav-links a { font-size: .75rem; }
      #nosotros .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid .g1 { grid-column: 1 / 3; }
      .hero { padding-top: 5rem; }
    }
    