/* Tailor Shop Manager — marketing landing */
:root {
    --ink: #14110f;
    --ink-soft: #3d3833;
    --paper: #f7f3ec;
    --paper-deep: #ebe4d8;
    --charcoal: #1c1917;
    --charcoal-elevated: #292524;
    --gold: #c4a574;
    --gold-bright: #d4b896;
    --gold-deep: #9a7b4f;
    --line: rgba(196, 165, 116, 0.28);
    --font-display: "Cormorant", "Times New Roman", serif;
    --font-body: "Montserrat", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body.landing {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: var(--ink);
    padding: 0.5rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 0.75rem;
    top: 0.75rem;
}

.wrap {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

@media (max-width: 720px) {
    .wrap {
        width: calc(100% - 1.5rem);
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--paper);
    min-width: 0;
}

.brand-wordmark {
    display: block;
    height: 1.85rem;
    width: auto;
    max-width: min(46vw, 11.5rem);
    object-fit: contain;
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border-radius: 0.45rem;
    object-fit: cover;
    display: block;
}

.brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(52vw, 16rem);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    color: rgba(247, 243, 236, 0.82);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 200ms var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--gold-bright);
}

.nav-cta {
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--gold);
    color: var(--charcoal) !important;
    background: var(--gold);
    transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--charcoal) !important;
}

.nav-ghost {
    padding: 0.55rem 0.7rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(196, 165, 116, 0.45);
    background: transparent;
    color: var(--paper);
    cursor: pointer;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 1.15rem;
}

.nav-toggle-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

body.nav-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(0.34rem) rotate(45deg);
}

body.nav-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-0.34rem) rotate(-45deg);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--charcoal-elevated);
    max-height: min(78vh, 36rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-panel:not([hidden]) {
    display: block;
}

.mobile-panel-inner {
    padding: 1rem 0 1.35rem;
}

.mobile-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.mobile-search input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.65rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(247, 243, 236, 0.2);
    background: rgba(0, 0, 0, 0.25);
    color: var(--paper);
    font: inherit;
    font-size: 0.95rem;
}

.mobile-search input[type="search"]::placeholder {
    color: rgba(247, 243, 236, 0.55);
}

.mobile-search button {
    flex-shrink: 0;
    min-height: 2.65rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--charcoal);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-nav > a {
    display: block;
    padding: 0.7rem 0.15rem;
    color: rgba(247, 243, 236, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(247, 243, 236, 0.08);
}

.mobile-nav > a[aria-current="page"] {
    color: var(--gold-bright);
}

.mobile-nav > a.mobile-nav-sub {
    padding-left: 1rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(247, 243, 236, 0.72);
}

.mobile-nav-label {
    margin: 0.85rem 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.mobile-nav-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.mobile-nav-actions .btn {
    width: 100%;
}

.mobile-nav-actions .btn-secondary {
    border-color: rgba(247, 243, 236, 0.35);
    color: var(--paper);
}

body.nav-open {
    overflow: hidden;
}

.nav-dropdown {
    position: relative;
    /* Keep hover continuous while moving from Blog → categories */
    padding-bottom: 0.85rem;
    margin-bottom: -0.85rem;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-trigger::after {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-0.1rem) rotate(45deg);
    opacity: 0.7;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12.5rem;
    margin: 0;
    padding: 0.45rem 0;
    list-style: none;
    background: var(--charcoal);
    border: 1px solid rgba(196, 165, 116, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    z-index: 40;
}

.nav-submenu li + li {
    border-top: 1px solid rgba(247, 243, 236, 0.08);
}

.nav-submenu a {
    display: block;
    padding: 0.55rem 0.9rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.8rem;
    white-space: nowrap;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero — full-bleed, brand-first */
.hero {
    position: relative;
    min-height: min(100vh, 860px);
    display: grid;
    align-items: end;
    padding: 5.5rem 0 4.5rem;
    color: var(--paper);
    background: var(--charcoal);
    overflow: hidden;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-photo-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(28, 25, 23, 0.55) 0%, rgba(28, 25, 23, 0.72) 45%, rgba(28, 25, 23, 0.88) 100%),
        linear-gradient(90deg, rgba(28, 25, 23, 0.55) 0%, transparent 55%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(115deg, transparent 40%, rgba(196, 165, 116, 0.08) 50%, transparent 60%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015) 0,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 7px
        );
    animation: grain-drift 18s linear infinite;
}

.hero-stitch {
    position: absolute;
    inset: 12% 8% auto;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0 10px,
        transparent 10px 18px
    );
    opacity: 0.45;
    transform-origin: left center;
    animation: stitch-draw 1.6s var(--ease) 0.2s both;
}

.hero-glow {
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: min(70vw, 640px);
    height: min(70vw, 640px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 165, 116, 0.22), transparent 68%);
    animation: glow-pulse 7s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    animation: rise-in 0.9s var(--ease) both;
}

.brand-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-bright);
}

.brand-hero-wordmark {
    display: block;
    width: min(100%, 17.5rem);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.brand-hero-mark {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.65rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--paper);
}

.hero-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    color: rgba(247, 243, 236, 0.78);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.7rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.btn:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gold-deep);
    color: var(--paper);
    border-color: var(--gold-deep);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.btn-secondary {
    background: transparent;
    color: var(--paper);
    border-color: rgba(247, 243, 236, 0.35);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

/* Chapters */
.chapter {
    padding: 5rem 0;
}

.eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.chapter h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-lead {
    margin: 0 0 2.5rem;
    max-width: 36rem;
    color: var(--ink-soft);
}

.chapter-problem {
    background: var(--paper-deep);
}

.chapter-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .chapter-grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }

    .chapter-grid-reverse {
        grid-template-columns: 1fr 1.1fr;
    }
}

.chapter-visual {
    margin: 0;
    overflow: hidden;
}

.chapter-visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.chapter-visual-compact {
    max-width: 28rem;
}

.chapter-visual-compact img {
    max-height: 260px;
}

.chapter-intro-with-visual {
    display: grid;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
    .chapter-intro-with-visual {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        align-items: end;
    }

    .chapter-intro-with-visual .section-lead {
        margin-bottom: 0;
    }
}

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

.plain-list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.35rem;
    border-top: 1px solid rgba(28, 25, 23, 0.1);
    color: var(--ink-soft);
}

.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 0.55rem;
    height: 1px;
    background: var(--gold-deep);
}

.chapter-features {
    background: var(--paper);
}

.feature-rail {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(28, 25, 23, 0.12);
}

.feature {
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.12);
}

.feature h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
}

.feature p {
    margin: 0;
    max-width: 40rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

@media (min-width: 900px) {
    .feature-rail {
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
    }

    .feature:nth-child(odd) {
        padding-right: 1rem;
    }
}

.chapter-workflow {
    background: var(--charcoal);
    color: var(--paper);
}

.chapter-workflow .eyebrow {
    color: var(--gold);
}

.chapter-workflow .section-lead,
.chapter-workflow p {
    color: rgba(247, 243, 236, 0.75);
}

.workflow {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 800px) {
    .workflow {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.workflow li {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.workflow .step {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.workflow h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.workflow p {
    margin: 0;
    font-size: 0.9rem;
}

.mid-cta {
    margin: 2.5rem 0 0;
}

.chapter-pricing {
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(196, 165, 116, 0.12), transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(28, 25, 23, 0.04), transparent 50%),
        var(--paper-deep);
}

.chapter-pricing .section-lead {
    margin-bottom: 2rem;
}

.pricing-path {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .pricing-path {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.pricing-path li {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 25, 23, 0.12);
}

.pricing-path .step {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-deep);
    letter-spacing: 0.08em;
}

.pricing-path h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-path p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.pricing-includes {
    max-width: 36rem;
    margin-bottom: 2rem;
}

.pricing-includes h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.pricing-includes .plain-list li:first-child {
    border-top: 1px solid rgba(28, 25, 23, 0.1);
}

.pricing-actions {
    margin-top: 0.5rem;
}

.chapter-pricing .btn-secondary {
    background: transparent;
    border-color: color-mix(in srgb, var(--ink) 30%, transparent);
    color: var(--ink);
}

.chapter-pricing .btn-secondary:hover {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
    background: color-mix(in srgb, var(--gold) 14%, transparent);
}

.chapter-climax {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--paper);
    background: var(--charcoal);
}

.climax-photo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.climax-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.climax-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.72);
}

.climax-inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.climax-inner p {
    color: rgba(247, 243, 236, 0.78);
    margin: 0 0 1.5rem;
}

.climax-inner .hero-actions {
    justify-content: center;
}

.climax-inner .btn-secondary {
    color: var(--paper);
    border-color: rgba(247, 243, 236, 0.35);
}

.climax-inner .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

/* Footer */
.site-footer {
    background: var(--charcoal);
    color: rgba(247, 243, 236, 0.7);
    padding: 0 0 1.5rem;
    font-size: 0.85rem;
}

.newsletter {
    border-bottom: 1px solid var(--line);
    padding: 2.25rem 0 2rem;
    margin-bottom: 1.25rem;
}

.newsletter-inner {
    display: grid;
    gap: 1.25rem 2rem;
    align-items: end;
}

@media (min-width: 768px) {
    .newsletter-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
    }
}

.newsletter-copy .eyebrow {
    margin-bottom: 0.45rem;
}

.newsletter-copy h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--paper);
    line-height: 1.15;
}

.newsletter-copy p {
    margin: 0;
    max-width: 32rem;
    color: rgba(247, 243, 236, 0.68);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.newsletter-input {
    flex: 1 1 12rem;
    min-width: 0;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--gold);
    border-radius: 0.45rem;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.newsletter-input::placeholder {
    color: rgba(20, 17, 15, 0.42);
}

.newsletter-input:focus,
.newsletter-input:focus-visible {
    outline: none;
    border-color: var(--gold-deep);
    box-shadow: none;
}

.newsletter-input:-webkit-autofill,
.newsletter-input:-webkit-autofill:hover,
.newsletter-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ink);
    box-shadow: 0 0 0 1000px #fff inset;
    border: 1px solid var(--gold);
    transition: background-color 99999s ease-out;
}

.newsletter-submit {
    flex: 0 0 auto;
    min-height: 2.75rem;
    gap: 0.55rem;
}

.newsletter-spinner {
    display: none;
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid rgba(28, 25, 23, 0.25);
    border-top-color: var(--charcoal);
    border-radius: 50%;
    flex-shrink: 0;
}

.newsletter-form[data-busy="1"] .newsletter-submit {
    opacity: 0.92;
    cursor: wait;
}

.newsletter-form[data-busy="1"] .newsletter-spinner {
    display: inline-block;
    animation: newsletter-spin 0.7s linear infinite;
}

@keyframes newsletter-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .newsletter-form[data-busy="1"] .newsletter-spinner {
        animation: none;
        border-top-color: rgba(28, 25, 23, 0.25);
        opacity: 0.7;
    }
}

.newsletter-error {
    margin: 0;
    color: #f0a8a0;
    font-size: 0.8rem;
}

.newsletter-error[hidden] {
    display: none !important;
}

.toast-host {
    position: fixed;
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: min(22rem, calc(100vw - 2rem));
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 0.9rem 1.05rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--paper);
    background: #1c1917;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-0.45rem);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.is-in {
    opacity: 1;
    transform: translateY(0);
}

.toast.is-out {
    opacity: 0;
    transform: translateY(-0.35rem);
}

.toast--success {
    border-color: rgba(196, 165, 116, 0.55);
    background: #2a241c;
    color: #f0e2c4;
}

.toast--info {
    border-color: rgba(196, 165, 116, 0.4);
    background: #222018;
    color: #e8dcc0;
}

.toast--error {
    border-color: rgba(220, 120, 110, 0.55);
    background: #2a1c1c;
    color: #f5d0cb;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.footer-panel {
    display: grid;
    gap: 1.75rem;
    padding: 0 0 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
    .footer-panel {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
        align-items: start;
    }
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.35rem;
}

.footer-brand-wordmark {
    display: block;
    height: 1.65rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
}

.footer-brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand-name {
    display: block;
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--paper);
}

.footer-brand p {
    margin: 0;
    max-width: 22rem;
    color: rgba(247, 243, 236, 0.62);
    line-height: 1.5;
}

