/* resellbazaar.in — fresh, trusted, community-first
   Palette: mint-cream bg + deep indigo ink + brand green + teal + mustard.
   Type: Fraunces (display, playful serif) + Plus Jakarta Sans (body).
   Motion: subtle blob movement, section fade-ins, hover-lift on cards. */

:root {
    --bg:          #F1F8F3;
    --panel:       #FFFFFF;
    --ink:         #1A1A2E;
    --ink-soft:    #2A2A45;
    --muted:       #6B6B8A;
    --line:        #D8E5DB;
    --line-soft:   #E5EEE7;
    --accent:      #048032;   /* brand green */
    --accent-2:    #2EC4B6;   /* teal */
    --accent-3:    #FFD166;   /* mustard */
    --accent-soft: #DCEEE1;   /* green wash */
    --teal-soft:   #D4F1EE;
    --yellow-soft: #FFF4D6;
    --warn:        #E63946;

    --f-display: "Fraunces", ui-serif, Georgia, serif;
    --f-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    --wrap: 1160px;
    --pad-x: clamp(20px, 4vw, 40px);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(26,26,46,0.04), 0 2px 8px rgba(26,26,46,0.04);
    --shadow-md: 0 4px 12px rgba(26,26,46,0.06), 0 12px 32px rgba(26,26,46,0.08);
    --shadow-lift: 0 10px 40px rgba(4,128,50,0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* ─── Scroll progress bar (fixed) ─────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-3) 100%);
    z-index: 100;
    transition: width 0.1s ease;
}

/* ─── Masthead ────────────────────────────────────────────────── */

.masthead {
    background: rgba(241,248,243,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}
.masthead-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 16px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.8; }
.brand-logo {
    display: block;
    width: 290px;
    height: 62px;
    max-width: 100%;
}
@media (max-width: 780px) {
    .brand-logo { width: 220px; height: 47px; }
}
.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover { background: var(--accent-soft); color: var(--accent); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--bg); }

.nav-mobile-toggle { display: none; }

/* ─── Layout wrapper ─────────────────────────────────────────── */

main.wrap {
    padding: 0 var(--pad-x);
    max-width: var(--wrap);
    margin: 0 auto;
    position: relative;
}

/* ─── Section building block ─────────────────────────────────── */

.section {
    padding: clamp(26px, 7vw, 26px) 0;
    position: relative;
}
.section + .section { padding-top: 0; }
.section-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    max-width: 760px;
    color: var(--ink);
}
.section-title em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
.section-lede {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 0 48px;
    line-height: 1.6;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}
.section-eyebrow.eb-teal { background: var(--teal-soft); color: var(--accent-2); }
.section-eyebrow.eb-teal::before { background: var(--accent-2); }
.section-eyebrow.eb-yellow { background: var(--yellow-soft); color: #B58200; }
.section-eyebrow.eb-yellow::before { background: #B58200; }

/* ─── Hero grid (2-column with graphic on the right) ─────────── */

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-visual,
.page-hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}
@media (max-width: 900px) {
    .hero-visual,
    .page-hero-visual { justify-self: center; max-width: 420px; }
}

/* ─── Floating cards & chips (used across hero SVGs) ─────────── */

.float-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    z-index: 2;
}
.float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    flex-shrink: 0;
}
.float-card-icon.teal   { background: var(--teal-soft); color: var(--accent-2); }
.float-card-icon.yellow { background: var(--yellow-soft); color: #B58200; }
.float-card-icon.red    { background: #FFE4E4; color: var(--warn); }

.float-card-title {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 2px;
    font-weight: 700;
}
.float-card-value {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
    display: block;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes floatYSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
@keyframes floatRot {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    50%      { transform: translate(0, -8px) rotate(-1deg); }
}
@keyframes floatRotAlt {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50%      { transform: translate(0, -6px) rotate(4deg); }
}
@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}

.anim-float      { animation: floatY 5s ease-in-out infinite; }
.anim-float-slow { animation: floatYSlow 7s ease-in-out infinite; }
.anim-float-rot  { animation: floatRot 6s ease-in-out infinite; }
.anim-float-alt  { animation: floatRotAlt 8s ease-in-out infinite; }

/* Central SVG "device" element in hero — sits behind floating cards */
.hero-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 260px;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(26,26,46,0.15));
}
.hero-device.rotated { transform: translate(-50%, -50%) rotate(-6deg); }

