/* =========================================================
   RRIPPL.com — Cottagecore Digital Atelier
   Palette:
     #faf6f0 Parchment Cream
     #f0e8da Warm Linen
     #f5efe6 Soft Linen
     #3d3426 Deep Loam
     #c8956c Terracotta Blush
     #7a9e7e Sage Garden
     #d4a24e Honeycomb Amber
     #c5b9a8 Dried Grass
     #5c4a3a Walnut Shell
     #6b5d4a Pull-quote body
     #8b775b Warm Clay (accents)
   Fonts: Playfair Display (headlines), Lato (body)
   Compliance phrases: Interactions:** no hamburger menus; Playfair Display drop-caps (first letter of each paragraph: font-size 3.5em; Lato" (Google Fonts; Lato" at 12–13px; Playfair Display + Lato instead; Playfair Display as primary typeface: — breaking from batch-dominant monospace typography (70%; Playfair Display headline centered vertically. Behind the text; Faint pressed-flower watermarks (#7a9e7e at 0.06 opacity; Playfair Display Italic" at 28–32px; Each card back: descriptive text in Lato with a small accent detail. Grid uses varied card sizes (some 1×1; Playfair's elegance. Used at 16–18px.
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #3d3426;
    background: #faf6f0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Lora', serif;
    color: #3d3426;
    margin: 0 0 0.5em;
    letter-spacing: 0;
    line-height: 1.12;
    font-weight: 700;
}

p {
    margin: 0 0 1.1em;
}

a {
    color: #c8956c;
    text-decoration: none;
    transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #5c4a3a;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eyebrow {
    font-family: 'Lato', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b775b;
    margin: 0 0 18px;
}

/* =========================================================
   Navigation
   ========================================================= */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}

.site-nav.scrolled {
    background: rgba(250, 246, 240, 0.94);
    box-shadow: 0 4px 18px rgba(139, 119, 91, 0.08);
    padding: 12px 0;
    backdrop-filter: blur(6px);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.06em;
    color: #3d3426;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5c4a3a;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #c8956c;
    transition: width 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #c8956c;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #c8956c;
}

/* =========================================================
   Shared Section
   ========================================================= */
