/* Ink Words Publishing */

:root {
    --navy: #00122e;
    --navy-2: #0a2347;
    --navy-dark: #000a18;
    --navy-light: #1a3a5c;
    --black: #000000;

    --cream: #f7f8fa;
    --cream-2: #eef1f6;
    --sage: #dce4ef;
    --sage-2: #c5d0e0;
    --forest: #00122e;
    --forest-2: #0a2347;
    --copper: #00122e;
    --copper-2: #000a18;
    --ink: #0a1220;
    --muted: #5a6578;
    --line: #d8dee8;
    --white: #fff;

    --serif: 'Literata', Georgia, serif;
    --sans: 'Sora', system-ui, sans-serif;

    --shell: 1160px;
    --nav-h: 76px;
    --radius: 4px;
    --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.skip-link {
    position: absolute; left: -9999px; top: 12px; z-index: 1000;
    padding: 10px 16px; background: var(--forest); color: var(--white);
    border-radius: var(--radius); font-weight: 600; font-size: .85rem;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--copper); outline-offset: 2px; }
.intro-frame.hero-static video { display: none; }
.intro-frame.hero-static {
    background: var(--cream-2) url('../images/hero-poster.svg') center/cover no-repeat;
}
body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

.shell, .wrap, .container { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 26px; font-size: .85rem; font-weight: 600;
    border-radius: var(--radius); border: 2px solid transparent;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    cursor: pointer;
}
.btn-lg { padding: 16px 32px; font-size: .9rem; }
.btn-sm { padding: 9px 18px; font-size: .78rem; }
.btn-block { width: 100%; }
.btn-copper, .btn-primary, .btn-glow {
    background: var(--copper); color: var(--white); border-color: var(--copper);
}
.btn-copper:hover, .btn-primary:hover { background: var(--copper-2); border-color: var(--copper-2); transform: translateY(-1px); }
.btn-line, .btn-outline, .btn-secondary {
    background: transparent; border-color: var(--ink); color: var(--ink);
}
.btn-line:hover, .btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--forest); border-color: var(--white); }

/* Nav */
.site-nav {
    position: sticky; top: 0; z-index: 100;
    height: var(--nav-h); background: rgba(247,248,250,.94);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
    transition: box-shadow .25s, background .25s;
}
.site-nav.is-scrolled { box-shadow: 0 4px 24px rgba(12,27,49,.08); background: rgba(247,248,250,.98); }
.site-nav-row { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.site-logo {
    display: flex; align-items: center;
    flex-shrink: 0;
}
.site-logo-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: min(210px, 48vw);
}
.site-foot .site-logo-img {
    height: 64px;
    max-width: min(260px, 60vw);
}
.site-logo-light { color: var(--cream); }
.site-menu { display: flex; align-items: center; gap: 28px; }
.site-menu a {
    font-size: .85rem; font-weight: 500; color: var(--muted);
    position: relative; padding: 4px 0;
}
.site-menu a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--navy); transition: width .25s;
}
.site-menu a:hover, .site-menu a.active { color: var(--navy); }
.site-menu a.active::after, .site-menu a:hover::after { width: 100%; }
.site-nav-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 32px; height: 32px; position: relative; }
.burger i, .burger i::before, .burger i::after {
    display: block; width: 22px; height: 2px; background: var(--ink); position: absolute; left: 5px; transition: .3s;
}
.burger i { top: 15px; }
.burger i::before { content: ''; top: -7px; }
.burger i::after { content: ''; top: 7px; }
.burger.open i { background: transparent; }
.burger.open i::before { transform: rotate(45deg); top: 0; }
.burger.open i::after { transform: rotate(-45deg); top: 0; }

/* Intro hero — split layout */
.intro { padding: clamp(32px, 5vw, 56px) 0 0; background: var(--cream); }