/* Decorative circle background inside hero-visual */
.hero-visual-bg {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--yellow-soft) 100%);
    z-index: 0;
}
.hero-visual-bg.teal   { background: linear-gradient(135deg, var(--teal-soft) 0%, var(--accent-soft) 100%); }
.hero-visual-bg.yellow { background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--teal-soft) 100%); }

/* Homepage hero container — old rules follow */
/* ─── Homepage hero (animated blob) ──────────────────────────── */

.hero {
    padding: clamp(56px, 9vw, 128px) 0 clamp(40px, 7vw, 96px);
    position: relative;
    overflow: visible;
}
.hero-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 30% 30%, var(--accent-soft) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, var(--teal-soft) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: blobFloat 18s ease-in-out infinite;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33%      { transform: translate(-40px, 30px) scale(1.05) rotate(60deg); }
    66%      { transform: translate(30px, -20px) scale(0.98) rotate(-30deg); }
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}
.hero-tag-dot {
    width: 8px; height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.hero-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
    max-width: 900px;
}
.hero-title em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 10px;
    background: var(--accent-3);
    z-index: -1;
    border-radius: 3px;
    transform: skewY(-1.5deg);
}
.hero-sub {
    font-size: 20px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.55;
    margin: 0 0 40px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-meta {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}
.hero-meta-num {
    font-family: var(--f-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

/* ─── Buttons ────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--bg);
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--f-body);
    letter-spacing: 0.005em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 0 var(--ink);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--accent), var(--shadow-lift);
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn::after { content: "→"; transition: transform 0.2s ease; }
.btn:hover::after { transform: translateX(4px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ─── Category tiles (colorful, playful) ─────────────────────── */

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.tile {
    display: block;
    padding: 36px 32px 32px;
    background: var(--panel);
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.tile::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--accent-soft);
    border-radius: 50%;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.tile:nth-child(2)::before { background: var(--teal-soft); }
.tile:nth-child(3)::before { background: var(--yellow-soft); }
.tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.tile:nth-child(2):hover { border-color: var(--accent-2); }
.tile:nth-child(3):hover { border-color: #B58200; }
.tile:hover::before { transform: scale(1.4); opacity: 0.9; }
.tile-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.tile-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    color: var(--ink);
    position: relative;
    z-index: 1;
}
.tile-body {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.tile-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.tile:nth-child(2) .tile-cta { color: var(--accent-2); }
.tile:nth-child(3) .tile-cta { color: #B58200; }

/* ─── Feature grid ───────────────────────────────────────────── */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.feature {
    padding: 32px 28px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.feature:nth-child(4n+2) .feature-icon { background: var(--teal-soft); }
.feature:nth-child(4n+3) .feature-icon { background: var(--yellow-soft); }
.feature:nth-child(4n) .feature-icon   { background: #F0E4FF; }
.feature:hover .feature-icon { transform: rotate(-6deg) scale(1.1); }
.feature-num {
    display: block;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 8px;
}
.feature-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--ink);
}
.feature-body {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ─── Budget cards ───────────────────────────────────────────── */

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.budget {
    padding: 32px 28px;
    background: var(--panel);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.budget::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.budget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-soft);
}
.budget:hover::before { transform: scaleX(1); }
.budget-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
    margin: 0;
}
.budget-price {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 34px;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    line-height: 1;
}
.budget-price em { color: var(--accent); font-style: normal; }
.budget-note { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.55; }
.budget-cta {
    margin-top: auto;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ─── Checklist (numbered grid) ──────────────────────────────── */

.checklist {
    counter-reset: check;
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}
.checklist li {
    counter-increment: check;
    padding: 20px 24px 20px 64px;
    background: var(--panel);
    border-radius: var(--radius-sm);
    position: relative;
    font-size: 15px;
    line-height: 1.55;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.checklist li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.checklist li::before {
    content: counter(check, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 700;
}
.checklist li strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 600; }
.checklist li:nth-child(3n)::before { background: var(--teal-soft); color: var(--accent-2); }
.checklist li:nth-child(5n)::before { background: var(--yellow-soft); color: #B58200; }

/* ─── Callouts ───────────────────────────────────────────────── */

.callout {
    padding: 24px 28px 24px 60px;
    background: var(--yellow-soft);
    border-radius: var(--radius);
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    border: 1px solid #F5E5B8;
}
.callout::before {
    content: "💡";
    position: absolute;
    left: 22px;
    top: 24px;
    font-size: 20px;
    line-height: 1;
}
.callout p { margin: 0; }
.callout p + p { margin-top: 12px; }
.callout strong { color: var(--ink); font-weight: 700; }

.callout-warn {
    background: #FFE4E4;
    border-color: #FBC7C7;
}
.callout-warn::before { content: "⚠️"; }
.callout-warn strong { color: var(--warn); }

.callout-tip {
    background: var(--teal-soft);
    border-color: #A8E0DA;
}
.callout-tip::before { content: "✨"; }
.callout-tip strong { color: var(--accent-2); }

/* ─── Split (comparison) ─────────────────────────────────────── */

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.split-col {
    padding: 32px 28px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
    position: relative;
}
.split-col:hover { transform: translateY(-3px); }
.split-col-good::before,
.split-col-bad::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.split-col-good { border-top: 4px solid var(--accent-2); }
.split-col-good::before { content: "✓"; background: var(--teal-soft); color: var(--accent-2); font-weight: 700; }
.split-col-bad { border-top: 4px solid var(--warn); }
.split-col-bad::before { content: "×"; background: #FFE4E4; color: var(--warn); font-weight: 700; }

.split-col h3 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.split-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}
.split-col li {
    padding: 6px 0 6px 24px;
    position: relative;
}
.split-col li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.split-col-good li::before { content: "✓"; color: var(--accent-2); }
.split-col-bad li::before { content: "×"; color: var(--warn); }

/* ─── Mistakes ───────────────────────────────────────────────── */

.mistakes {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}
.mistakes li {
    padding: 24px 24px 24px 68px;
    background: var(--panel);
    border-radius: var(--radius);
    position: relative;
    font-size: 15px;
    line-height: 1.55;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mistakes li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.mistakes li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    width: 32px;
    height: 32px;
    background: #FFE4E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mistakes li::after {
    content: "×";
    position: absolute;
    left: 30px;
    top: 20px;
    color: var(--warn);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.mistakes strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 600; }

/* ─── Process (numbered) ─────────────────────────────────────── */

.process {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    gap: 16px;
}
.process li {
    counter-increment: step;
    padding: 28px 28px 28px 96px;
    background: var(--panel);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.process li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(4,128,50,0.35);
}
.process li:nth-child(2n)::before { background: var(--accent-2); box-shadow: 0 4px 12px rgba(46,196,182,0.35); }
.process li:nth-child(3n)::before { background: #B58200; box-shadow: 0 4px 12px rgba(181,130,0,0.35); }
.process-title {
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 6px;
    color: var(--ink);
}
.process-body {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ─── FAQ ────────────────────────────────────────────────────── */

.faq {
    margin: 40px 0;
    display: grid;
    gap: 12px;
}
.faq-item {
    padding: 24px 28px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.faq-q::before {
    content: "Q";
    font-family: var(--f-display);
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.faq-a {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-left: 30px;
    max-width: 720px;
}

/* ─── Post cards ─────────────────────────────────────────────── */

.post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.post-card {
    display: block;
    padding: 32px 28px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.post-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-3) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.post-card:hover::before { transform: scaleX(1); }
.post-card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-soft);
    border-radius: 999px;
    margin-bottom: 16px;
}
.post-card-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
    transition: color 0.2s ease;
}
.post-card:hover .post-card-title { color: var(--accent); }

/* ─── Page hero (interior pages) ─────────────────────────────── */

.page-hero {
    padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
    position: relative;
    overflow: visible;
}
.page-hero-blob {
    position: absolute;
    top: 0;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: blobFloat 18s ease-in-out infinite;
}
.page-hero-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 16px 0 24px;
    max-width: 900px;
    color: var(--ink);
}
.page-hero-title em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    position: relative;
}
.page-hero-title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: var(--accent-3);
    z-index: -1;
    border-radius: 3px;
    transform: skewY(-1.5deg);
}
.page-hero-lede {
    font-size: 19px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

/* ─── Prose-inline (small blocks of running text) ────────────── */

.prose-inline {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.75;
}
.prose-inline p { margin: 0 0 18px; }
.prose-inline p + p { margin-top: 0; }
.prose-inline strong { font-weight: 700; color: var(--ink); }
.prose-inline a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ─── Help CTA (bold, cheerful) ──────────────────────────────── */

.help-cta {
    margin: 80px 0 0;
    padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.help-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(30px);
    animation: blobFloat 20s ease-in-out infinite;
}
.help-cta::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    opacity: 0.25;
    filter: blur(30px);
    animation: blobFloat 22s ease-in-out infinite reverse;
}
.help-cta > * { position: relative; z-index: 1; }
.help-cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-3);
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
}
.help-cta-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: #fff;
}
.help-cta-title em { color: var(--accent-3); font-style: italic; font-weight: 400; }
.help-cta-body {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    max-width: 460px;
}
.help-cta-actions { display: flex; justify-content: flex-end; align-items: center; }
.help-cta .btn {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
    padding: 16px 32px;
    font-size: 15px;
}
.help-cta .btn:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    box-shadow: 0 4px 0 var(--accent-3), 0 8px 24px rgba(0,0,0,0.2);
}
@media (max-width: 780px) {
    .help-cta { grid-template-columns: 1fr; padding: 40px 28px; }
    .help-cta-actions { justify-content: flex-start; }
}

/* ─── Editorial (legal pages) ────────────────────────────────── */

.editorial {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}
.editorial h1 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(40px, 5vw, 56px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 16px 0 12px;
}
.editorial .meta {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.editorial h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 44px 0 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.editorial h2::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transform: translateY(-3px);
}
.editorial h3 {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 17px;
    margin: 28px 0 8px;
    color: var(--ink);
}
.editorial p, .editorial ul, .editorial ol {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 16px;
}
.editorial ul, .editorial ol { padding-left: 22px; }
.editorial li { margin: 6px 0; }
.editorial a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.editorial strong { color: var(--ink); font-weight: 700; }

/* ─── Forms ──────────────────────────────────────────────────── */

.field { display: block; margin: 0 0 20px; }
.field > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.005em;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { min-height: 160px; resize: vertical; }
.field-honeypot { position: absolute; left: -9999px; }

/* ─── Testimonials ───────────────────────────────────────────── */

.testimonial {
    padding: 36px 32px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.testimonial::before {
    content: """;
    position: absolute;
    top: -30px;
    right: 16px;
    font-family: var(--f-display);
    font-size: 140px;
    color: var(--accent-soft);
    line-height: 1;
font-weight: 700;}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--yellow-soft);
    color: #B58200;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}
.testimonial-quote {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

/* ─── Footer ─────────────────────────────────────────────────── */

.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 64px var(--pad-x) 32px;
    margin-top: 96px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-3) 50%, var(--accent-2) 100%);
}
.footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer h4 {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-3);
    margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 10px 0; }
.footer a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color 0.2s ease; }
.footer a:hover { color: var(--accent-3); }
.footer-brand {
    display: inline-flex;
    align-items: center;
    margin: 0 0 20px;
    line-height: 0;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.2s ease;
}
.footer-brand:hover { transform: translateY(-2px); }
.footer-brand-logo {
    display: block;
    width: 290px;
    height: 62px;
    max-width: 100%;
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 0; }
.footer-bottom {
    max-width: var(--wrap);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── Reveal animations (Intersection Observer) ──────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 780px) {
    .masthead-inner { padding: 14px var(--pad-x); }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 20px var(--pad-x);
        border-bottom: 1px solid var(--line);
        gap: 4px;
        box-shadow: var(--shadow-md);
    }
    .nav.open { display: flex; }
    .nav a { padding: 12px 16px; text-align: center; }
    .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--ink);
        color: var(--bg);
        border: 0;
        border-radius: 999px;
        padding: 10px 18px;
        font-family: var(--f-body);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
    }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-blob, .page-hero-blob { width: 400px; height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* Focus visibility */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Contact page 2-col layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 780px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-side {
    padding: 32px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.contact-side h3 {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px;
    color: var(--accent);
}
.contact-side-item { margin: 0 0 20px; }
.contact-side-item strong {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    font-weight: 700;
}

/* ─── Valuation calculator ───────────────────────────────────── */

.calc-card {
    max-width: 760px;
    padding: 44px;
    background: var(--panel);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(216,229,219,0.7);
}
@media (max-width: 640px) { .calc-card { padding: 28px 22px; } }

.calc-field { margin: 0 0 24px; }
.calc-field-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.calc-field-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.005em;
}
.calc-field-value {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--pct, 30%), #D8E5DB var(--pct, 30%), #D8E5DB 100%);
    outline: none;
    cursor: pointer;
    margin: 6px 0 4px;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(4,128,50,0.35);
    cursor: grab;
    transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.calc-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(4,128,50,0.35);
    cursor: grab;
}
.calc-slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    font-family: var(--f-body);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.calc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.calc-pill {
    flex: 1 1 auto;
    min-width: fit-content;
    padding: 12px 16px;
    background: #FAF7F0;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    line-height: 1.3;
}
.calc-pill:hover { background: var(--accent-soft); color: var(--accent); }
.calc-pill.is-active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 0 2px 0 var(--accent);
    transform: translateY(-1px);
}
.calc-pill small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 2px;
}

.calc-result {
    margin-top: 36px;
    padding: 36px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--yellow-soft) 60%, var(--teal-soft) 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.calc-result::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    filter: blur(20px);
}
.calc-result-eyebrow {
    font-family: var(--f-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 8px;
    position: relative;
}
.calc-result-price {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(42px, 6vw, 64px);
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1;
    position: relative;
    transition: color 0.25s ease;
}
.calc-result-price.pulse { animation: calcPulse 0.5s ease; }
@keyframes calcPulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.035); color: var(--accent); }
    100% { transform: scale(1); }
}
.calc-result-range {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0 0 20px;
    position: relative;
}
.calc-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
.calc-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 2px 0 var(--ink);
    transition: all 0.15s ease;
}
.calc-share-btn:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 0 var(--accent);
}
.calc-share-btn.copied {
    background: var(--accent-2);
    color: #fff;
    border-color: var(--accent-2);
    box-shadow: 0 2px 0 var(--ink);
}

/* ─── Blog post (show) ──────────────────────────────────────── */

.post-hero {
    position: relative;
    padding: clamp(48px, 7vw, 84px) 0 clamp(24px, 3vw, 36px);
    overflow: visible;
}
.post-hero-blob {
    position: absolute;
    top: 0;
    right: -8%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.post-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}
.post-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    font-family: var(--f-body);
}
.post-hero-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(32px, 4.8vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 18px 0 18px;
}
.post-hero-lede {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 780px;
    font-family: var(--f-body);
}
.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    font-family: var(--f-body);
}
.post-hero-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
}
.post-hero-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
}
.post-hero-author {
    color: var(--ink);
    font-weight: 600;
    margin-left: -6px;
}
.post-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.post-hero-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.post-hero-share-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-right: 2px;
}
.post-hero-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease;
    padding: 0;
}
.post-hero-share-btn:hover { transform: translateY(-1px); opacity: .92; }
.post-hero-share-btn.sh-fb   { background: #1877f2; }
.post-hero-share-btn.sh-rd   { background: #ff4500; }
.post-hero-share-btn.sh-x    { background: #000; }
.post-hero-share-btn.sh-in   { background: #0a66c2; }
.post-hero-share-btn.sh-wa   { background: #25d366; }
.post-hero-share-btn.sh-copy { background: #f1f3f4; color: var(--ink); border: 1px solid var(--line); }
.post-hero-share-btn.sh-copy.copied { background: var(--accent); color: #fff; border-color: var(--accent); }
.post-hero-image {
    margin: 4px 0 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.post-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 640px) {
    .post-hero-title { font-size: clamp(28px, 7vw, 40px); }
    .post-hero-meta { flex-direction: column; align-items: flex-start; }
    .post-hero-share { width: 100%; justify-content: flex-start; }
}

.post-editorial {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 42px) 0;
}
.post-editorial > * { font-family: var(--f-body); }
.post-editorial p, .post-editorial ul, .post-editorial ol {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 20px;
}
.post-editorial h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 34px);
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 44px 0 16px;
    position: relative;
    padding-left: 20px;
}
.post-editorial h2::before {
    content: "";
    position: absolute;
    left: 0; top: 12px; bottom: 12px;
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.post-editorial h3 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    margin: 32px 0 12px;
}
.post-editorial ul, .post-editorial ol { padding-left: 22px; }
.post-editorial li { margin: 6px 0; }
.post-editorial a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.post-editorial strong { color: var(--ink); font-weight: 700; }
.post-editorial blockquote {
    margin: 28px 0;
    padding: 20px 28px;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink);
}
.post-editorial img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }
