/* ================================================================
   brandonmazda.com — Sistema editorial luxury
   v2026-05-07 · Fraunces + Manrope + JetBrains Mono · dark gold
   ================================================================ */

:root {
    --bg: #0a0908;
    --bg-2: #141210;
    --bg-3: #1c1916;
    --ink: #f2ebdc;
    --ink-2: #c9c0ae;
    --ink-3: #89806e;
    --ink-4: #514a3f;
    --line: rgba(242,235,220,0.10);
    --line-2: rgba(242,235,220,0.18);
    --gold: #c8965a;
    --gold-2: #b07a3f;
    --gold-deep: #6e4a25;
    --gold-light: #ecc278;
    --gold-highlight: #fbe2a3;
    --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --f-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;
    --container: 1440px;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* Skip link / accesibilidad */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--gold); color: var(--bg);
    padding: 8px 16px; z-index: 200;
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.skip-link:focus { top: 0; }

/* Tipografía */
h1, h2, h3 { font-family: var(--f-display); font-weight: 300; letter-spacing: -0.02em; line-height: 1.02; }
.serif-it { font-style: italic; font-weight: 300; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* Noise overlay */
body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
    opacity: 0.035; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: color-mix(in oklab, var(--bg) 80%, transparent);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 0.5px solid var(--line);
}
.nav-inner {
    max-width: var(--container); margin: 0 auto;
    padding: 18px 40px;
    display: flex; align-items: center; gap: 40px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-seal {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center; color: var(--gold);
    font-family: var(--f-display); font-style: italic; font-size: 16px;
    position: relative;
}
.nav-seal::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%;
    border: 0.5px solid var(--line);
}
.nav-name { font-family: var(--f-display); font-size: 17px; letter-spacing: 0.01em; }
.nav-name small {
    display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em;
    color: var(--ink-3); text-transform: uppercase; margin-top: 2px;
}
.nav-links {
    display: flex; gap: 32px; margin-left: auto;
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-2);
    list-style: none;
}
.nav-links a { position: relative; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 11px 20px; border: 1px solid var(--gold); color: var(--gold); border-radius: 100px;
    transition: all .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* Mobile nav toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 4px; padding: 10px; margin-left: auto;
}
.nav-toggle span {
    width: 22px; height: 1px; background: var(--ink); transition: all .25s;
}

@media (max-width: 960px) {
    .nav-inner { padding: 16px 22px; gap: 18px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--bg-2); border-bottom: 0.5px solid var(--line);
        flex-direction: column; gap: 0; padding: 0;
        margin-left: 0;
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .nav-links.open { max-height: 500px; }
    .nav-links li { border-bottom: 0.5px solid var(--line); }
    .nav-links a, .nav-links .nav-cta {
        display: block; padding: 18px 22px; border: 0; border-radius: 0;
    }
    .nav-cta { color: var(--gold); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    border-radius: 100px; transition: all .25s;
    border: 1px solid transparent;
}
.btn .arr {
    display: inline-block; width: 14px; height: 1px; background: currentColor;
    position: relative; transition: transform .25s;
}
.btn .arr::after {
    content: ''; position: absolute; right: 0; top: 50%; width: 5px; height: 5px;
    border-right: 1px solid currentColor; border-top: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--ink); color: var(--bg); }
.btn-line { border-color: var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 140px 0 0;
    min-height: 100vh;
    display: flex; flex-direction: column;
    border-bottom: 0.5px solid var(--line);
}
.hero-chrome {
    display: flex; justify-content: space-between; gap: 40px;
    padding: 24px 0 40px;
    border-bottom: 0.5px solid var(--line);
}
.hero-chrome > div { display: flex; flex-direction: column; gap: 6px; }
.hero-chrome .lbl {
    font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ink-3);
}
.hero-chrome .v {
    font-family: var(--f-display); font-size: 15px; letter-spacing: 0.01em;
    color: var(--ink); font-weight: 400;
}
.hero-chrome .v.gold { color: var(--gold); }
@media (max-width:720px){ .hero-chrome { flex-wrap: wrap; gap: 16px 32px; } }