/* Full-viewport homepage hero */
.hero-full {
    height: calc(100svh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.hero-full .intro-body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    min-height: 0;
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    width: 100%;
    padding-bottom: clamp(28px, 4vw, 40px);
}
.hero-full .intro-grid { padding-bottom: 0; }
.intro.hero-full { padding: 0; }

.kicker {
    display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .12em; color: var(--copper); margin-bottom: 16px;
}
.intro-copy h1 span { color: var(--forest); font-style: italic; }
.intro-copy p { margin: 20px 0 28px; color: var(--muted); font-size: 1.05rem; max-width: 460px; }
.intro-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.intro-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.intro-chips li {
    padding: 6px 14px; font-size: .72rem; font-weight: 600; color: var(--forest);
    background: var(--sage); border-radius: var(--radius);
}
.intro-visual { position: relative; padding-bottom: 44px; }
.intro-frame {
    border-radius: var(--radius-lg); overflow: hidden;
    height: clamp(260px, 42vh, 440px);
    box-shadow: 0 24px 60px rgba(44,36,22,.15); border: 1px solid var(--line);
}
.hero-full .intro-frame {
    height: clamp(280px, min(52vh, 520px), 520px);
}
.intro-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-covers {
    position: absolute; bottom: 0; right: 0;
    display: flex; gap: 8px;
}
.intro-covers img {
    width: 64px; aspect-ratio: 2/3; object-fit: cover;
    border-radius: 3px; box-shadow: 0 8px 24px rgba(0,0,0,.2);
    border: 2px solid var(--white);
}

/* Logo row */
.logo-row {
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.logo-row-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 28px);
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.logo-row-inner ul {
    justify-content: center;
}
.logo-row > span,
.logo-row-inner > span { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.logo-row ul,
.logo-row-inner ul { display: flex; flex-wrap: wrap; gap: 20px; }
.logo-row li,
.logo-row-inner li { font-size: .82rem; font-weight: 600; color: var(--ink); }

/* Blocks */
.block { padding: clamp(64px, 9vw, 96px) 0; }
.intro + .block { padding-top: clamp(36px, 5vw, 48px); }
.block-cream { background: var(--cream-2); }
.block-sage { background: var(--sage); }
.block-head {
    display: grid; grid-template-columns: auto 1fr auto; gap: 20px 32px;
    align-items: end; margin-bottom: 48px;
}
.block-head .num {
    font-family: var(--serif); font-size: 3rem; font-weight: 700;
    color: var(--sage-2); line-height: 1;
}
.block-head p { color: var(--muted); margin-top: 6px; }
.more-link { font-size: .85rem; font-weight: 600; color: var(--copper); white-space: nowrap; }
.more-link:hover { color: var(--copper-2); }
.block-foot { text-align: center; margin-top: 32px; }

/* Featured publication */
.featured-section { padding: clamp(40px, 6vw, 72px) 0; }
.featured-head,
.services-head,
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 40px);
    flex-wrap: wrap;
}
.featured-head h2,
.services-head h2,
.section-head h2 { margin-top: 4px; }
.featured-head p,
.services-head p,
.section-head p { color: var(--muted); margin-top: 6px; max-width: 420px; }
.section-head-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-head-center p { max-width: 520px; }

/* Homepage */
.page-home .site-nav { background: rgba(250, 247, 242, .88); }
.home-hero { background: linear-gradient(135deg, var(--cream) 0%, #f3ede4 52%, var(--cream) 100%); }
.home-hero .intro-copy h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero-proof { margin-top: 18px; font-size: .82rem; color: var(--muted); }
.hero-proof strong { color: var(--forest); font-weight: 700; }
.home-section { padding: clamp(48px, 7vw, 80px) 0; }
.home-section-alt { background: var(--cream-2); }
.home-process { background: var(--white); }
.home-flow { box-shadow: 0 12px 40px rgba(44, 36, 22, .06); border-color: var(--line); }
.home-pricing .pricing-plans { gap: 22px; }
.home-portfolio .portfolio-filters { margin-bottom: 28px; }
.hero-full + .home-section,
.hero-full + .featured-section { padding-top: clamp(40px, 6vw, 64px); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    padding: 28px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.testimonial-card p {
    font-family: var(--serif);
    font-size: .98rem;
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
    flex: 1;
    margin-bottom: 18px;
}
.testimonial-card footer strong {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: .88rem;
    color: var(--forest);
    margin-bottom: 2px;
}
.testimonial-card footer span { font-size: .78rem; color: var(--muted); }

.featured-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.featured-lead {
    display: grid;
    grid-template-columns: 42% 1fr;
    min-height: 360px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.featured-lead:hover {
    border-color: var(--forest);
    box-shadow: 0 16px 40px rgba(44, 36, 22, .1);
}
.featured-lead-cover {
    background: var(--forest);
    min-height: 100%;
}
.featured-lead-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-lead-body {
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-tag {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--copper);
    margin-bottom: 10px;
}
.featured-lead-body h3 {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.15;
    margin-bottom: 6px;
}
.featured-author {
    font-size: .9rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 14px;
}
.featured-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.featured-cta {
    font-size: .82rem;
    font-weight: 700;
    color: var(--forest);
    margin-top: auto;
}

.featured-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    min-height: 360px;
}
.featured-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.featured-item:hover {
    border-color: var(--copper);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(44, 36, 22, .08);
}
.featured-item img {
    width: 68px;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 36, 22, .12);
}
.featured-item span {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--copper);
    margin-bottom: 4px;
}
.featured-item strong {
    display: block;
    font-family: var(--serif);
    font-size: .95rem;
    line-height: 1.25;
    margin-bottom: 3px;
}
.featured-item em {
    font-size: .78rem;
    color: var(--muted);
    font-style: normal;
}

/* Legacy spotlight aliases */
.spotlight { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: stretch; }
.spotlight-main {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 360px; background: var(--forest);
}
.spotlight-main img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-cap {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
    background: linear-gradient(transparent, rgba(27,67,50,.95));
    color: var(--cream);
}
.spotlight-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 12px; min-height: 360px; }
.spotlight-mini {
    display: flex; gap: 16px; align-items: center; padding: 16px 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.spotlight-mini img { width: 68px; aspect-ratio: 2/3; object-fit: cover; border-radius: 3px; flex-shrink: 0; }

/* Service rows */
.service-rows { border-top: 1px solid var(--line); }
.service-row {
    display: grid; grid-template-columns: 48px 48px 1fr 32px; gap: 20px; align-items: center;
    padding: 24px 0; border-bottom: 1px solid var(--line);
    transition: background .2s, padding-left .2s;
}
.service-row:hover { background: rgba(216,226,220,.35); padding-left: 12px; }
.service-row-num { font-family: var(--serif); font-size: 1.25rem; color: var(--sage-2); font-weight: 700; }
.service-row-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--sage); border-radius: var(--radius); color: var(--forest);
}
.service-row-icon svg { width: 22px; height: 22px; }
.service-row-text h3 { font-size: 1rem; font-family: var(--sans); font-weight: 600; margin-bottom: 4px; }
.service-row-text p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.service-row-go { font-size: 1.25rem; color: var(--copper); opacity: 0; transition: opacity .2s; }
.service-row:hover .service-row-go { opacity: 1; }

/* Band stats */
.band { background: var(--forest); color: var(--cream); padding: 56px 0; }
.band-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--sage); margin-bottom: 24px; }
.band-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.band-stats b { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); line-height: 1; }
.band-stats span { font-size: .75rem; color: rgba(250,247,242,.65); margin-top: 6px; display: block; }

/* Flow steps */
.flow {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    counter-reset: step; border: 1px solid rgba(44,36,22,.12); border-radius: var(--radius-lg); overflow: hidden;
}
.flow li { padding: 28px 24px; background: var(--white); border-right: 1px solid rgba(44,36,22,.1); }
.flow li:last-child { border-right: none; }
.flow li span { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--copper); }
.flow li strong { display: block; font-family: var(--serif); font-size: 1.2rem; margin: 8px 0 6px; }
.flow li p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
    padding: 32px 28px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-lg); position: relative;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.plan:hover { box-shadow: 0 12px 32px rgba(44, 36, 22, .08); }
.plan-hot {
    border-color: var(--forest);
    box-shadow: 0 16px 40px rgba(27, 67, 50, .14);
}
.plan-badge {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    background: var(--copper); color: var(--white); padding: 5px 11px; border-radius: var(--radius);
}
.plan-hot .plan-badge { background: var(--white); color: var(--forest); }
.plan h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 6px; }
.plan-sub { font-size: .85rem; color: var(--muted); margin-bottom: 20px; min-height: 40px; line-height: 1.5; }
.plan-price {
    font-family: var(--serif); font-size: 2.5rem; font-weight: 700;
    color: var(--forest); margin-bottom: 20px; line-height: 1;
}
.plan-price sup { font-size: 1rem; vertical-align: super; color: var(--copper); }
.plan ul { margin-bottom: 24px; }
.plan li {
    font-size: .82rem; color: var(--muted); padding: 7px 0;
    border-bottom: 1px solid var(--line); padding-left: 16px; position: relative;
}
.plan li::before { content: '·'; position: absolute; left: 0; color: var(--copper); font-weight: 700; }
.plan li:last-child { border-bottom: none; }

/* Pricing page */
.pricing-hero p { max-width: 560px; }
.pricing-hero-chips,
.page-chips {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.pricing-hero-chips li,
.page-chips li {
    padding: 7px 14px; font-size: .72rem; font-weight: 600; color: var(--forest);
    background: var(--sage); border-radius: var(--radius);
}
.pricing-perks,
.about-perks,
.portfolio-perks,
.services-perks,
.contact-perks {
    background: var(--forest); color: var(--cream); padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.pricing-perks-inner,
.about-perks-inner,
.portfolio-perks-inner,
.services-perks-inner,
.contact-perks-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.pricing-perks-inner strong,
.about-perks-inner strong,
.portfolio-perks-inner strong,
.services-perks-inner strong,
.contact-perks-inner strong {
    display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--white); line-height: 1.1;
}
.pricing-perks-inner span,
.about-perks-inner span,
.portfolio-perks-inner span,
.services-perks-inner span,
.contact-perks-inner span { font-size: .72rem; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.pricing-section { padding: clamp(48px, 7vw, 80px) 0; }
.pricing-intro { max-width: 620px; margin-bottom: 36px; }
.pricing-intro h2 { margin-bottom: 10px; }
.pricing-intro p { color: var(--muted); line-height: 1.65; }
.pricing-tier-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: var(--copper); margin: 8px 0 18px;
}
.pricing-tier-label + .pricing-plans { margin-bottom: 36px; }
.pricing-footnote {
    text-align: center; font-size: .82rem; color: var(--muted); margin-top: 12px;
}
.pricing-plans { gap: 22px; }
.price-card {
    padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%;
}
.price-card .plan-top {
    padding: 28px 28px 22px;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
}
.price-card .plan-sub { min-height: 0; margin-bottom: 16px; }
.price-card .plan-price { margin-bottom: 0; }
.plan-price-note {
    display: block; font-family: var(--sans); font-size: .68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 6px;
}
.price-card .plan-body {
    padding: 22px 28px 28px;
    display: flex; flex-direction: column; flex: 1;
}
.price-card .plan-body ul { flex: 1; margin-bottom: 20px; }
.price-card li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 9px 0; padding-left: 0; border-bottom: 1px solid var(--line);
}
.price-card li::before { display: none; }
.price-card li svg {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    stroke: var(--forest); stroke-width: 2.5;
}
.plan-hot .plan-top {
    background: var(--forest); border-bottom-color: rgba(255, 255, 255, .12);
}
.plan-hot .plan-top h3,
.plan-hot .plan-top .plan-sub,
.plan-hot .plan-top .plan-price { color: var(--white); }
.plan-hot .plan-top .plan-sub { opacity: .85; }
.plan-hot .plan-top .plan-price sup { color: var(--sage); }
.plan-hot .plan-top .plan-price-note { color: rgba(250, 247, 242, .7); }
.pricing-guarantee {
    padding: clamp(40px, 6vw, 56px) 0;
    background: var(--sage);
    border-top: 1px solid rgba(44, 36, 22, .08);
    border-bottom: 1px solid rgba(44, 36, 22, .08);
}
.pricing-guarantee-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.pricing-guarantee-inner p { color: var(--muted); margin-top: 8px; max-width: 520px; line-height: 1.65; }
.pricing-faq-head { margin-bottom: 28px; }
.pricing-faq-head h2 { margin-top: 4px; }

/* Portfolio / books page */
.portfolio-hero p { max-width: 580px; }
.portfolio-section { padding-top: clamp(40px, 6vw, 64px); }
.portfolio-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.portfolio-toolbar-copy h2 { margin-bottom: 6px; }
.portfolio-toolbar-copy p { color: var(--muted); font-size: .9rem; }
.portfolio-toolbar-copy strong { color: var(--forest); }
.portfolio-search {
    display: flex;
    gap: 10px;
    min-width: min(100%, 380px);
    flex: 1;
    max-width: 420px;
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.portfolio-filters .tab { text-decoration: none; }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.portfolio-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.portfolio-card:hover {
    border-color: var(--forest);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(44, 36, 22, .1);
}
.portfolio-cover {
    position: relative;
    overflow: hidden;
    background: var(--forest);
}
.portfolio-cover img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.portfolio-card:hover .portfolio-cover img { transform: scale(1.04); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, .78);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    opacity: 0;
    transition: opacity .25s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.portfolio-info span {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--copper);
    margin-bottom: 6px;
}
.portfolio-info h3 {
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 4px;
}
.portfolio-info p {
    font-size: .78rem;
    color: var(--muted);
    font-style: italic;
    margin-top: auto;
}
.portfolio-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.portfolio-empty h3 { font-family: var(--serif); margin-bottom: 8px; }
.portfolio-empty p { color: var(--muted); margin-bottom: 20px; }
.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.portfolio-pages {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.portfolio-page {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    transition: all .2s;
}
.portfolio-page:hover {
    border-color: var(--forest);
    color: var(--forest);
}
.portfolio-page.is-active {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
}

/* Services page */
.services-hero p { max-width: 600px; }
.services-page { padding-top: clamp(40px, 6vw, 64px); }
.services-intro { max-width: 620px; margin-bottom: 36px; }
.services-intro h2 { margin-bottom: 10px; }
.services-intro p { color: var(--muted); line-height: 1.65; }
.services-tier-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: var(--copper); margin: 8px 0 18px;
}
.services-tier-label + .services-grid { margin-bottom: 36px; }
.services-deliver { padding: clamp(48px, 7vw, 72px) 0; }
.services-deliver-head { max-width: 520px; margin-bottom: 32px; }
.services-deliver-head h2 { margin-top: 4px; margin-bottom: 8px; }
.services-deliver-head p { color: var(--muted); line-height: 1.65; }
.services-deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.services-deliver-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.services-deliver-card:hover {
    border-color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 36, 22, .08);
}
.services-deliver-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage); border-radius: var(--radius);
    color: var(--forest); margin-bottom: 16px;
}
.services-deliver-icon svg { width: 22px; height: 22px; }
.services-deliver-card h3 {
    font-family: var(--serif); font-size: 1.08rem; margin-bottom: 8px;
}
.services-deliver-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.services-bundle {
    padding: clamp(44px, 6vw, 64px) 0;
    background: var(--sage);
    border-top: 1px solid rgba(44, 36, 22, .08);
    border-bottom: 1px solid rgba(44, 36, 22, .08);
}
.services-bundle-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.services-bundle-inner p { color: var(--muted); margin-top: 8px; max-width: 480px; line-height: 1.65; }
.services-bundle .cta-actions { justify-content: flex-start; }

