:root {
    --paper: #f7f3ed;
    --paper-deep: #ebe4d9;
    --paper-warm: #faf7f2;
    --ink: #1c1b19;
    --ink-soft: #4a4743;
    --ink-muted: #6b6760;
    --sage: #5c6b5a;
    --sage-dark: #465244;
    --sage-light: #e8ede7;
    --clay: #b86b4f;
    --clay-soft: #d4917a;
    --gold: #c4a574;
    --line: rgba(28, 27, 25, 0.1);
    --line-strong: rgba(28, 27, 25, 0.16);
    --shadow-sm: 0 4px 16px rgba(28, 27, 25, 0.06);
    --shadow: 0 12px 40px rgba(28, 27, 25, 0.09);
    --shadow-lg: 0 24px 60px rgba(28, 27, 25, 0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Karla", system-ui, sans-serif;
    --max: 1180px;
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--paper);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(92, 107, 90, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(184, 107, 79, 0.05) 0%, transparent 45%);
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

/* Prevent horizontal scroll on mobile */
body { overflow-x: hidden; }

.page-tail { padding-bottom: 3.5rem; }

.map-note {
    max-width: 38rem;
    margin-bottom: 1.25rem;
    color: var(--ink-soft);
}

.pull-quote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--sage);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.4;
}

.letter-footer { margin-top: 2rem; }

/* Single post */
.post-page { padding-top: 2rem; }

.post-header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.post-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--clay);
    margin-bottom: 0.75rem;
}

.post-meta a {
    text-decoration: none;
    color: var(--clay);
}
.post-meta a:hover { color: var(--sage-dark); }

.post-lede {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.post-hero {
    margin-bottom: 2.5rem;
}

.post-hero img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.post-body {
    margin-bottom: 2.5rem;
    font-size: 1.08rem;
    line-height: 1.85;
}

.post-body p { margin-bottom: 1.35rem; }

.post-inline {
    margin: 2rem 0;
}

.post-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.intro-copy { min-width: 0; }

a {
    color: var(--sage-dark);
    text-underline-offset: 0.2em;
    transition: color var(--ease);
}
a:hover { color: var(--clay); }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.1rem; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.35rem; }

address { font-style: normal; }

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clay);
    margin-bottom: 0.75rem;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 0.75rem 1rem;
    z-index: 9999;
    border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-primary {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--sage-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-dark); background: #fff; }

.btn-text {
    background: none;
    border: none;
    padding: 0;
    color: var(--sage-dark);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.btn-text:hover { color: var(--clay); }

/* Header */
.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(247, 243, 237, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-shell {
    width: min(var(--max), calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: opacity var(--ease);
}
.brand:hover { opacity: 0.85; color: inherit; }

.brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #fff 0%, var(--paper-deep) 100%);
    box-shadow: var(--shadow-sm);
}

.brand-mark img {
    display: block;
    width: 1.65rem;
    height: 1.65rem;
}

.brand-text { display: flex; flex-direction: column; min-width: 0; }

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.78rem;
    color: var(--ink-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 18rem;
}

.menu-btn {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    position: relative;
}
.menu-btn span,
.menu-btn::before,
.menu-btn::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
}
.menu-btn span { top: 50%; transform: translateY(-50%); }
.menu-btn::before { top: 0.85rem; }
.menu-btn::after { bottom: 0.85rem; }

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}
.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: var(--clay);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    max-width: 34rem;
    margin: 0 auto;
}
.cookie-inner {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-lg);
}
.cookie-inner h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.cookie-inner p { font-size: 0.95rem; color: var(--ink-soft); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.85rem; }

/* Hero / intro bands */
.intro-band {
    padding: 4rem 0 2.5rem;
    position: relative;
}

.intro-band::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--max), calc(100% - 2.5rem));
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.intro-band .lede {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ink-soft);
    max-width: 42rem;
    line-height: 1.5;
}

.intro-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.intro-hero .hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

.intro-hero .hero-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* Note mosaic (homepage) */
.note-mosaic {
    padding: 2.5rem 0 4rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.35rem;
}

