
    /* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Montserrat', sans-serif; color: #373934; background: #fff; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── CSS VARIABLES ─── */
    :root {
      --gold-dark:  #c9a227;
      --gold-mid:   #d4aa2e;
      --gold-light: #e8d48b;
      --gold-gradient: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      --charcoal: #393737;
      --silver: #C4CBCA;
      --pink-soft: #FADFE9;
      --cream: #F0E9E9;
      --white: #FFFFFF;
    }

    /* ─── GOLD UTILITIES ─── */
    .gold-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a227, #e8d48b, #c9a227, transparent);
      border: none; margin: 0;
    }
    .gold-text-gradient {
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ─── FADE-IN ANIMATIONS ─── */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in-left.visible { opacity: 1; transform: translateX(0); }
    .fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in-right.visible { opacity: 1; transform: translateX(0); }

    /* ─── ANNOUNCEMENT BAR ─── */
    .announcement-bar {
      background: var(--charcoal); color: rgba(255,255,255,0.88);
      text-align: center; padding: 10px 20px;
      font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
      font-weight: 500; letter-spacing: 0.08em;
      position: relative; z-index: 1000;
      border-bottom: 1px solid rgba(201,162,39,0.4);
    }
    .announcement-bar a { color: var(--gold-light); }
    .announcement-bar strong { color: var(--gold-light); }

    /* ─── NAVIGATION ─── */
    .navbar {
      position: sticky; top: 0; z-index: 999;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(196,203,202,0.3);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    .navbar.scrolled { background: rgba(255,255,255,0.99); box-shadow: 0 2px 20px rgba(55,57,52,0.08); }
    .nav-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 40px;
      height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    }
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 52px; width: auto; object-fit: contain; }
    .nav-menu { display: flex; align-items: center; gap: 36px; }
    .nav-menu a {
      font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal);
      position: relative; padding-bottom: 4px; transition: color 0.2s;
    }
    .nav-menu a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
      background: var(--gold-gradient); transition: width 0.25s ease;
    }
    .nav-menu a:hover { color: var(--gold-dark); }
    .nav-menu a:hover::after { width: 100%; }
    .nav-menu a.active { color: var(--gold-dark); }
    .nav-menu a.active::after { width: 100%; }
    .nav-icons { display: flex; align-items: center; gap: 20px; }
    .nav-icon-btn { background: none; border: none; cursor: pointer; position: relative; color: var(--charcoal); transition: color 0.2s; padding: 4px; }
    .nav-icon-btn:hover { color: var(--gold-dark); }
    .nav-icon-btn svg { width: 22px; height: 22px; stroke-width: 1.6; }
    .cart-badge {
      position: absolute; top: -2px; right: -4px;
      background: var(--gold-dark); color: var(--charcoal); font-size: 0.6rem; font-weight: 700;
      width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: 0.3s; }

    /* ─── MOBILE MENU ─── */
    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; background: white; z-index: 9998;
      flex-direction: column; padding: 80px 40px 40px;
      transform: translateX(100%); transition: transform 0.35s ease;
    }
    .mobile-menu-overlay.open { transform: translateX(0); }
    .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--charcoal); }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
    .mobile-nav-links a { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--charcoal); border-bottom: 1px solid rgba(201,162,39,0.2); padding-bottom: 20px; }

    /* ─── BUTTONS ─── */
    .btn-primary {
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      background-size: 200% auto; color: white; padding: 16px 36px;
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 4px;
      cursor: pointer; transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 2px 12px rgba(201,162,39,0.3);
    }
    .btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.4); }
    .btn-outline {
      background: transparent; color: var(--charcoal); padding: 16px 36px;
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; border: 2px solid var(--gold-dark);
      border-radius: 4px; cursor: pointer; transition: background 0.25s, color 0.25s, transform 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { background: var(--gold-gradient); color: white; transform: translateY(-2px); border-color: transparent; }

    /* ─── SECTION HEADERS ─── */
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--charcoal); position: relative; display: inline-block; }
    .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); }

    /* ─── HERO ─── */
    .about-hero {
      min-height: 70vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--charcoal);
    }
    .about-hero-bg {
      position: absolute; inset: 0;
      background-image: url('fotos/Imagen principal.png');
      background-size: cover; background-position: center top;
      opacity: 0.35;
      transition: transform 8s ease;
    }
    .about-hero:hover .about-hero-bg { transform: scale(1.04); }
    .about-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(57,55,55,0.4) 0%, rgba(57,55,55,0.7) 60%, rgba(57,55,55,0.95) 100%);
    }
    .about-hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 60px 40px;
      max-width: 860px; margin: 0 auto;
    }
    .about-hero-eyebrow {
      font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light);
      margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 12px;
    }
    .about-hero-eyebrow::before, .about-hero-eyebrow::after {
      content: ''; display: block; width: 40px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-dark));
    }
    .about-hero-eyebrow::after { background: linear-gradient(90deg, var(--gold-dark), transparent); }
    .about-hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 700;
      color: white; line-height: 1.1; margin-bottom: 24px;
    }
    .about-hero-headline em {
      font-style: italic;
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .about-hero-sub {
      font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 400;
      line-height: 1.75; color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto;
    }

    /* ─── HISTORIA SECTION ─── */
    .historia {
      padding: 100px 40px;
      background: white;
    }
    .historia-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .historia-text {}
    .historia-eyebrow {
      font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
    }
    .historia-headline {
      font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 32px;
    }
    .historia-headline em {
      font-style: italic;
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .historia-body p {
      font-family: 'Montserrat', sans-serif; font-size: 0.92rem; line-height: 1.9;
      color: #555; margin-bottom: 18px;
    }
    .historia-body p:last-child { margin-bottom: 0; }
    .historia-quote {
      border-left: 3px solid var(--gold-dark); padding: 20px 28px;
      background: var(--cream); margin: 28px 0;
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 1.1rem; color: var(--charcoal); line-height: 1.6;
    }
    .historia-image-wrap {
      position: relative; border-radius: 2px; overflow: hidden;
    }
    .historia-image-wrap img {
      width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
      display: block;
    }
    .historia-image-deco {
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px;
      border: 2px solid var(--gold-dark); border-radius: 50%;
      pointer-events: none; opacity: 0.4;
    }
    .historia-image-badge {
      position: absolute; bottom: 30px; left: -20px;
      background: white; padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      display: flex; flex-direction: column; gap: 4px;
    }
    .historia-image-badge strong {
      font-family: 'Playfair Display', serif; font-size: 1.6rem;
      font-weight: 700; color: var(--gold-dark); line-height: 1;
    }
    .historia-image-badge span {
      font-family: 'Montserrat', sans-serif; font-size: 0.64rem;
      font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.08em;
    }

    /* ─── VALORES ─── */
    .valores {
      padding: 100px 40px;
      background: var(--pink-soft);
      position: relative; overflow: hidden;
    }
    .valores::before {
      content: 'LV'; position: absolute;
      font-family: 'Cinzel', serif; font-size: 16rem; font-weight: 700;
      color: rgba(201,162,39,0.05); right: -40px; top: 50%; transform: translateY(-50%);
      pointer-events: none; line-height: 1;
    }
    .valores-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .valores-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px;
    }
    .valor-card {
      background: white; border: 1px solid rgba(201,162,39,0.2);
      padding: 40px 28px 36px; text-align: center;
      box-shadow: 0 4px 20px rgba(57,55,55,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
      position: relative; overflow: hidden;
    }
    .valor-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--gold-gradient); transform: scaleX(0); transition: transform 0.3s ease;
    }
    .valor-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,162,39,0.15); border-color: rgba(201,162,39,0.4); }
    .valor-card:hover::before { transform: scaleX(1); }
    .valor-card-icon {
      width: 60px; height: 60px; margin: 0 auto 24px;
      background: var(--cream); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,162,39,0.25);
    }
    .valor-card-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .valor-card-title {
      font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
      color: var(--charcoal); margin-bottom: 12px;
    }
    .valor-card-text {
      font-family: 'Montserrat', sans-serif; font-size: 0.8rem; line-height: 1.75; color: #777;
    }

    /* ─── EXPERIENCIA / TIMELINE ─── */
    .experiencia {
      padding: 100px 40px;
      background: white;
    }
    .experiencia-inner { max-width: 900px; margin: 0 auto; }
    .timeline { margin-top: 60px; position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
      width: 2px; background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light), transparent);
    }
    .timeline-item {
      display: flex; gap: 40px; align-items: flex-start; margin-bottom: 48px; position: relative;
    }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-dot {
      flex-shrink: 0; width: 58px; height: 58px;
      background: var(--gold-gradient); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(201,162,39,0.3); z-index: 1;
    }
    .timeline-dot svg { width: 24px; height: 24px; stroke: var(--charcoal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .timeline-content { padding-top: 12px; }
    .timeline-year {
      font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px;
    }
    .timeline-title {
      font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
      color: var(--charcoal); margin-bottom: 10px;
    }
    .timeline-text {
      font-family: 'Montserrat', sans-serif; font-size: 0.85rem; line-height: 1.8; color: #777;
    }

    /* ─── CÓMO TRABAJO ─── */
    .como-trabajo {
      padding: 100px 40px;
      background: var(--charcoal);
      position: relative; overflow: hidden;
    }
    .como-trabajo::before {
      content: ''; position: absolute; top: -100px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .como-trabajo-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
    .como-trabajo .section-eyebrow { color: var(--gold-light); }
    .como-trabajo .section-title { color: white; }
    .como-trabajo .section-title::after { background: var(--gold-gradient); }
    .pasos-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 64px;
    }
    .paso {
      text-align: center; position: relative;
    }
    .paso:not(:last-child)::after {
      content: '→'; position: absolute; top: 28px; right: -12px;
      font-size: 1rem; color: rgba(201,162,39,0.4); font-weight: 300;
    }
    .paso-num {
      font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700;
      color: rgba(201,162,39,0.25); line-height: 1; margin-bottom: 16px;
    }
    .paso-icon {
      width: 64px; height: 64px; margin: 0 auto 20px;
      border: 1px solid rgba(201,162,39,0.3); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .paso-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .paso-title {
      font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600;
      color: white; margin-bottom: 10px; line-height: 1.3;
    }
    .paso-text {
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem; line-height: 1.7;
      color: rgba(255,255,255,0.55);
    }

    /* ─── CTA FINAL ─── */
    .cta-final {
      padding: 100px 40px;
      background: white;
      text-align: center;
    }
    .cta-final-inner { max-width: 700px; margin: 0 auto; }
    .cta-final-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
    .cta-final-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--charcoal); margin-bottom: 20px; line-height: 1.15; }
    .cta-final-headline em { font-style: italic; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .cta-final-text { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; line-height: 1.75; color: #777; margin-bottom: 40px; }
    .cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ─── */
    footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 80px 40px 0; }
    .footer-top {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-logo { margin-bottom: 20px; }
    .footer-logo img { height: 60px; width: auto; filter: brightness(0) invert(1); }
    .footer-tagline { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 240px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
    .social-btn:hover { background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); border-color: transparent; }
    .social-btn:hover svg { stroke: var(--charcoal); }
    .social-btn svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 1.8; }
    .footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: white; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gold-dark); display: inline-block; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.55); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
    .footer-col ul li a::before { content: '→'; font-size: 0.65rem; color: var(--gold-light); opacity: 0; transition: opacity 0.2s; }
    .footer-col ul li a:hover { color: white; }
    .footer-col ul li a:hover::before { opacity: 1; }
    .footer-bottom { max-width: 1300px; margin: 0 auto; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .footer-copyright { font-size: 0.68rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
    .footer-copyright strong { color: rgba(255,255,255,0.6); }
    .footer-copyright a { color: var(--gold-light); font-weight: 600; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 0.68rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.7); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-menu { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-menu-overlay { display: flex; }
      .historia-inner { grid-template-columns: 1fr; gap: 40px; }
      .historia-image-wrap { order: -1; }
      .valores-grid { grid-template-columns: repeat(2, 1fr); }
      .pasos-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .paso:not(:last-child)::after { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-inner { padding: 0 20px; }
      .about-hero { min-height: 55vh; }
      .historia, .valores, .experiencia, .como-trabajo, .cta-final { padding: 60px 20px; }
      .valores-grid { grid-template-columns: 1fr; }
      .pasos-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .cta-final-btns { flex-direction: column; align-items: center; }
    }
  