/* Work grid */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tab, .filter-btn {
    padding: 8px 18px; font-size: .78rem; font-weight: 600;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
    color: var(--muted); cursor: pointer; transition: all .2s;
}
.tab:hover, .filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.tab.active, .filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.work-grid, .books-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.work-item, .book-card { transition: transform .25s; }
.work-item:hover, .book-card:hover { transform: translateY(-4px); }
.work-item.hidden, .book-card.hidden, .portfolio-item.hidden { display: none; }
.work-item img, .book-cover img {
    width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(44,36,22,.12); margin-bottom: 12px;
}
.work-meta span, .book-meta span, .book-category {
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--copper);
}
.work-meta h3, .book-meta h3 { font-family: var(--serif); font-size: .95rem; margin-top: 4px; }
.book-meta p { font-size: .78rem; color: var(--muted); }
.book-hover {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(27,67,50,.75); color: var(--white); font-size: .78rem; font-weight: 700;
    opacity: 0; transition: opacity .25s; border-radius: var(--radius);
}
.book-cover { position: relative; }
.book-cover:hover .book-hover { opacity: 1; }

/* Pullquote */
.pullquote { padding: 72px 0; background: var(--forest); text-align: center; }
.pullquote blockquote {
    font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic;
    color: var(--cream); max-width: 720px; margin: 0 auto 20px; line-height: 1.45;
}
.pullquote cite { font-size: .9rem; color: var(--sage); font-style: normal; }
.pullquote cite strong { color: var(--white); }

/* CTA panel */
.cta-panel {
    padding: clamp(64px, 8vw, 88px) 0;
    background: var(--navy);
    text-align: center;
    color: var(--white);
}
.cta-panel-inner { max-width: 640px; }
.cta-panel h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-panel p { opacity: .92; margin-bottom: 28px; font-size: 1.05rem; line-height: 1.6; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.cta-panel .btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.cta-panel .btn-white:hover {
    background: var(--cream);
    color: var(--navy-dark);
    border-color: var(--cream);
}
.cta-panel .btn-copper {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.cta-panel .btn-copper:hover {
    background: var(--cream);
    color: var(--navy-dark);
    border-color: var(--cream);
}
.cta-panel .btn-line {
    border-color: rgba(255, 255, 255, .85);
    color: var(--white);
    background: transparent;
}
.cta-panel .btn-line:hover {
    background: var(--white);
    color: var(--copper);
    border-color: var(--white);
}

/* Footer */
.site-foot { background: var(--black); color: rgba(247,248,250,.65); padding-top: 64px; }
.foot-brand .site-logo-img { margin-bottom: 16px; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand p { margin-top: 16px; font-size: .875rem; max-width: 280px; line-height: 1.65; }
.foot-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-links h5 { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--cream); margin-bottom: 14px; }
.foot-links a, .foot-links p { display: block; font-size: .85rem; margin-bottom: 8px; transition: color .2s; }
.foot-links a:hover { color: var(--copper); }
.foot-stats {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    padding: 36px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-stats b { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--cream); line-height: 1; }
.foot-stats span { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .5; }
.foot-base {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; font-size: .78rem; flex-wrap: wrap; gap: 12px;
}
.foot-base div { display: flex; gap: 20px; }
.foot-base a:hover { color: var(--cream); }

/* Inner pages */
.page-top, .page-head, .page-hero {
    padding: clamp(56px, 8vw, 80px) 0 clamp(40px, 5vw, 56px);
    background: var(--cream-2); border-bottom: 1px solid var(--line);
}
.page-top h1 em, .page-head h1 em { font-style: italic; color: var(--forest); }
.page-top p, .page-head p { color: var(--muted); max-width: 520px; margin-top: 12px; font-size: 1.05rem; }

/* Legal pages */
.legal-page { padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(56px, 8vw, 80px); }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-meta {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.legal-content > p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.legal-content h2 {
    font-size: 1.25rem;
    margin: 36px 0 12px;
    color: var(--forest);
}
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin: 0 0 18px;
    color: var(--muted);
}
.legal-content li { line-height: 1.7; margin-bottom: 8px; }
.legal-content li strong { color: var(--ink); }
.legal-content a { color: var(--forest-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--copper); }
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.form-checkbox label a { color: var(--forest-2); text-decoration: underline; }
.form-checkbox label a:hover { color: var(--copper); }
.quote-fieldset { border: none; padding: 0; margin-bottom: 18px; }
.quote-fieldset legend {
    display: block; font-weight: 600; font-size: .8rem; color: var(--ink);
    margin-bottom: 10px; padding: 0;
}

/* Terms page */
.terms-hero p { max-width: 560px; }
.terms-chips { margin-top: 20px; }

.terms-perks {
    background: var(--forest);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.terms-perks-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px 0;
    text-align: center;
}
.terms-perks-inner strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.1;
}
.terms-perks-inner span {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(250, 247, 242, 0.6);
    margin-top: 4px;
}

.terms-page {
    padding-top: clamp(40px, 6vw, 64px);
    padding-bottom: clamp(48px, 6vw, 72px);
    background: var(--cream);
}
.terms-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.terms-sidebar { position: relative; }
.terms-sidebar-card {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    box-shadow: 0 4px 24px rgba(44, 36, 22, 0.06);
}
.terms-sidebar-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
}
.terms-toc {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: min(52vh, 420px);
    overflow-y: auto;
    margin-bottom: 18px;
    padding-right: 4px;
}
.terms-toc a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius);
    font-size: .82rem;
    color: var(--muted);
    transition: background .15s, color .15s;
}
.terms-toc a span {
    flex-shrink: 0;
    width: 26px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--copper);
    font-family: var(--sans);
}
.terms-toc a:hover {
    background: var(--cream);
    color: var(--ink);
}
.terms-sidebar-foot {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.terms-sidebar-link {
    font-size: .84rem;
    font-weight: 600;
    color: var(--forest-2);
}

.terms-intro-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: clamp(22px, 3vw, 28px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(44, 36, 22, 0.05);
}
.terms-intro-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--sage);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
}
.terms-intro-badge svg { width: 26px; height: 26px; }
.privacy-intro-badge {
    background: rgba(45, 106, 79, 0.15);
    color: var(--forest);
}

