/* ============================================
   Michele Clerici — clericimc.com
   "Lavagna" — hand-drawn sketch single-page experience
   ============================================ */

/* --- Self-hosted fonts (Archivo Black + Space Mono · Latin subset) --- */
@font-face { font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/archivo-black-400.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/space-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/space-mono-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/space-mono-700.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url('/assets/fonts/space-mono-700-italic.woff2') format('woff2'); }

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Keyboard focus — clear, on-brand ring for interactive elements (mouse users unaffected) */
a:focus-visible,
button:focus-visible,
.btn-icon:focus-visible,
.experience-toggle:focus-visible,
.nav-lang:focus-visible,
.page-back:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--chalk);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Skip link — off-screen until focused, then a clear on-brand chip */
.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    padding: 0.7rem 1.1rem;
    background: var(--chalk);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
}
.skip-link:focus { top: 1rem; color: var(--bg); }

:root {
    --bg: #0a0a0b;
    --bg-card: #141416;
    --chalk: #f4f4f2;
    --chalk-soft: #cfcfcd;
    --text: #f4f4f2;
    --text-muted: #8d8d8a;
    --text-dim: #8a8a87;
    --accent: #f4f4f2;
    --accent-hover: #ffffff;
    --chalk-line: rgba(244, 244, 242, 0.16);
    --chalk-line-soft: rgba(244, 244, 242, 0.08);
    --font-heading: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
    --font-body: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
    --font-hand: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
    --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
    --container: 1200px;
    --container-narrow: 800px;
    --radius: 2px;
    --radius-sm: 2px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Chalk / paper grain texture over the whole board */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Soft chalkboard vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
strong { font-weight: 600; color: var(--text); }

::selection { background: var(--accent); color: var(--bg); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--chalk-line); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; position: relative; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; position: relative; }

/* ============================================
   Hero entrance — the name types itself in, then stays
   ============================================ */
/* The name is the only "signature": a clip-path wipe sweeps it in from the
   left once, then it stays exactly as it is — no overlay, no scene swap.
   A smooth wipe (not stepped) so it reads cleanly in the proportional
   display face. */
.hero-title-ink {
    display: inline-block;
    animation: writeIn 1s cubic-bezier(0.76, 0, 0.24, 1) 0.35s both;
}

@keyframes writeIn {
    from { clip-path: inset(0 100% -16% 0); }
    to   { clip-path: inset(0 0 -16% 0); }
}

/* Blinking block caret that trails the name as it types. */
.hero-caret {
    display: inline-block;
    width: 0.5em;
    height: 0.12em;
    margin-left: 0.12em;
    vertical-align: 0.1em;
    background: var(--accent);
    animation: caretBlink 1.05s steps(1, end) infinite;
}

@keyframes caretBlink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

/* Returning within the same session: no replay, the name is simply there. */
html.booted .hero-title-ink {
    animation: none;
    clip-path: none;
}

/* Cursor-follow cinematic flare — a soft bloom plus a wide anamorphic streak
   that glides under the pointer and lights up the film (screen blend). */