.footer-brand p.footer-brand-about {
    margin-top: 0.75rem;
    color: rgba(247, 243, 236, 0.78);
    font-size: 0.92rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    max-width: 2.35rem;
    max-height: 2.35rem;
    overflow: hidden;
    box-sizing: border-box;
    color: rgba(247, 243, 236, 0.78);
    border: 1px solid rgba(247, 243, 236, 0.22);
    border-radius: 999px;
    text-decoration: none;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.footer-social-link:hover {
    color: var(--gold-bright);
    border-color: rgba(212, 184, 150, 0.55);
    background: rgba(212, 184, 150, 0.08);
}

.footer-social svg,
.footer-social-icon {
    width: 1.1rem;
    height: 1.1rem;
    max-width: 1.1rem;
    max-height: 1.1rem;
    display: block;
    flex-shrink: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
}

@media (min-width: 700px) {
    .footer-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-col-label {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.footer-col a {
    color: rgba(247, 243, 236, 0.78);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold-bright);
}

.footer-links {
    display: inline-flex;
    gap: 1rem;
}

@media (max-width: 640px) {
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

.page-hero {
    padding: 5.5rem 0 1.75rem;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(196, 165, 116, 0.18), transparent 55%),
        linear-gradient(180deg, var(--paper-deep), var(--paper));
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0.35rem 0 0.75rem;
}

.page-body {
    padding-top: 0.5rem;
    padding-bottom: 3.5rem;
}

.page-layout {
    display: grid;
    gap: 2.25rem;
    align-items: start;
}

@media (min-width: 900px) {
    .page-layout {
        grid-template-columns: minmax(0, 1fr) 12.5rem;
    }
}

.prose-page {
    max-width: 42rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.65;
}

.prose-page > *:first-child {
    margin-top: 0;
}

.brand-lockup {
    margin: 0 0 1.75rem;
}

.brand-lockup img {
    display: block;
    width: min(100%, 22rem);
    height: auto;
}

.prose-page h2 {
    margin: 2rem 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--ink);
}

.prose-page p,
.prose-page ul {
    margin: 0 0 1rem;
}

.prose-page ul {
    padding-left: 1.2rem;
}

.prose-page li + li {
    margin-top: 0.35rem;
}

.prose-page ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    color: var(--ink-soft);
}

.prose-page ol li + li {
    margin-top: 0.45rem;
}

.page-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.prose-page a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* Buttons must not inherit prose link underline / gold text */
.prose-page a.btn,
.prose-blog a.btn,
.blog-cta a.btn {
    text-decoration: none;
    text-underline-offset: unset;
}

.prose-page .btn-primary,
.page-cta-row .btn-primary,
.blog-cta .btn-primary,
.blog-sidebar-cta .btn-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.prose-page .btn-primary:hover,
.page-cta-row .btn-primary:hover,
.blog-cta .btn-primary:hover,
.blog-sidebar-cta .btn-primary:hover {
    background: var(--charcoal-elevated);
    border-color: var(--charcoal-elevated);
    color: var(--paper);
}

.prose-page .btn-secondary,
.page-cta-row .btn-secondary,
.blog-cta .btn-secondary {
    background: transparent;
    border-color: color-mix(in srgb, var(--ink) 30%, transparent);
    color: var(--ink);
}

.prose-page .btn-secondary:hover,
.page-cta-row .btn-secondary:hover,
.blog-cta .btn-secondary:hover {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
    background: color-mix(in srgb, var(--gold) 14%, transparent);
}

.page-updated {
    margin: 0 0 1.25rem !important;
    font-size: 0.85rem;
    color: rgba(61, 56, 51, 0.7);
}