.terms-updated {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--copper);
    margin-bottom: 10px;
}
.terms-intro-card p:last-child {
    color: var(--muted);
    line-height: 1.75;
    font-size: .95rem;
}

.terms-sections { display: flex; flex-direction: column; gap: 14px; }
.terms-section-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-margin-top: calc(var(--nav-h) + 24px);
    transition: box-shadow .2s, border-color .2s;
}
.terms-section-card:hover {
    box-shadow: 0 6px 28px rgba(44, 36, 22, 0.07);
    border-color: var(--sage-2);
}
.terms-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.terms-section-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .02em;
}
.terms-section-head h2 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--ink);
}
.terms-section-body {
    padding: 20px 22px 22px;
}
.terms-section-body p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: .925rem;
}
.terms-section-body p:last-child { margin-bottom: 0; }
.terms-section-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.terms-section-body li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: .925rem;
}
.terms-section-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
}
.terms-section-body li strong { color: var(--ink); }
.terms-section-body a {
    color: var(--forest-2);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.terms-section-body a:hover { color: var(--copper); }

.terms-cta {
    background: linear-gradient(135deg, var(--forest) 0%, #0f2922 100%);
    padding: clamp(48px, 7vw, 72px) 0;
}
.terms-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.terms-cta h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 6px 0 10px;
}
.terms-cta p {
    color: rgba(250, 247, 242, 0.75);
    max-width: 480px;
    line-height: 1.65;
}
.kicker-light { color: rgba(250, 247, 242, 0.55); }
.terms-cta .cta-actions { margin: 0; }
.terms-cta .btn-line {
    border-color: rgba(250, 247, 242, 0.35);
    color: var(--white);
}
.terms-cta .btn-line:hover {
    background: rgba(250, 247, 242, 0.1);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 960px) {
    .terms-layout { grid-template-columns: 1fr; }
    .terms-sidebar-card {
        position: static;
        max-height: none;
    }
    .terms-toc {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        max-height: none;
    }
    .terms-perks-inner { grid-template-columns: repeat(2, 1fr); }
    .terms-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .terms-toc { grid-template-columns: 1fr; }
    .terms-intro-card { flex-direction: column; }
    .terms-perks-inner { grid-template-columns: 1fr 1fr; }
}

.section { padding: clamp(56px, 8vw, 80px) 0; }
.section-alt { background: var(--cream-2); }

.toolbar {
    display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px;
    padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.search-form { display: flex; gap: 10px; max-width: 400px; }
.search-input {
    flex: 1; padding: 11px 16px; border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--cream);
}
.search-input:focus { outline: none; border-color: var(--forest); }

.book-detail { padding: 56px 0; }
.book-detail-cover img {
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(44, 36, 22, .15);
    width: 100%;
    height: auto;
}
.related-books-title { margin-bottom: 28px; }
.breadcrumb { font-size: .78rem; color: var(--muted); margin-bottom: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--copper); }
.detail-grid, .book-detail-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
.book-detail-price { font-family: var(--serif); font-size: 2rem; color: var(--forest); margin: 16px 0 24px; }
.book-author-large { font-style: italic; color: var(--muted); margin: 8px 0 20px; }
.book-description { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.book-detail-meta, .detail-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.meta-chip, .book-meta-item {
    padding: 8px 14px; background: var(--sage); border-radius: var(--radius); font-size: .82rem;
}
.meta-chip strong, .book-meta-item strong { display: block; font-size: .6rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

.contact-layout, .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 56px); align-items: start; }