.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    padding: 80px 0;
    align-items: center;
}
@media (max-width: 960px) {
    .hero-main { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
}

.hero-name {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(4rem, 14vw, 13.5rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
}
.hero-name .row { display: block; position: relative; }
.hero-name .row-2 {
    color: var(--gold); font-style: italic; font-weight: 300;
    letter-spacing: -0.03em; padding-left: 1em;
}
.hero-name .corner {
    display: inline-block; font-size: 0.14em; vertical-align: super;
    color: var(--ink-3); font-family: var(--f-mono);
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-left: 12px; transform: translateY(-1em);
}

.hero-aside { display: flex; flex-direction: column; gap: 40px; }
.hero-portrait {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bg-2);
    overflow: hidden;
    border: 0.5px solid var(--line);
}
.hero-portrait img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.85);
    mix-blend-mode: luminosity;
}
.hero-portrait::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, var(--bg) 100%),
        linear-gradient(135deg, rgba(200,150,90,0.08) 0%, transparent 45%);
    pointer-events: none;
}
.hero-portrait .tag {
    position: absolute; top: 20px; left: 20px; right: 20px;
    display: flex; justify-content: space-between;
    font-family: var(--f-mono); font-size: 9px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-2);
}
.hero-portrait .tag span:last-child { color: var(--gold); }
.hero-portrait .name-foot {
    position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
}
.hero-portrait .name-foot .n {
    font-family: var(--f-display); font-size: 22px;
    letter-spacing: -0.01em; color: var(--ink);
}
.hero-portrait .name-foot .r {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
    color: var(--gold); text-transform: uppercase; margin-top: 6px;
}

.hero-desc {
    font-family: var(--f-display); font-weight: 300;
    font-size: 21px; line-height: 1.4; letter-spacing: -0.005em;
    color: var(--ink);
    border-left: 1px solid var(--gold);
    padding-left: 22px;
    max-width: 420px;
}
.hero-desc em { font-style: italic; color: var(--gold); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-foot {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 0.5px solid var(--line);
}
.hero-foot .stat { padding: 36px 28px 36px 0; border-right: 0.5px solid var(--line); }
.hero-foot .stat:nth-child(n+2) { padding-left: 28px; }
.hero-foot .stat:last-child { border-right: 0; }
.hero-foot .n {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    letter-spacing: -0.03em; line-height: 1;
}
.hero-foot .n sup {
    font-size: 0.32em; color: var(--gold); vertical-align: super;
    margin-left: 4px; font-weight: 400; font-family: var(--f-mono);
}
.hero-foot .lbl {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--ink-3); margin-top: 14px;
}
@media (max-width: 720px) {
    .hero-foot { grid-template-columns: 1fr 1fr; }
    .hero-foot .stat:nth-child(2) { border-right: 0; }
    .hero-foot .stat:nth-child(-n+2) { border-bottom: 0.5px solid var(--line); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.sec { padding: 160px 0; border-bottom: 0.5px solid var(--line); position: relative; }
@media (max-width: 720px) { section.sec { padding: 90px 0; } }

.sec-head {
    display: grid; grid-template-columns: 180px 1fr 180px;
    gap: 40px; align-items: baseline; margin-bottom: 80px;
}
.sec-head .ch {
    font-family: var(--f-display); font-weight: 300; font-size: 40px;
    color: var(--gold); font-style: italic; letter-spacing: -0.02em;
}
.sec-head .eye {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ink-3);
}
.sec-head h2 { font-size: clamp(2.5rem, 6vw, 5rem); max-width: 16ch; }
.sec-head h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.sec-head .aside {
    text-align: right; font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-3); line-height: 2;
}
@media (max-width: 860px) {
    .sec-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 48px; }
    .sec-head .aside { text-align: left; }
}