.spotlight {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    background:
        radial-gradient(ellipse 46vw 5px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 68%),
        radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(244, 244, 242, 0.10), transparent 70%),
        radial-gradient(circle 54px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.spotlight.on { opacity: 1; }

/* ============================================
   Cinematic background
   ============================================ */
/* Cinematic background still / loop — kept black & white (grayscale), dimmed,
   sitting behind the cursor flare so the page reads as "a light moving over
   film". The poster (assets/hero.jpg) doubles as the still; assets/hero.mp4
   is the loop. */
.hero-media {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Poster doubles as the still: shows instantly before the loop loads and
       remains when the video is hidden (reduced-motion). Sized like the video. */
    background-color: #050506;
    background-image: url('../assets/hero.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.08) brightness(1);
    opacity: 0.42;
}

.hero-video {
    width: 100%;
    height: 100%;
    /* The source is anamorphic scope (1280x474, 2.70:1). 'contain' keeps the
       full frame undistorted; the letterbox bars read as black on the dark
       page, giving a deliberate cinematic band behind the name. */
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent; /* bars reveal the identical poster behind — seamless */
}

.main-content { position: relative; z-index: 3; }
.site-footer { position: relative; z-index: 3; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(20, 23, 26, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--chalk-line-soft);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--chalk); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-lang {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--chalk-line);
    border-radius: var(--radius-sm);
    transition: color var(--transition), border-color var(--transition);
}

.nav-lang::after { display: none; }
.nav-lang:hover { border-color: var(--chalk); color: var(--chalk); }

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero-content { max-width: 840px; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 0;
    color: var(--chalk);
}

.hero-roles {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 2.2vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 1.5rem 0 2rem;
}

.hero-bio {
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 48ch;
    margin: 0 auto 2.5rem;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.hero-social {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-social a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: color var(--transition), border-color var(--transition);
}

.hero-social a:hover { color: var(--text); border-bottom-color: var(--text); }

/* --- Buttons (monochrome invert) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border: 1.5px solid var(--chalk-line);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text);
    border-color: var(--chalk);
}

.btn:active { transform: translateY(0) scale(0.98); }

/* Icon buttons — minimal line glyphs (mail / WhatsApp), same language as .btn */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1.5px solid var(--chalk-line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-icon svg { width: 1.35rem; height: 1.35rem; display: block; }
.btn-icon:hover {
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.btn-icon:active { transform: translateY(0) scale(0.96); }

/* Experience — one button reveals a short list of competencies. Hover on
   desktop, tap on touch (.open via JS). A popover, so the single screen
   never shifts. */
.experience { position: relative; display: inline-flex; }
.experience-panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.7rem);
    transform: translateX(-50%);
    width: min(94vw, 34rem);
    max-width: 94vw;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--chalk-line);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 5;
}
/* invisible bridge across the gap so hover doesn't drop between button & panel */
.experience-panel::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.7rem;
}
.experience:hover .experience-panel,
.experience:focus-within .experience-panel,
.experience.open .experience-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Two pillars side by side: Creative Director + Digital Marketing */
.experience-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.6rem; align-items: start; }
.exp-group-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--chalk);
    margin-bottom: 0.7rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--chalk-line);
}
.experience-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.experience-panel li { display: flex; flex-direction: column; gap: 0.12rem; }
.exp-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--chalk-soft);
}
.exp-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-muted);
}

/* Desktop: a touch larger inside the Esperienza popover for readability (mobile unchanged) */
@media (min-width: 769px) {
    .exp-group-title { font-size: 0.82rem; }
    .exp-role { font-size: 0.8rem; }
    .exp-sub { font-size: 0.82rem; }
}

@media (max-width: 768px) {
    /* keep the button (and its centered popover) on its own centered line */
    .experience { flex-basis: 100%; justify-content: center; }
    /* stack the two pillars; cap height so the popover never runs off-screen */
    .experience-panel { grid-template-columns: 1fr; gap: 1rem; width: min(90vw, 21rem); max-height: 62vh; overflow-y: auto; }
}

/* --- Sections --- */
.section { padding: 7rem 0; position: relative; }

/* --- Page Hero (contact) --- */
.page-hero {
    padding: 11rem 0 3rem;
    text-align: center;
}

.page-back {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}

.page-back:hover { color: var(--chalk); }

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--chalk);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Legal / Privacy page --- */
.legal { max-width: var(--container-narrow); }

.legal h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--chalk);
    margin: 2.75rem 0 0.85rem;
}

.legal h2:first-child { margin-top: 0; }

.legal p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal a {
    color: var(--chalk-soft);
    border-bottom: 1px solid var(--chalk-line);
    transition: color var(--transition), border-color var(--transition);
}