/* Contact page */
.contact-hero p { max-width: 580px; }
.contact-page { padding-top: clamp(40px, 6vw, 64px); }
.contact-sidebar-head h2 { margin: 6px 0 12px; }
.contact-sidebar-head p { color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px; background: var(--white);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: var(--forest); box-shadow: 0 8px 24px rgba(44, 36, 22, .06); }
.contact-card strong {
    display: block; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px;
}
.contact-card a,
.contact-card span { font-size: .92rem; color: var(--ink); text-decoration: none; }
.contact-card a:hover { color: var(--copper); }
.contact-hours {
    padding: 20px 22px; background: var(--cream-2);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.contact-hours strong {
    display: block; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: var(--copper); margin-bottom: 8px;
}
.contact-hours p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.contact-form-panel { padding: clamp(28px, 4vw, 36px); }
.contact-form-head { margin-bottom: 24px; }
.contact-form-head h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-head p { font-size: .88rem; color: var(--muted); }
.contact-quote { padding: clamp(48px, 7vw, 72px) 0; }
.contact-quote-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 48px); align-items: start;
}
.contact-quote-copy h2 { margin: 6px 0 12px; }
.contact-quote-copy > p { color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.contact-quote-list { margin-bottom: 8px; }
.contact-quote-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; font-size: .88rem; color: var(--ink);
}
.contact-quote-list li svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--forest); stroke-width: 2.5; margin-top: 1px; }
.contact-quote-form h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 20px; }
.quote-checks, .quote-services {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0;
}
.service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.service-check:hover { border-color: var(--forest); background: var(--white); }
.service-check:has(input:checked) {
    border-color: var(--forest);
    background: rgba(216, 226, 220, .45);
    box-shadow: inset 0 0 0 1px rgba(27, 67, 50, .08);
}
.service-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0;
    padding: 0;
    flex: 0 0 16px;
    accent-color: var(--forest);
}
.service-check span { line-height: 1.35; flex: 1; }

.contact-list .item, .contact-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: var(--sage); border-radius: var(--radius); color: var(--forest);
}
.contact-icon svg { width: 18px; height: 18px; }
.form-box, .contact-form-wrap {
    padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group > label { display: block; font-size: .75rem; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
}
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    border-radius: 3px;
    accent-color: var(--forest);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a89f94; }
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27, 67, 50, .12);
}
.form-checkbox { margin-top: 4px; }
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    font-size: .82rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted);
    cursor: pointer;
}
.form-checkbox input { margin-top: 3px; }

.alert { padding: 16px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: .88rem; }
.alert-success { background: #dce4ef; color: var(--navy); border: 1px solid #a8b8cc; }
.alert-error { background: #ffe5e5; color: #9b2226; border: 1px solid #f5c2c2; }

.quote-box, .quote-signup {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; padding: 36px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
}

/* About page */
.about-hero p { max-width: 580px; }
.about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}
.about-story-copy h2 { margin: 8px 0 16px; }
.about-story-copy p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.about-points { margin-top: 22px; }
.about-points li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; font-size: .88rem; color: var(--ink);
    border-bottom: 1px solid var(--line);
}
.about-points li:last-child { border-bottom: none; }
.about-points li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; stroke: var(--forest); stroke-width: 2.5; }
.about-story-panel { display: flex; flex-direction: column; gap: 16px; }
.about-panel-card {
    padding: 28px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-lg);
}
.about-panel-label {
    display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--sage); margin-bottom: 12px;
}
.about-panel-card p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; font-style: italic; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat {
    padding: 22px 20px; background: var(--white);
    border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center;
}
.about-stat b {
    display: block; font-family: var(--serif); font-size: 1.85rem;
    color: var(--forest); line-height: 1; margin-bottom: 6px;
}
.about-stat span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.about-quote {
    padding: clamp(48px, 7vw, 72px) 0;
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-quote-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-quote blockquote {
    font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 18px;
}
.about-quote cite { font-size: .9rem; color: var(--muted); font-style: normal; }
.about-quote cite strong { color: var(--forest); }
.about-section-head { max-width: 560px; margin-bottom: 32px; }
.about-section-head h2 { margin-top: 4px; margin-bottom: 8px; }
.about-section-head p { color: var(--muted); line-height: 1.65; }
.about-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}
.about-flow li { padding: 26px 20px; border-right: 1px solid var(--line); }
.about-flow li:last-child { border-right: none; }
.about-flow li span {
    font-size: .62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--copper);
}
.about-flow li strong {
    display: block; font-family: var(--serif); font-size: 1.05rem;
    margin: 10px 0 6px; line-height: 1.2;
}
.about-flow li p { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-value-card {
    padding: 28px 24px; background: var(--white);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.about-value-card:hover {
    border-color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 36, 22, .08);
}
.about-value-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--sage); border-radius: var(--radius); color: var(--forest); margin-bottom: 16px;
}
.about-value-icon svg { width: 22px; height: 22px; }
.about-value-card h3 { font-family: var(--serif); font-size: 1.08rem; margin-bottom: 8px; }
.about-value-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.about-cta-band {
    padding: clamp(48px, 7vw, 72px) 0;
    background: var(--sage);
    border-top: 1px solid rgba(44, 36, 22, .08);
}
.about-cta-band-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.about-cta-band-inner p { color: var(--muted); margin-top: 8px; max-width: 480px; line-height: 1.65; }
.about-cta-band .cta-actions { justify-content: flex-start; }

.about-split, .about-page-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.about-split p, .about-page-content p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.stat-grid, .about-page-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box-card, .stat-card {
    padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center;
}
.stat-box-card b, .stat-card strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--forest); }
.stat-box-card span, .stat-card span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.timeline-item:not(:last-child)::before {
    content: ''; position: absolute; left: 17px; top: 40px; bottom: 0; width: 2px; background: var(--line);
}
.timeline-marker {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
    background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem;
}
.timeline-content h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 4px; }
.timeline-content p { font-size: .85rem; color: var(--muted); }