/* ============================================================
   CARTA / TENETS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; }
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.letter {
    background: var(--bg-2); padding: 56px 56px 48px;
    border: 0.5px solid var(--line); position: relative;
}
.letter::before {
    content: '"'; position: absolute; top: 18px; left: 30px;
    font-family: var(--f-display); font-style: italic;
    font-size: 140px; color: var(--gold); opacity: 0.3; line-height: 1;
}
.letter-date {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 32px;
    display: flex; justify-content: space-between;
}
.letter-body {
    font-family: var(--f-display); font-weight: 300;
    font-size: 19px; line-height: 1.55; letter-spacing: -0.005em; color: var(--ink);
}
.letter-body p { margin-bottom: 20px; }
.letter-body strong { font-weight: 400; color: var(--gold); }
.letter-body em { font-style: italic; }
.letter-sign {
    margin-top: 44px; display: flex; align-items: end; justify-content: space-between;
    gap: 24px; border-top: 0.5px solid var(--line); padding-top: 28px;
}
.letter-sign .sig {
    font-family: 'Fraunces', cursive; font-style: italic;
    font-size: 38px; color: var(--ink); line-height: 1;
    transform: rotate(-3deg);
}
.letter-sign .who {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--ink-3); text-align: right; line-height: 1.8;
}
.letter-sign .who b { color: var(--gold); font-weight: 500; display: block; }

.tenets {
    display: flex; flex-direction: column; gap: 0;
    border-top: 1px solid var(--gold);
}
.tenet {
    padding: 28px 0; border-bottom: 0.5px solid var(--line);
    display: grid; grid-template-columns: 48px 1fr; gap: 20px;
    align-items: start; transition: padding-left .3s ease;
}
.tenet:hover { padding-left: 12px; }
.tenet-n {
    font-family: var(--f-display); font-style: italic; font-weight: 300;
    font-size: 44px; color: var(--gold); line-height: 0.8; letter-spacing: -0.02em;
}
.tenet-title {
    font-family: var(--f-display); font-weight: 400;
    font-size: 22px; letter-spacing: -0.01em; margin-bottom: 6px;
}
.tenet-body {
    color: var(--ink-2); font-size: 14px; line-height: 1.5; max-width: 36ch;
}

/* ============================================================
   PANEL HORARIOS
   ============================================================ */