.note-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--ease), box-shadow var(--ease);
    overflow: hidden;
}

.note-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.note-card .meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--clay);
}

.note-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}

.note-card h2 a {
    text-decoration: none;
    color: inherit;
}
.note-card h2 a:hover { color: var(--clay); }

.note-card.wide { grid-column: span 7; }
.note-card.tall { grid-column: span 5; }
.note-card.compact { grid-column: span 4; }
.note-card.feature-photo { grid-column: span 8; padding: 0; }
.note-card.feature-photo .card-body { padding: 1.5rem; }
.note-card.feature-photo img { width: 100%; height: 240px; object-fit: cover; }

.note-card.has-thumb {
    padding: 0;
}

.note-card.has-thumb .card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.note-card.has-thumb .card-body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.note-card blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.35;
    color: var(--ink);
}

.note-card .list-note {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.98rem;
}

.note-card .list-note li { margin-bottom: 0.4rem; }

.note-card figure { margin: 0; }
.note-card figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Page shells */
.page-head {
    padding: 3.5rem 0 2rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
}

.page-head.with-image {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: end;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2.5rem;
}

.page-hero .hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.page-hero .hero-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.page-head .subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-soft);
    max-width: 38rem;
    line-height: 1.45;
}

.prose {
    max-width: 42rem;
}

.prose-wide { max-width: 52rem; }

.prose img,
.figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.figure img {
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: cover;
}

.figure figcaption {
    font-size: 0.9rem;
    color: var(--ink-soft);
    padding: 0.85rem 1rem;
    background: var(--paper-deep);
    border-top: 1px solid var(--line);
}

.split-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--line);
}

.split-section.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.entry-list { list-style: none; padding: 0; margin: 0; }

.entry-list li {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.entry-list .entry-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
}

.entry-list .entry-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 140px;
}

.entry-list .entry-body h3 { margin-bottom: 0.35rem; font-size: 1.35rem; }
.entry-list .entry-body h3 a {
    text-decoration: none;
    color: inherit;
}
.entry-list .entry-body h3 a:hover { color: var(--clay); }

.entry-list .entry-thumb {
    display: block;
    text-decoration: none;
    transition: opacity var(--ease);
}
.entry-list .entry-thumb:hover { opacity: 0.92; }

.entry-list .date { font-size: 0.85rem; color: var(--clay); margin-bottom: 0.5rem; font-weight: 500; }

.entry-list li.no-thumb {
    grid-template-columns: 1fr;
}