.values-row, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.value-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; }
.value-icon {
    width: 52px; height: 52px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
    background: var(--sage); border-radius: 50%; color: var(--forest);
}
.value-icon svg { width: 22px; height: 22px; }

.services-section { padding: clamp(40px, 6vw, 72px) 0; background: var(--cream); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}
.service-card:hover {
    border-color: var(--forest);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(44, 36, 22, .1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
    display: block;
    font-family: var(--sans);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--copper);
    margin-bottom: 18px;
}
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    border-radius: var(--radius);
    color: var(--forest);
    margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.25;
    margin-bottom: 8px;
}
.service-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}
.service-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    font-size: .82rem;
    color: var(--copper);
}
.service-card:hover .service-link { color: var(--copper-2); }

.approach-split, .approach-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; }
.approach-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.approach-card { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.approach-card h4 { font-size: .88rem; margin-bottom: 4px; }
.approach-card p { font-size: .8rem; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.faq-item { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.faq-item h4 { font-family: var(--serif); margin-bottom: 6px; }
.faq-item p { font-size: .85rem; color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.pricing-card.featured, .pricing-card.is-featured { border-color: var(--forest); box-shadow: 0 0 0 2px var(--forest); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.empty-state { text-align: center; padding: 56px 24px; color: var(--muted); }

.cta-block, .cta-banner {
    padding: 64px 0; background: var(--forest); text-align: center; color: var(--cream);
}
.cta-block h2, .cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-block p, .cta-banner p { opacity: .85; margin-bottom: 24px; }

.fade-up, .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible, .reveal.visible, .reveal.is-visible { opacity: 1; transform: none; }

.hide-mob { }
.tag, .eyebrow, .section-label {
    display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .12em; color: var(--copper); margin-bottom: 16px;
}

@media (max-width: 960px) {
    .hero-full {
        height: auto;
        min-height: 0;
        overflow: visible;
    }
    .hero-full .intro-body { display: block; padding-bottom: 24px; }
    .intro-grid, .featured-layout, .spotlight, .detail-grid, .book-detail-grid, .contact-layout, .contact-grid,
    .about-split, .about-page-grid, .approach-split, .approach-grid, .quote-box, .quote-signup,
    .foot-top { grid-template-columns: 1fr; }
    .pricing-perks-inner,
    .about-perks-inner,
    .portfolio-perks-inner,
    .services-perks-inner,
    .contact-perks-inner { grid-template-columns: repeat(2, 1fr); }
    .portfolio-toolbar { flex-direction: column; align-items: flex-start; }
    .portfolio-search { max-width: none; width: 100%; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .services-deliver-grid { grid-template-columns: repeat(2, 1fr); }
    .services-bundle-inner { flex-direction: column; align-items: flex-start; }
    .contact-quote-grid { grid-template-columns: 1fr; }
    .pricing-guarantee-inner { flex-direction: column; align-items: flex-start; }
    .about-story-grid,
    .about-cta-band-inner { flex-direction: column; align-items: flex-start; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-flow { grid-template-columns: repeat(2, 1fr); }
    .about-flow li:nth-child(2n) { border-right: none; }
    .about-flow li { border-bottom: 1px solid var(--line); }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .services-deliver-grid { grid-template-columns: 1fr; }
    .band-stats, .flow, .plans, .pricing-grid, .work-grid, .books-grid, .services-grid,
    .values-row, .values-grid, .foot-links { grid-template-columns: repeat(2, 1fr); }
    .featured-lead { grid-template-columns: 1fr; min-height: 0; }
    .featured-lead-cover { aspect-ratio: 3/4; max-height: 320px; }
    .featured-list { min-height: 0; grid-template-rows: none; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .home-section { padding: clamp(40px, 6vw, 64px) 0; }
}

@media (max-width: 640px) {
    .hide-mob { display: none; }
    .burger { display: block; }
    .site-logo-img { height: 44px; max-width: min(185px, 54vw); }
    .site-menu {
        position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
        background: var(--cream); flex-direction: column; align-items: stretch;
        padding: 24px; gap: 0; transform: translateX(100%); transition: transform .35s;
        border-top: 1px solid var(--line);
    }
    .site-menu.open, .site-menu.is-open { transform: translateX(0); }
    .site-menu a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
    .band-stats, .flow, .plans, .work-grid, .books-grid, .services-grid, .values-row,
    .faq-grid, .foot-links, .form-row, .approach-cards, .stat-grid, .about-page-stats,
    .quote-checks, .quote-services { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 36px 1fr 24px; }
    .service-row-icon { display: none; }
    .intro-covers { display: none; }
    .intro-visual { padding-bottom: 0; }
    .intro-frame { height: clamp(220px, 52vw, 300px); }
    .about-flow { grid-template-columns: 1fr; }
    .about-flow li { border-right: none; }
    .about-values-grid { grid-template-columns: 1fr; }
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--navy); color: #fff; padding: 16px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    max-width: var(--shell); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cookie-banner a { color: var(--copper); }
.cookie-banner p { margin: 0; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
    *, .fade-up, .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}