.legal a:hover { color: var(--chalk); border-bottom-color: var(--chalk); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: var(--bg-card);
    border: 1.5px solid var(--chalk-line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--accent); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
    gap: 1rem;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    font-size: 1.4rem;
    font-family: var(--font-hand);
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 40rem; }

.faq-answer div {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--chalk-line-soft);
    padding: 2.5rem 0;
}

.footer-container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--text-dim);
}

.footer-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: var(--text-muted);
    transition: color var(--transition);
    padding: 0.35rem 0;
}

.footer-bottom a:hover { color: var(--chalk); }

/* ============================================
   Reveal animations
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Returning within the same session: everything is already in place. */
html.booted .animate-fade-up {
    animation: none;
    opacity: 1;
    transform: none;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    /* Mobile: the film becomes a banner ABOVE the name (no overlap with the
       text), fading into the page at its lower edge. */
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding: calc(38vh + 2rem) 1.5rem 3.5rem;
    }
    .hero-title { font-size: clamp(1.3rem, 7.8vw, 2.4rem); }

    .hero-media {
        position: absolute;
        inset: 0 0 auto 0;
        height: 38vh;
        background-size: cover;
        opacity: 0.9;
        -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent);
                mask-image: linear-gradient(to bottom, #000 62%, transparent);
    }
    .hero-video { object-fit: cover; object-position: 62% center; } /* nudge the frame left on mobile */

    /* No moving flare on touch — it has little sense without a cursor. */
    .spotlight { display: none; }
    .section { padding: 4.5rem 0; }
    .page-hero { padding: 9rem 0 2rem; }

    .container, .container-narrow { padding: 0 1.25rem; }

    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .hero-contact .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    html { scroll-behavior: auto; }
    .animate-fade-up { opacity: 1; transform: none; }
    .hero-title-ink { animation: none; clip-path: none; }
    .hero-caret { animation: none; opacity: 0; }
    .spotlight { display: none; }
    .hero-video { display: none; } /* keep the still, drop the motion */
}

/* ============================================
   Cinema — directing portfolio (festival laurels)
   ============================================ */
.laurel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 1.3rem; max-width: 780px; margin: 0 auto; }
.laurel { text-align: center; text-decoration: none; color: inherit; display: block; transition: transform var(--transition); }
.laurel-frame { position: relative; container-type: inline-size; }
.laurel-wreath { width: 100%; height: auto; display: block; opacity: 0.9; transition: opacity var(--transition), transform var(--transition); }
.laurel-core { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 25%; }
.laurel-award { font-family: var(--font-mono); font-size: 4.4cqw; letter-spacing: 0.14em; text-transform: uppercase; color: var(--chalk-soft); }
.laurel-fest { font-family: var(--font-mono); font-weight: 700; font-size: 6.6cqw; line-height: 1.1; text-transform: uppercase; margin: 0.35rem 0; color: var(--chalk); }
.laurel-year { font-family: var(--font-mono); font-size: 4.6cqw; letter-spacing: 0.1em; color: var(--text-muted); }
.laurel-cap { margin-top: 0.7rem; display: flex; flex-direction: column; gap: 0.16rem; }
.laurel-film { font-family: var(--font-heading); font-weight: 400; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--chalk); }
.laurel-cred { font-family: var(--font-mono); font-size: 0.66rem; color: var(--text-dim); letter-spacing: 0.03em; line-height: 1.3; }
.laurel-meta { font-family: var(--font-mono); font-size: 0.66rem; color: var(--text-muted); line-height: 1.35; }
.laurel-ext { color: var(--text-dim); }
.laurel:hover { transform: translateY(-4px); }
.laurel:hover .laurel-wreath { opacity: 1; transform: scale(1.03); }
.laurel:hover .laurel-meta { color: var(--chalk-soft); }
.laurel:hover .laurel-ext { color: var(--chalk-soft); }
@media (max-width: 760px) {
    .laurel-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1rem; max-width: 480px; }
}