.panel-wrap {
    background: var(--bg-2);
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    padding: 36px 0;
}
.panel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.panel-cell { padding: 0 32px; border-right: 0.5px solid var(--line); }
.panel-cell:last-child { border-right: 0; }
.panel-cell .lbl {
    font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.panel-cell .v {
    font-family: var(--f-display); font-weight: 300;
    font-size: 22px; letter-spacing: -0.01em;
}
.panel-cell .v.gold { color: var(--gold); font-style: italic; }
@media (max-width: 860px) {
    .panel { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .panel-cell { border-right: 0; }
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.video-wrap {
    aspect-ratio: 16/9;
    background: var(--bg-2);
    border: 0.5px solid var(--line);
    position: relative; overflow: hidden;
    display: grid; place-items: center;
}
.video-wrap::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(200,150,90,0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(200,150,90,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.video-placeholder {
    text-align: center; padding: 40px; position: relative; z-index: 2;
}
.video-placeholder .play {
    width: 80px; height: 80px; border-radius: 50%;
    border: 1px solid var(--gold); display: grid; place-items: center;
    margin: 0 auto 24px; color: var(--gold); position: relative;
    transition: all .3s;
}
.video-placeholder .play:hover { background: var(--gold); color: var(--bg); }
.video-placeholder .play::after {
    content: ''; width: 0; height: 0;
    border-left: 14px solid currentColor;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}
.video-placeholder .lbl {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.video-placeholder h3 {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.video-placeholder p {
    color: var(--ink-2); font-size: 15px; max-width: 38ch; margin: 0 auto;
}

/* ============================================================
   TESTIMONIOS / SCORE
   ============================================================ */
.testimony-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; }
.feature-rev {
    background: var(--bg-2); padding: 64px 56px;
    border: 0.5px solid var(--line); position: relative;
}
.feature-rev::before {
    content: '"'; position: absolute; top: 20px; left: 30px;
    font-family: var(--f-display); font-style: italic;
    font-size: 120px; color: var(--gold); line-height: 1;
}
.feature-rev-q {
    font-family: var(--f-display); font-weight: 300;
    font-size: 28px; line-height: 1.35; letter-spacing: -0.01em;
    color: var(--ink); margin-top: 60px;
}
.feature-rev-by {
    margin-top: 40px; padding-top: 24px;
    border-top: 0.5px solid var(--line);
    display: flex; justify-content: space-between;
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
}
.feature-rev-by b { color: var(--gold); font-weight: 500; }

.rev-stack { border-top: 0.5px solid var(--line); }
.rev-sm {
    padding: 28px 32px; border-bottom: 0.5px solid var(--line);
    transition: background .25s, padding-left .25s;
    cursor: pointer;
}
.rev-sm:hover { background: var(--bg-2); padding-left: 44px; }
.rev-sm-q {
    font-family: var(--f-display); font-weight: 300;
    font-size: 17px; line-height: 1.45; color: var(--ink);
}
.rev-sm-by {
    margin-top: 16px; display: flex; justify-content: space-between;
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
}

.rev-score {
    padding: 40px 32px; text-align: center;
    background: var(--bg-3); border-bottom: 0.5px solid var(--line);
}
.rev-score .n {
    font-family: var(--f-display); font-weight: 300;
    font-size: 80px; line-height: 1; color: var(--gold);
    letter-spacing: -0.04em;
}
.rev-score .n .slash { color: var(--ink-4); font-size: 0.45em; }
.rev-score .lbl {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase; margin-top: 16px; line-height: 1.8;
}
@media (max-width: 960px) { .testimony-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTAs HACIA SUBPÁGINAS (cards grandes)
   ============================================================ */
.cards-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 0.5px solid var(--line);
    border-left: 0.5px solid var(--line);
}
.card-link {
    padding: 56px 40px; min-height: 320px;
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    display: flex; flex-direction: column;
    transition: background .3s ease, padding .3s;
    position: relative;
}
.card-link:hover { background: var(--bg-2); padding-top: 46px; }
.card-link .cat {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.card-link .n {
    font-family: var(--f-display); font-style: italic; font-weight: 300;
    font-size: 32px; color: var(--ink-3); margin-bottom: auto;
}
.card-link h3 {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.01em;
    line-height: 1.1; margin: 32px 0 12px;
}
.card-link p {
    color: var(--ink-2); font-size: 14px; max-width: 32ch; margin-bottom: 24px;
}
.card-link .arr {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap .25s;
}
.card-link:hover .arr { gap: 16px; }
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.faq-list { border-top: 0.5px solid var(--gold); }
.faq-item { border-bottom: 0.5px solid var(--line); }
.faq-q {
    width: 100%; text-align: left; padding: 28px 0;
    display: grid; grid-template-columns: 40px 1fr 32px; gap: 20px; align-items: center;
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -0.005em; color: var(--ink);
    transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .n {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--gold); text-transform: uppercase;
}
.faq-q .plus {
    width: 28px; height: 28px; border-radius: 50%;
    border: 0.5px solid var(--line-2);
    display: grid; place-items: center;
    font-family: var(--f-mono); font-size: 14px; color: var(--ink-2);
    transition: all .3s;
}
.faq-item.open .faq-q .plus {
    background: var(--gold); border-color: var(--gold);
    color: var(--bg); transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1); }
.faq-a-in {
    padding: 0 0 28px 60px;
    color: var(--ink-2); font-size: 15px; line-height: 1.65; max-width: 68ch;
}
.faq-a-in p + p { margin-top: 12px; }
.faq-a-in strong { color: var(--ink); font-weight: 500; }
.faq-a-in a { color: var(--gold); border-bottom: 0.5px solid var(--gold); }
.faq-item.open .faq-a { max-height: 800px; }

/* ============================================================
   CONTACT
   ============================================================ */
.cta-sec {
    padding: 180px 0; position: relative;
    background: var(--bg-3); border-bottom: 0.5px solid var(--line);
}
.cta-sec h2 {
    font-size: clamp(3rem, 10vw, 9rem); letter-spacing: -0.04em;
    font-weight: 300; line-height: 1.05;
}
.cta-sec h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.cta-grid {
    margin-top: 100px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 0.5px solid var(--line-2);
}
.cta-cell {
    padding: 40px 40px 40px 0;
    border-right: 0.5px solid var(--line-2);
}
.cta-cell:nth-child(n+2) { padding-left: 40px; }
.cta-cell:last-child { border-right: 0; }
.cta-cell .lbl {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px;
}
.cta-cell .v {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.01em;
    display: block; color: var(--ink); transition: color .2s;
}
.cta-cell a.v:hover { color: var(--gold); }
.cta-cell .meta {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase; margin-top: 14px;
}
@media (max-width: 860px) {
    .cta-grid { grid-template-columns: 1fr; }
    .cta-cell {
        border-right: 0;
        border-bottom: 0.5px solid var(--line-2);
        padding: 28px 0 !important;
    }
    .cta-cell:last-child { border-bottom: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
    padding: 48px 0 36px;
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
}
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot a:hover { color: var(--gold); }

/* ============================================================
   DOSSIER (modelos)
   ============================================================ */
.dossier {
    display: flex; flex-direction: column; gap: 0;
    border-top: 0.5px solid var(--line);
}
.dossier-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.3fr 240px 160px;
    gap: 40px; align-items: center;
    padding: 36px 0;
    border-bottom: 0.5px solid var(--line);
    cursor: pointer; position: relative;
    transition: padding-left .3s;
    color: inherit;
}
.dossier-row:hover { padding-left: 24px; }
.dossier-row::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--gold);
    transform: scaleY(0); transform-origin: center;
    transition: transform .3s ease;
}
.dossier-row:hover::before { transform: scaleY(1); }

.dos-n {
    font-family: var(--f-display); font-weight: 300;
    font-size: 22px; color: var(--ink-3); letter-spacing: 0.05em;
}
.dos-name {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.03em; line-height: 0.95;
}
.dos-name small {
    display: block; font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-3); margin-top: 10px;
}
.dos-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; max-width: 40ch; }
.dos-specs {
    display: flex; flex-direction: column; gap: 8px;
    font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase;
}
.dos-specs b { color: var(--ink); font-weight: 500; letter-spacing: 0.05em; }
.dos-price { text-align: right; }
.dos-price small {
    font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em;
    color: var(--ink-3); text-transform: uppercase;
    display: block; margin-bottom: 6px;
}
.dos-price b {
    font-family: var(--f-display); font-size: 24px;
    font-weight: 400; color: var(--gold); letter-spacing: -0.01em;
}
.dos-price .arr-btn {
    margin-top: 10px; display: inline-flex;
    font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); gap: 6px; align-items: center;
}
.dossier-row:hover .arr-btn { color: var(--gold); }
@media (max-width: 960px) {
    .dossier-row { grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
    .dos-desc, .dos-specs, .dos-price { grid-column: 2 / -1; }
    .dos-price { text-align: left; }
}

/* ============================================================
   COMPARADOR
   ============================================================ */
.compare-wrap {
    background: var(--bg-2);
    padding: 64px 48px;
    border: 0.5px solid var(--line);
}
.compare-grid { display: grid; grid-template-columns: 240px repeat(var(--cols,3), 1fr); gap: 0; }
.compare-grid > div { padding: 20px; border-bottom: 0.5px solid var(--line); font-size: 14px; }
.compare-grid > div.k {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
    display: flex; align-items: center; padding-left: 0;
}
.compare-grid .head { padding-top: 0; padding-bottom: 28px; border-bottom-color: var(--gold); }
.compare-select {
    width: 100%; padding: 10px 14px;
    background: var(--bg); border: 0.5px solid var(--line-2); color: var(--ink);
    font-family: var(--f-sans); font-size: 13px; border-radius: 2px;
}
.compare-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: 32px; letter-spacing: -0.02em; margin-top: 14px; color: var(--gold);
}
.compare-sub {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase; margin-top: 4px;
}
.compare-grid .highlight {
    color: var(--gold); font-weight: 500;
    font-family: var(--f-display); font-size: 17px;
}
@media (max-width: 960px) {
    .compare-wrap { padding: 32px 20px; overflow-x: auto; }
    .compare-grid {
        grid-template-columns: 140px repeat(var(--cols,3), minmax(130px, 1fr));
        min-width: 640px;
    }
}

/* ============================================================
   GUIAS (cards visuales sin link activo)
   ============================================================ */
.guides {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 0.5px solid var(--line);
    border-left: 0.5px solid var(--line);
}
.guide {
    padding: 40px 36px 36px;
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    display: flex; flex-direction: column; min-height: 380px;
    transition: background .25s;
    cursor: default;
}
.guide-cat {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.guide-n {
    font-family: var(--f-display); font-style: italic; font-weight: 300;
    font-size: 28px; color: var(--ink-3); margin-bottom: auto;
}
.guide-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: 28px; letter-spacing: -0.01em; line-height: 1.15;
    margin: 40px 0 14px;
}
.guide-meta {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
    display: flex; justify-content: space-between;
    padding-top: 20px; border-top: 0.5px solid var(--line); margin-top: auto;
}
.guide-meta .read { color: var(--gold); font-style: italic; }
@media (max-width: 860px) { .guides { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   WHATSAPP FLOTANTE (existente, adaptado)
   ============================================================ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

@media print { .wa-float, .nav { display: none !important; } }

/* ================================================================
   GOLD SHINE — efecto metálico animado tipo oro líquido
   Aplica a textos dorados destacados: italics en headings,
   números grandes, firma, score, comilla decorativa, precios.
   Se ubica al FINAL del archivo para ganar la cascada CSS.
   ================================================================ */

@keyframes gold-shimmer {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
}

/* Selector base — aplica a textos clave en italic dorado, números, firma */
h1 em, h2 em, h3 em,
.gold-shine,
.stage-name em,
.home-stats .stat .n,
.home-stats .stat .n sup,
.sec-head h2 em,
.rev-score .n,
.letter-sign .sig,
.dos-price b,
.compare-title,
.highlight,
.feature-rev-by b,
.letter-sign .who b,
.dos-name small em,
.tenet-n {
    background-image: linear-gradient(
        100deg,
        var(--gold-deep)      0%,
        var(--gold-2)        18%,
        var(--gold)          34%,
        var(--gold-light)    47%,
        var(--gold-highlight) 52%,
        var(--gold-light)    57%,
        var(--gold)          70%,
        var(--gold-2)        85%,
        var(--gold-deep)    100%
    ) !important;
    /* alto 160% para cubrir descenders/ascenders de Fraunces italic
       (la cola del "?", "p", "j", "g" se salen del bounding box) */
    background-size: 280% 160% !important;
    background-position: 0% 50%;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: gold-shimmer 7s ease-in-out infinite;
}

/* Quote mark gigante decorativa de testimonio featured: brilla diferente */
.feature-rev::before {
    background-image: linear-gradient(
        135deg,
        var(--gold-deep) 0%,
        var(--gold) 25%,
        var(--gold-light) 50%,
        var(--gold-highlight) 60%,
        var(--gold) 80%,
        var(--gold-deep) 100%
    ) !important;
    background-size: 250% 250% !important;
    background-position: 0% 0%;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: gold-shimmer 9s ease-in-out infinite;
}

/* Sello B del nav: sigue siendo borde dorado, pero con highlight metálico */
.nav-seal {
    border: 1px solid transparent !important;
    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(
            135deg,
            var(--gold-deep) 0%,
            var(--gold) 25%,
            var(--gold-highlight) 50%,
            var(--gold) 75%,
            var(--gold-deep) 100%
        ) border-box !important;
    box-shadow:
        inset 0 1px 0 rgba(251,226,163,0.12),
        0 0 14px rgba(200,150,90,0.10);
}
.nav-seal {
    color: var(--gold-light) !important;
}

/* Botón primario: gradiente metálico animado en el background */
.btn-primary {
    background-image: linear-gradient(
        100deg,
        var(--gold-2) 0%,
        var(--gold) 25%,
        var(--gold-light) 45%,
        var(--gold-highlight) 52%,
        var(--gold-light) 58%,
        var(--gold) 75%,
        var(--gold-2) 100%
    ) !important;
    background-size: 240% 100% !important;
    background-position: 0% 50%;
    animation: gold-shimmer 7s ease-in-out infinite;
    color: var(--bg) !important;
    border-color: transparent !important;
    transition: filter .25s, transform .25s !important;
    box-shadow: 0 6px 20px rgba(200,150,90,0.18);
}
.btn-primary:hover {
    filter: brightness(1.10);
    transform: translateY(-1px);
    background-color: transparent !important;
}

/* Borde del .btn-line también con tinte metálico al hover */
.btn-line:hover {
    background-image: linear-gradient(
        90deg,
        rgba(200,150,90,0.06) 0%,
        rgba(251,226,163,0.10) 50%,
        rgba(200,150,90,0.06) 100%
    );
}

/* Score grande "4.93/5" — el slash queda con su gris original */
.rev-score .n .slash {
    background: none !important;
    -webkit-text-fill-color: var(--ink-4) !important;
    color: var(--ink-4) !important;
    animation: none !important;
}

/* Hero name (Brandon García) — el nombre completo NO brilla, solo el em */
.stage-name {
    color: var(--ink) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    animation: none !important;
}

/* Respeta usuarios con motion-reduced */
@media (prefers-reduced-motion: reduce) {
    h1 em, h2 em, h3 em,
    .gold-shine,
    .stage-name em,
    .home-stats .stat .n,
    .home-stats .stat .n sup,
    .sec-head h2 em,
    .rev-score .n,
    .letter-sign .sig,
    .dos-price b,
    .compare-title,
    .highlight,
    .feature-rev-by b,
    .feature-rev::before,
    .btn-primary {
        animation: none !important;
        background-position: 50% 50% !important;
    }
}
