:root {
    --french-navy: #071426;
    --navy-light: #0d2240;
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #fdfdfd;
    --bg-gray: #f4f5f7;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--bg-gray); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

/* Top bar */
.topbar { background: var(--french-navy); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.topbar .logo { font-family: var(--font-title); color: #fff; font-size: 1.25rem; font-weight: 600; }
.topbar .logo span { color: var(--accent-gold); }
.topbar a.cta { color: var(--accent-gold); font-size: .9rem; font-weight: 500; border: 1px solid var(--accent-gold); padding: 8px 16px; border-radius: 999px; transition: .2s; }
.topbar a.cta:hover { background: var(--accent-gold); color: var(--french-navy); }

/* Breadcrumb */
.breadcrumb { max-width: 760px; margin: 0 auto; padding: 18px 24px 0; font-size: .8rem; color: #8a93a0; }
.breadcrumb a:hover { color: var(--accent-gold); }

/* Word card */
.wrap { max-width: 760px; margin: 0 auto; padding: 24px; }
.word-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(7,20,38,.10); position: relative; }
.word-head { background: linear-gradient(135deg, var(--french-navy) 0%, var(--navy-light) 100%); color: #fff; padding: 46px 40px 40px; position: relative; }
.word-head::after { content: "🇫🇷"; position: absolute; right: 28px; top: 24px; font-size: 2rem; opacity: .25; }
.kicker { text-transform: uppercase; letter-spacing: 3px; font-size: .68rem; color: var(--accent-gold); font-weight: 600; margin-bottom: 14px; }
.word { font-family: var(--font-title); font-size: 3.2rem; line-height: 1.05; font-weight: 600; }
.phonetic { font-size: 1.2rem; color: #cdd6e2; margin-top: 8px; font-style: italic; }
.translation { font-size: 1.35rem; color: var(--accent-gold); margin-top: 14px; font-weight: 500; }
.tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.tag { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; background: rgba(212,175,55,.15); color: var(--accent-gold); padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(212,175,55,.3); }

.word-body { padding: 36px 40px 40px; }
.block { margin-bottom: 28px; }
.block h2 { font-family: var(--font-title); font-size: 1.05rem; color: var(--french-navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.block p { color: #3a4250; }
.block .pt { color: #7c8593; font-style: italic; font-size: .95rem; margin-top: 4px; }
.example { background: var(--bg-gray); border-left: 3px solid var(--accent-gold); padding: 16px 20px; border-radius: 0 10px 10px 0; }
.example .fr { font-size: 1.1rem; color: var(--french-navy); font-weight: 500; }

/* CTA */
.cta-box { margin-top: 30px; background: linear-gradient(135deg, var(--french-navy), var(--navy-light)); color: #fff; border-radius: 16px; padding: 32px; text-align: center; }
.cta-box h3 { font-family: var(--font-title); font-size: 1.4rem; margin-bottom: 10px; }
.cta-box p { color: #cdd6e2; font-size: .95rem; margin-bottom: 20px; }
.cta-box a { display: inline-block; background: var(--accent-gold); color: var(--french-navy); font-weight: 600; padding: 13px 30px; border-radius: 999px; transition: .2s; }
.cta-box a:hover { background: #e8c34f; transform: translateY(-2px); }

/* Nav between words */
.word-nav { display: flex; justify-content: space-between; margin-top: 24px; font-size: .9rem; }
.word-nav a { color: var(--french-navy); font-weight: 500; }
.word-nav a:hover { color: var(--accent-gold); }
.back-all { text-align: center; margin-top: 28px; }
.back-all a { color: #7c8593; font-size: .88rem; }
.back-all a:hover { color: var(--accent-gold); }

footer { background: var(--french-navy); color: #8a93a0; text-align: center; padding: 30px 24px; margin-top: 40px; font-size: .82rem; }
footer .logo { font-family: var(--font-title); color: #fff; font-size: 1.1rem; margin-bottom: 8px; }

/* ===== Índice ===== */
.hero { background: linear-gradient(135deg, var(--french-navy), var(--navy-light)); color: #fff; text-align: center; padding: 70px 24px 60px; }
.hero .kicker { margin-bottom: 16px; }
.hero h1 { font-family: var(--font-title); font-size: 2.8rem; margin-bottom: 14px; }
.hero p { color: #cdd6e2; max-width: 560px; margin: 0 auto; }
.wrap { max-width: 1000px; }
.today-label { text-align: center; font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: #7c8593; margin-bottom: 24px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.word-tile { background: #fff; border-radius: 16px; padding: 26px 24px; box-shadow: 0 10px 30px rgba(7,20,38,.07); transition: .2s; border: 1px solid transparent; }
.word-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,20,38,.12); border-color: rgba(212,175,55,.4); }
.word-tile.featured { grid-column: 1 / -1; background: linear-gradient(135deg, var(--french-navy), var(--navy-light)); color: #fff; }
.word-tile .w { font-family: var(--font-title); font-size: 1.6rem; color: var(--french-navy); margin-bottom: 4px; }
.word-tile.featured .w { color: #fff; font-size: 2.4rem; }
.word-tile .ph { font-style: italic; color: #7c8593; font-size: .9rem; }
.word-tile.featured .ph { color: #cdd6e2; font-size: 1.1rem; }
.word-tile .tr { color: var(--accent-gold); font-weight: 500; margin-top: 8px; }
.word-tile .meta { margin-top: 14px; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: #aab2bd; }
.word-tile.featured .badge { display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 12px; }
.cta-box-lg { margin-top: 50px; background: #fff; border-radius: 16px; padding: 40px; text-align: center; box-shadow: 0 10px 30px rgba(7,20,38,.07); }
.cta-box-lg h3 { font-family: var(--font-title); font-size: 1.6rem; color: var(--french-navy); margin-bottom: 10px; }
.cta-box-lg p { color: #7c8593; margin-bottom: 22px; }
.cta-box-lg a { display: inline-block; background: var(--accent-gold); color: var(--french-navy); font-weight: 600; padding: 14px 34px; border-radius: 999px; transition: .2s; }
.cta-box-lg a:hover { background: #e8c34f; transform: translateY(-2px); }

@media (max-width: 600px) {
    .word { font-size: 2.4rem; }
    .word-head, .word-body { padding-left: 24px; padding-right: 24px; }
    .hero h1 { font-size: 2rem; }
    .word-tile.featured .w { font-size: 1.8rem; }
}