.page-aside {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

@media (min-width: 900px) {
    .page-aside {
        border-top: 0;
        border-left: 1px solid var(--line);
        padding: 0 0 0 1.25rem;
        position: sticky;
        top: 5.5rem;
    }
}

.page-aside-label {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.page-aside-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.page-aside-nav a {
    color: var(--ink-soft);
    text-decoration: none;
}

.page-aside-nav a:hover,
.page-aside-nav a[aria-current="page"] {
    color: var(--ink);
}

.contact-panel {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-grid {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-field label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--gold);
    border-radius: 0.45rem;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--gold-deep);
}

.contact-submit {
    align-self: flex-start;
    gap: 0.55rem;
}

.contact-form[data-busy="1"] .newsletter-spinner {
    display: inline-block;
    animation: newsletter-spin 0.7s linear infinite;
}

.contact-error {
    margin: 0;
    color: #9f3b32;
    font-size: 0.82rem;
}

.contact-error[hidden] {
    display: none !important;
}

.contact-success {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(196, 165, 116, 0.45);
    background: rgba(196, 165, 116, 0.12);
    color: var(--ink);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
    padding: 0.85rem 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
}

.faq-item p {
    margin: 0.65rem 0 0;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stitch-draw {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 0.45;
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes grain-drift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 120px 40px, 40px 0;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        align-items: center;
        padding: 4.75rem 0 3.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .chapter {
        padding: 3.25rem 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
    }

    .blog-hero {
        padding: 4.5rem 0 1.5rem;
    }

    .blog-hero h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .blog-search {
        max-width: none;
    }

    .blog-search input[type="search"],
    .blog-search button {
        width: 100%;
    }

    .blog-search-clear {
        width: 100%;
    }

    .blog-pager {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-pager-links {
        width: 100%;
    }

    .blog-pager-btn {
        flex: 1 1 auto;
    }

    .climax-inner .hero-actions {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .hero {
        min-height: auto;
        padding-top: 4.25rem;
    }
}

/* Blog */
.blog-preview-banner {
    background: var(--charcoal);
    color: var(--gold-bright);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.55rem 1rem;
}

.blog-hero {
    padding: 5.5rem 0 2rem;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(196, 165, 116, 0.18), transparent 55%),
        linear-gradient(180deg, var(--paper-deep), var(--paper));
}

.blog-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0.35rem 0 0.75rem;
}

.blog-index {
    padding-top: 1rem;
}

.blog-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .blog-layout {
        grid-template-columns: minmax(0, 1fr) 12rem;
    }
}

.blog-sidebar {
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
}

@media (min-width: 960px) {
    .blog-sidebar {
        border-top: 0;
        border-left: 1px solid var(--line);
        padding-top: 0;
        padding-left: 1.25rem;
        position: sticky;
        top: 5.5rem;
    }
}

.blog-sidebar-heading {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}

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

.blog-sidebar-list li + li {
    margin-top: 0.35rem;
}

.blog-sidebar-list a {
    display: block;
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--ink-soft);
    text-decoration: none;
}

.blog-sidebar-list a:hover,
.blog-sidebar-list a[aria-current="page"] {
    color: var(--ink);
}

.blog-sidebar-list a[aria-current="page"] {
    font-weight: 600;
}

.blog-search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    margin-top: 1.5rem;
    max-width: 36rem;
}