.quote-panel {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: #fff;
    padding: 2.25rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quote-panel p {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    margin: 0;
    line-height: 1.35;
}

.org-block {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.org-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Correspondence */
.letter-card {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.letter-card:last-of-type {
    border-bottom: none;
}

.letter-card h2 {
    font-size: 1.65rem;
}

.letter-card em {
    color: var(--ink-muted);
    font-style: italic;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    padding: 2rem 0 3rem;
}

.contact-panel,
.contact-form,
.form-success {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-studio-photo {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.contact-studio-photo img {
    width: 100%;
    height: clamp(160px, 28vw, 220px);
    object-fit: cover;
}

.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 500; margin-bottom: 0.4rem; }
.field-note { font-weight: 400; color: var(--ink-soft); font-size: 0.9rem; }

.field input,
.field textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    font: inherit;
    background: var(--paper-warm);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(92, 107, 90, 0.15);
}

.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.form-alert {
    background: #fff4f0;
    border: 1px solid #e8b4a8;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
}
.form-alert ul { margin: 0; padding-left: 1.1rem; }

.map-section { padding: 0 0 3.5rem; }
.map-section h2 { margin-bottom: 1.25rem; }
.map-block {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.map-embed { width: 100%; height: 420px; border: 0; display: block; }

/* Legal */
.legal-doc {
    padding-bottom: 4rem;
}
.legal-doc h2 {
    margin-top: 2rem;
    font-size: 1.65rem;
}
.legal-doc h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #252422 0%, var(--ink) 100%);
    color: #ddd8cf;
    padding: 3.5rem 0 0;
    margin-top: 3rem;
}

.footer-grid {
    width: min(var(--max), calc(100% - 2.5rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--clay-soft);
    margin-bottom: 0.85rem;
}

.footer-block a { color: #ddd8cf; text-decoration: none; }
.footer-block a:hover { color: #fff; text-decoration: underline; }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }

.footer-base {
    width: min(var(--max), calc(100% - 2.5rem));
    margin: 2.5rem auto 0;
    padding: 1.35rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #a8a097;
}

/* 404 */
.error-page {
    text-align: center;
    padding: 5rem 0;
}

/* Responsive */
@media (max-width: 960px) {
    body { font-size: 1rem; }

    .container,
    .header-shell,
    .footer-grid,
    .footer-base {
        width: min(var(--max), calc(100% - 1.5rem));
    }

    .intro-band { padding: 2.5rem 0 1.5rem; }

    .intro-hero,
    .page-hero,
    .mosaic-grid { grid-template-columns: 1fr; gap: 1.75rem; }

    .intro-hero .hero-image img,
    .page-hero .hero-img img {
        min-height: 0;
        height: clamp(200px, 42vw, 280px);
    }

    .note-card.wide,
    .note-card.tall,
    .note-card.compact,
    .note-card.feature-photo { grid-column: span 1; }

    .note-card { padding: 1.25rem; }
    .note-card.has-thumb .card-body,
    .note-card.feature-photo .card-body { padding: 1.25rem; }

    .note-card.feature-photo img,
    .note-card.has-thumb .card-thumb img {
        height: clamp(160px, 38vw, 220px);
    }

    .note-card blockquote { font-size: 1.25rem; }

    .split-section,
    .split-section.reverse,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.75rem 0;
    }

    .page-head { padding: 2.5rem 0 1.5rem; margin-bottom: 1.75rem; }

    .page-hero {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
        gap: 1.5rem;
    }

    .entry-list li {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.35rem 0;
    }

    .entry-list .entry-thumb {
        max-width: none;
        width: 100%;
    }

    .quote-panel { padding: 1.5rem; }
    .quote-panel p { font-size: 1.3rem; }

    .org-block { padding: 1.5rem; margin-top: 1.5rem; }

    .contact-panel,
    .contact-form,
    .form-success { padding: 1.5rem; }

    .map-embed { height: clamp(260px, 55vw, 380px); }

    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .brand-tag { display: none; }

    .menu-btn { display: block; }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-bottom: 0.75rem;
        border-top: 1px solid var(--line);
        margin-top: 0.5rem;
        padding-top: 0.75rem;
    }
    .site-nav.open { display: flex; }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

    .split-section.reverse .figure { order: -1; }

    .figure img {
        min-height: clamp(180px, 40vw, 260px);
        max-height: none;
    }

    .entry-list .entry-thumb {
        aspect-ratio: 16 / 10;
    }

    .contact-studio-photo img {
        height: clamp(180px, 45vw, 240px);
    }

    .contact-layout { padding: 1.25rem 0 2rem; }

    .letter-card h2 { font-size: 1.4rem; }

    .cookie-inner .cookie-actions { flex-direction: column; }
    .cookie-inner .cookie-actions .btn { width: 100%; }

    .post-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .post-footer .btn { width: 100%; justify-content: center; }

    .post-lede { font-size: 1.15rem; }

    .post-hero img { max-height: 280px; }

    .prose, .prose-wide { max-width: none; word-wrap: break-word; overflow-wrap: anywhere; }
}

@media (max-width: 480px) {
    .mosaic-grid { gap: 1rem; }

    .note-card:hover { transform: none; box-shadow: var(--shadow-sm); }

    .header-shell { padding: 0.75rem 0; }

    .footer-grid { gap: 1.5rem; }

    .entry-list li { padding: 1.15rem 0; }

    .page-head .subtitle { font-size: 1.1rem; }

    .intro-band .lede { font-size: 1.15rem; }

    .menu-btn {
        width: 3rem;
        height: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
    .note-card:hover { transform: none; }
}