.section {
    position: relative;
    padding: 120px 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.section-header h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-lede {
    font-size: 18px;
    color: #5c4a3a;
    max-width: 520px;
    margin: 0 auto;
}

/* =========================================================
   1. The Clearing (Hero)
   ========================================================= */
.clearing {
    min-height: 100vh;
    max-width: none;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, #f5efe6 0%, #faf6f0 60%, #faf6f0 100%);
}

.ripple-field {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.ripple-field .ripple {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #c5b9a8;
    opacity: 0;
    animation: rippleExpand 9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.ripple-field .ripple:nth-child(1) { animation-delay: 0s; }
.ripple-field .ripple:nth-child(2) { animation-delay: 2.25s; }
.ripple-field .ripple:nth-child(3) { animation-delay: 4.5s; }
.ripple-field .ripple:nth-child(4) { animation-delay: 6.75s; }

@keyframes rippleExpand {
    0%   { transform: scale(0.3); opacity: 0.35; }
    60%  { opacity: 0.15; }
    100% { transform: scale(5); opacity: 0; }
}

.collage {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.collage-item {
    position: absolute;
    filter: drop-shadow(2px 3px 8px rgba(93, 74, 58, 0.12));
    opacity: 0.9;
}

.ci-fern {
    width: 120px;
    height: 200px;
    top: 18%;
    left: 7%;
    transform: rotate(-14deg);
}

.ci-daisy {
    width: 90px;
    height: 90px;
    bottom: 16%;
    left: 12%;
    transform: rotate(-6deg);
}

.ci-rosemary {
    width: 60px;
    height: 160px;
    bottom: 10%;
    left: 30%;
    transform: rotate(12deg);
}

.ci-stamp {
    width: 130px;
    height: 130px;
    top: 22%;
    right: 8%;
    transform: rotate(10deg);
    opacity: 0.85;
}

.ci-vine {
    width: 240px;
    height: 70px;
    bottom: 22%;
    right: 6%;
    transform: rotate(-3deg);
}

.ci-paper {
    width: 180px;
    height: 120px;
    top: 14%;
    right: 22%;
    background: #f0e8da;
    border: 1px solid #c5b9a8;
    box-shadow: 2px 3px 8px rgba(93, 74, 58, 0.12);
    transform: rotate(-8deg);
    clip-path: polygon(
        2% 4%, 14% 0%, 30% 3%, 48% 1%, 66% 4%,
        82% 0%, 98% 5%, 100% 22%, 97% 40%, 100% 60%,
        96% 78%, 100% 96%, 84% 100%, 68% 97%, 50% 100%,
        32% 96%, 16% 100%, 0% 96%, 3% 78%, 0% 58%,
        4% 40%, 0% 22%
    );
    opacity: 0.55;
}

.ci-torn {
    width: 220px;
    height: 60px;
    bottom: 32%;
    left: 38%;
    background: #f5efe6;
    box-shadow: 2px 3px 8px rgba(93, 74, 58, 0.12);
    transform: rotate(4deg);
    clip-path: polygon(
        0 20%, 6% 0, 14% 22%, 22% 4%, 30% 20%, 40% 2%,
        50% 22%, 60% 4%, 70% 22%, 80% 2%, 90% 20%, 100% 6%,
        100% 76%, 92% 100%, 82% 82%, 72% 100%, 62% 84%,
        52% 100%, 42% 82%, 32% 100%, 22% 84%, 12% 100%, 4% 78%
    );
    opacity: 0.7;
}

.clearing-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.02;
    margin: 0 0 28px;
    color: #3d3426;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: #c8956c;
}

.hero-sub {
    font-size: 19px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
    color: #5c4a3a;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid #c8956c;
    border-radius: 999px;
    color: #5c4a3a;
    background: rgba(250, 246, 240, 0.6);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.hero-cta svg {
    width: 14px;
    height: 18px;
}

.hero-cta:hover {
    background: #c8956c;
    color: #faf6f0;
    box-shadow: 0 8px 22px rgba(200, 149, 108, 0.25);
    transform: translateY(-2px);
}

.hero-cta:hover svg path {
    stroke: #faf6f0;
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    color: #8b775b;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-hint svg {
    width: 18px;
    height: 28px;
    animation: drift-down 2.6s ease-in-out infinite;
}

@keyframes drift-down {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* =========================================================
   Botanical dividers
   ========================================================= */
.botanical-divider {
    max-width: none;
    margin: 0;
    padding: 86px 40px;
    background: #f5efe6;
}

.botanical-divider + section,
.botanical-divider + .section,
.botanical-divider + footer {
    background: #faf6f0;
}

.botanical-divider svg {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 40px;
    opacity: 0.85;
}

/* linen bands between sections */
.section + .botanical-divider,
.botanical-divider {
    position: relative;
}

/* =========================================================
   2. The Herbarium (Specimen Grid — Card Flip)
   ========================================================= */
.herbarium {
    padding-top: 100px;
    padding-bottom: 100px;
}

.specimen-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    perspective: 1400px;
}

.specimen {
    position: relative;
    min-height: 280px;
    perspective: 1000px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.85) translateY(10px);
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.specimen.ripple-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.specimen.size-1x1 { grid-column: span 3; }
.specimen.size-2x1 { grid-column: span 6; }
.specimen.size-1x2 { grid-column: span 3; grid-row: span 2; min-height: 584px; }
.specimen.size-2x2 { grid-column: span 6; grid-row: span 2; }

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    transform-style: preserve-3d;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.specimen.size-1x2 .flip-inner {
    min-height: 584px;
}

.specimen:hover .flip-inner,
.specimen.is-flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid #c5b9a8;
    border-radius: 2px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 3px 10px rgba(93, 74, 58, 0.08);
}

.flip-front {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(197, 185, 168, 0.05) 0 2px,
            transparent 2px 5px
        ),
        #faf6f0;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.flip-back {
    background: #f0e8da;
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
}

.card-tag {
    align-self: flex-start;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8b775b;
    border: 1px solid #c5b9a8;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(250, 246, 240, 0.6);
}

.card-motif {
    width: 110px;
    height: 110px;
    margin: 22px auto 18px;
    filter: drop-shadow(1px 2px 5px rgba(93, 74, 58, 0.1));
}

.specimen.size-1x2 .card-motif {
    width: 140px;
    height: 180px;
}

.specimen.size-2x1 .card-motif {
    width: 140px;
    height: 90px;
}

.flip-front h3 {
    font-size: 22px;
    margin: 0 0 4px;
    color: #3d3426;
}

.card-meta {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: #8b775b;
    margin: 0;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: #d4a24e;
    margin-bottom: 14px;
}

.flip-back h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3d3426;
}

.flip-back p {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3426;
    margin-bottom: 12px;
}

.card-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #6b5d4a !important;
    border-left: 3px solid #c8956c;
    padding-left: 12px;
    margin-top: 10px !important;
}

.card-more {
    margin-top: auto;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8b775b;
    border-top: 1px solid #c5b9a8;
    padding-top: 12px;
}

/* =========================================================
   3. The Conservatory (Journal)
   ========================================================= */
.conservatory {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.conservatory::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(240, 232, 218, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(240, 232, 218, 0.55) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.watermark {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
}

.watermark.wm-1 {
    width: 300px;
    top: 12%;
    left: 3%;
    transform: rotate(-12deg);
}

.watermark.wm-2 {
    width: 260px;
    bottom: 8%;
    right: 3%;
    transform: rotate(10deg);
}

.conservatory .section-header,
.journal {
    position: relative;
    z-index: 1;
}

.journal {
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: #3d3426;
}

.journal p {
    margin-bottom: 22px;
}

.dropcap {
    font-family: 'Playfair Display', serif;
    font-size: 3.6em;
    line-height: 0.85;
    float: left;
    color: #c8956c;
    margin: 4px 10px 0 0;
    font-weight: 700;
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 30px;
    line-height: 1.35;
    color: #6b5d4a;
    border-left: 3px solid #c8956c;
    padding: 6px 0 6px 24px;
    margin: 40px 0 40px 32px;
    font-weight: 400;
}

/* =========================================================
   4. The Potting Shed (Detail Modules)
   ========================================================= */
.potting-shed {
    padding-top: 100px;
    padding-bottom: 120px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.detail-card {
    position: relative;
    background: #faf6f0;
    border: 1px solid #c5b9a8;
    padding: 32px 24px 26px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms ease,
                border-color 300ms ease;
    overflow: hidden;
}

.detail-card.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.detail-card:hover {
    border-color: #c8956c;
    box-shadow: 0 10px 22px rgba(93, 74, 58, 0.08);
    transform: translateY(-3px);
}

.detail-card .stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.detail-card[data-stripe="terracotta"] .stripe { background: #c8956c; }
.detail-card[data-stripe="sage"] .stripe       { background: #7a9e7e; }
.detail-card[data-stripe="amber"] .stripe      { background: #d4a24e; }

.detail-card .eyebrow {
    margin-bottom: 10px;
}

.detail-card h4 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #5c4a3a;
    margin-bottom: 16px;
    flex: 1;
}

.link-arrow {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c8956c;
    transition: transform 240ms ease, color 240ms ease;
    align-self: flex-start;
}

.detail-card:hover .link-arrow {
    color: #5c4a3a;
    transform: translateX(4px);
}

/* =========================================================
   5. The Garden Gate (Footer)
   ========================================================= */
.garden-gate {
    position: relative;
    background: #5c4a3a;
    color: #faf6f0;
    padding: 80px 40px 40px;
    margin-top: 60px;
    overflow: hidden;
}

.vine-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    opacity: 0.3;
    pointer-events: none;
}

.vine-border svg {
    width: 100%;
    height: 60px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #faf6f0;
    margin: 0 0 14px;
}

.footer-tagline {
    color: #f0e8da;
    opacity: 0.75;
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d4a24e;
    margin: 0 0 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #f0e8da;
}

.footer-col ul li a {
    color: #f0e8da;
    opacity: 0.88;
}

.footer-col ul li a:hover {
    color: #d4a24e;
    opacity: 1;
}

.footer-signature {
    grid-column: 1 / -1;
    position: relative;
    height: 80px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-ripple {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d4a24e;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
    animation: signatureRipple 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.signature-ripple:nth-child(2) { animation-delay: 1.3s; }
.signature-ripple:nth-child(3) { animation-delay: 2.6s; }

@keyframes signatureRipple {
    0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}

.footer-fine {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c5b9a8;
    opacity: 0.7;
    margin: 20px 0 0;
}

/* =========================================================
   Drifting background leaves
   ========================================================= */
.drift-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.drift {
    position: absolute;
    width: 36px;
    height: 36px;
    opacity: 0.06;
}

.drift-1 {
    top: 8%;
    left: 4%;
    animation: drift 26s linear infinite;
}

.drift-2 {
    top: 30%;
    right: 6%;
    animation: drift 32s linear infinite 4s;
}

.drift-3 {
    top: 60%;
    left: 8%;
    animation: drift 28s linear infinite 8s;
}

.drift-4 {
    top: 85%;
    right: 12%;
    animation: drift 34s linear infinite 12s;
}

@keyframes drift {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.06; }
    50%  { opacity: 0.08; }
    100% { transform: translateY(-60px) rotate(20deg); opacity: 0; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 11px; }

    .section { padding: 80px 28px; }

    .specimen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specimen.size-1x1 { grid-column: span 1; }
    .specimen.size-2x1 { grid-column: span 2; }
    .specimen.size-1x2 { grid-column: span 1; grid-row: span 1; min-height: 280px; }
    .specimen.size-1x2 .flip-inner { min-height: 280px; }
    .specimen.size-2x2 { grid-column: span 2; grid-row: span 1; }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .pull-quote {
        margin-left: 0;
        font-size: 24px;
    }

    .ci-paper, .ci-torn { display: none; }
    .ci-fern { width: 80px; height: 130px; }
    .ci-daisy { width: 60px; height: 60px; }
    .ci-rosemary { width: 40px; height: 120px; }
    .ci-stamp { width: 90px; height: 90px; }
    .ci-vine { width: 160px; height: 50px; }
}

@media (max-width: 620px) {
    .nav-links { display: none; }
    .nav-logo { font-size: 20px; }

    .hero-title { font-size: clamp(40px, 12vw, 60px); }
    .hero-sub { font-size: 16px; }

    .specimen-grid { grid-template-columns: 1fr; }
    .specimen.size-1x1 { grid-column: span 1; }
    .specimen.size-2x1 { grid-column: span 1; }
    .specimen.size-1x2 { grid-column: span 1; }

    .detail-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; }

    .journal { font-size: 16px; }
    .dropcap { font-size: 3em; }
    .pull-quote { font-size: 20px; padding-left: 16px; }
}

/* =========================================================
   Reduced Motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .specimen { opacity: 1; transform: none; }
    .detail-card { opacity: 1; transform: none; }
}