.blog-search input[type="search"] {
    flex: 1 1 14rem;
    min-height: 2.65rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
    background: var(--paper, #fff);
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
}

.blog-search input[type="search"]::placeholder {
    color: var(--ink-soft);
}

.blog-search button {
    min-height: 2.65rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper, #fff);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
}

.blog-search button:hover,
.blog-search button:focus-visible {
    background: var(--charcoal, #1b1b18);
}

.blog-search-clear {
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.blog-card-meta a {
    color: inherit;
    text-decoration: none;
}

.blog-card-meta a:hover {
    color: var(--ink);
}

.blog-empty {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.blog-card {
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
}

.blog-card-cover {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--paper-deep);
}

.blog-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-meta {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.blog-card h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.blog-card h2 a:hover {
    color: var(--gold-deep);
}

.blog-card-body p {
    margin: 0 0 0.75rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin: 0;
}

.blog-pagination {
    margin-top: 2.5rem;
}

.blog-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-pager-links {
    display: flex;
    gap: 0.5rem;
}

.blog-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.45rem 1rem;
    border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
    background: var(--paper, #fff);
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.blog-pager-btn:hover:not(.is-disabled) {
    border-color: color-mix(in srgb, var(--ink) 40%, transparent);
    background: color-mix(in srgb, var(--ink) 4%, transparent);
}

.blog-pager-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.blog-pager-meta {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ink-soft);
}

.blog-pager-meta span {
    color: var(--ink);
    font-weight: 600;
}

.blog-post-header {
    padding: 5.5rem 0 1.5rem;
}

.blog-post-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0.35rem 0 0.75rem;
}

.blog-post-cover {
    margin-bottom: 0;
}

.blog-post-cover + .wrap .blog-share,
.blog-post-header + .wrap .blog-share {
    margin-top: 1.15rem;
    margin-bottom: 1.5rem;
    padding-top: 0;
    border-top: 0;
}

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

.blog-post-body {
    padding-bottom: 2rem;
    max-width: none;
}

.blog-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    width: 100%;
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.blog-post-header .blog-share {
    margin-top: 1.15rem;
    padding-top: 1rem;
}

.blog-share--compact {
    margin: 0.65rem 0 0.85rem;
    padding-top: 0.75rem;
    gap: 0.5rem 0.75rem;
}

.blog-share--compact .blog-share-label {
    font-size: 0.72rem;
}

.blog-share--compact .blog-share-btn {
    min-height: 2rem;
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
}

.blog-card .blog-share {
    border-top-color: rgba(28, 25, 23, 0.08);
}

.blog-card-body .blog-share-label {
    margin: 0;
}

.blog-post-body + .blog-share {
    margin-top: 0;
    margin-bottom: 0.25rem;
    padding-top: 1.25rem;
}

.blog-share-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.blog-share-list,
.blog-share-list > li {
    list-style: none;
}

.blog-share-list > li::marker {
    content: none;
}

.blog-share-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    padding-inline-start: 0;
}

.blog-share-list > li {
    display: flex;
    margin: 0;
    padding: 0;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.25rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(28, 25, 23, 0.14);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink-soft);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.blog-share-btn:hover,
.blog-share-btn:focus-visible {
    color: var(--gold-deep);
    border-color: rgba(154, 123, 79, 0.45);
    background: rgba(196, 165, 116, 0.12);
}

.blog-share-btn.is-copied {
    color: var(--gold-deep);
    border-color: rgba(154, 123, 79, 0.55);
}

.blog-share-icon {
    width: 0.95rem;
    height: 0.95rem;
    max-width: 0.95rem;
    max-height: 0.95rem;
    display: block;
    flex-shrink: 0;
}

.blog-share-btn-label {
    white-space: nowrap;
}

@media (max-width: 720px) {
    .blog-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .blog-share-list {
        flex-wrap: nowrap;
        gap: 0.45rem;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-share-list::-webkit-scrollbar {
        display: none;
    }

    .blog-share-btn,
    .blog-share--compact .blog-share-btn {
        width: 2.75rem;
        min-width: 2.75rem;
        height: 2.75rem;
        min-height: 2.75rem;
        padding: 0;
        border-radius: 999px;
        background: var(--paper);
        border-color: rgba(196, 165, 116, 0.42);
        box-shadow: 0 1px 0 rgba(28, 25, 23, 0.05);
    }

    .blog-share-icon {
        width: 1.1rem;
        height: 1.1rem;
        max-width: 1.1rem;
        max-height: 1.1rem;
    }

    .blog-share-btn-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

.blog-related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.blog-related-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.blog-related-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
}

.blog-related-header a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.blog-related-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.blog-related-card h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
}

.blog-related-card h3 a:hover {
    color: var(--gold-deep);
}

.blog-related-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.blog-post-layout {
    padding-bottom: 4rem;
}

.prose-blog {
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.prose-blog > *:first-child {
    margin-top: 0;
}

.prose-blog h2,
.prose-blog h3 {
    font-family: var(--font-display);
    color: var(--ink);
    margin-top: 2rem;
}

.prose-blog a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.prose-blog img {
    margin: 1.5rem 0;
    border-radius: 0;
}

.blog-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 1.75rem 0;
    background: var(--charcoal);
}

.blog-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-cta {
    margin: 2rem 0 0;
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(196, 164, 106, 0.08), rgba(255, 255, 255, 0.4));
}

.blog-cta-inner .eyebrow {
    margin-bottom: 0.35rem;
}

.blog-cta-inner h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--ink);
}

.blog-cta-inner p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.blog-cta-newsletter {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--line);
}

.blog-cta-newsletter-label {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.blog-inline-newsletter .newsletter-fields {
    max-width: 28rem;
}

.blog-sidebar-cta {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.blog-sidebar-cta-copy {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.blog-sidebar-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.blog-sidebar-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.blog-adsense {
    margin: 1.5rem 0;
    min-height: 1px;
}

